
.ip-display-main {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 16px;
    margin-bottom: 20px;
}

.ip-address-large {
    font-size: 2.5rem;
    font-family: 'Roboto Mono', monospace;
    font-weight: 700;
    color: #667eea;
    letter-spacing: 2px;
    margin: 10px 0;
    word-break: break-all;
    animation: fadeInUp 0.6s ease-out;
}

@media (max-width: 768px) {
    .ip-address-large {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
}

.ip-type-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
}

.btn-copy-ip {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);
    margin-top: 15px;
}

.btn-copy-ip:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
}

.btn-copy-ip:active {
    transform: translateY(0);
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    align-items: center;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-label i {
    color: #667eea;
    width: 20px;
}

.info-value {
    font-family: 'Roboto Mono', monospace;
    color: #2d3748;
    text-align: right;
    word-break: break-word;
}

/* User-Agent U‹@?*/
.user-agent-container {
    margin-top: 8px;
}

.user-agent-toggle {
    background: none;
    border: none;
    color: #667eea;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 4px 8px;
    text-decoration: underline;
}

.user-agent-text {
    font-size: 0.85rem;
    color: #718096;
    margin-top: 8px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    word-break: break-all;
    font-family: 'Courier New', monospace;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-success {
    background-color: rgba(72, 187, 120, 0.1);
    color: #2f855a;
}

.status-warning {
    background-color: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.status-danger {
    background-color: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.status-info {
    background-color: rgba(102, 126, 234, 0.1);
    color: #5a67d8;
}

.loading-container {
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(102, 126, 234, 0.1);
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    color: #718096;
    font-size: 1.1rem;
}

.webrtc-leak-warning {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
    border-left: 4px solid #dc2626;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 8px;
}

.webrtc-leak-ips {
    font-family: 'Roboto Mono', monospace;
    font-weight: 600;
    color: #dc2626;
    margin-top: 6px;
}

.canvas-fingerprint {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    padding: 8px 12px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 8px;
    display: inline-block;
}

.export-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.export-buttons button {
    flex: 1;
    min-width: 140px;
}

@media (max-width: 576px) {
    .export-buttons button {
        flex: 1 1 100%;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-notice {
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.05) 0%, rgba(56, 161, 105, 0.05) 100%);
    border-left: 4px solid #48bb78;
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.privacy-notice h4 {
    color: #2f855a;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.privacy-notice ul {
    margin: 10px 0 0 20px;
    color: #4a5568;
}

.privacy-notice li {
    margin-bottom: 6px;
}
