.vpn-user-panel {
    max-width: 900px;
    margin: 0 auto;
}

.vpn-status-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.vpn-status-banner.vpn-status-active {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 2px solid #10b981;
}

.vpn-status-banner.vpn-status-inactive {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 2px solid #ef4444;
}

.vpn-status-banner.vpn-status-no-access {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
}

.vpn-status-icon {
    font-size: 48px;
}

.vpn-status-text h2 {
    margin: 0 0 5px 0;
    color: #065f46;
}

.vpn-status-banner.vpn-status-inactive .vpn-status-text h2 {
    color: #991b1b;
}

.vpn-status-banner.vpn-status-no-access .vpn-status-text h2 {
    color: #92400e;
}

.vpn-status-text p {
    margin: 0;
    color: #047857;
}

.vpn-status-banner.vpn-status-no-access .vpn-status-text p {
    color: #b45309;
}

.vpn-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.vpn-section h3 {
    margin-top: 0;
    color: #111827;
}

.vpn-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.vpn-info-item {
    background: #f9fafb;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.vpn-info-label {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}

.vpn-info-value {
    font-size: 16px;
    color: #111827;
    font-weight: 500;
    font-family: monospace;
}

.vpn-download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.vpn-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.vpn-btn-primary {
    background: #667eea;
    color: white;
}

.vpn-btn-primary:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.vpn-btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.vpn-btn-secondary:hover {
    background: #f0f4ff;
}

.vpn-qr-container {
    text-align: center;
}

.vpn-qr-code {
    max-width: 300px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px;
    background: white;
}

.vpn-qr-instructions {
    color: #6b7280;
    font-size: 14px;
}

.vpn-config-preview {
    background: #1e293b;
    color: #e2e8f0;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.vpn-config-preview pre {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    overflow-x: auto;
}

.vpn-copy-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #475569;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
}

.vpn-copy-btn:hover {
    background: #64748b;
}

.vpn-platform-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
}

.vpn-tab {
    padding: 12px 24px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    border-bottom: 3px solid transparent;
}

.vpn-tab-active {
    color: #667eea;
    border-bottom-color: #667eea;
}

.vpn-platform-content {
    display: none;
}

.vpn-platform-active {
    display: block;
}

/* Alert Styles */
.vpn-alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
}

.vpn-alert-warning {
    background: #fef3c7;
    color: #92400e;
    border-left: 4px solid #f59e0b;
}

.vpn-alert-info {
    background: #dbeafe;
    color: #1e40af;
    border-left: 4px solid #3b82f6;
}

.vpn-alert-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

/* Steps Styles */
.vpn-steps {
    counter-reset: step-counter;
}

.vpn-step {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}

.vpn-step::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.vpn-step h4 {
    font-size: 16px;
    color: #111827;
    margin: 0 0 10px 0;
}

.vpn-step p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 5px 0;
}

.vpn-step code {
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
}

.vpn-code-snippet {
    background: #1e293b;
    color: #e2e8f0;
    padding: 12px 16px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 13px;
    margin: 10px 0;
}

.vpn-success-box {
    background: #d1fae5;
    color: #065f46;
    padding: 12px 16px;
    border-radius: 6px;
    border: 2px solid #10b981;
    margin-top: 15px;
    font-size: 14px;
}

/* Accordion Styles */
.vpn-accordion {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.vpn-accordion-item {
    border-bottom: 1px solid #e5e7eb;
}

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

.vpn-accordion-header {
    background: #f9fafb;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.vpn-accordion-header:hover {
    background: #f3f4f6;
}

.vpn-accordion-header h4 {
    margin: 0;
    font-size: 15px;
    color: #111827;
    font-weight: 600;
}

.vpn-accordion-icon {
    color: #667eea;
    font-size: 12px;
    transition: transform 0.3s;
}

.vpn-accordion-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.vpn-accordion-body.vpn-accordion-active {
    max-height: 500px;
    padding: 20px;
}

.vpn-accordion-body p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.vpn-accordion-body ol {
    color: #6b7280;
}

.vpn-connection-result {
    margin-top: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.vpn-connection-result.vpn-result-success {
    background: #d1fae5;
    border: 2px solid #10b981;
    color: #065f46;
}

.vpn-connection-result.vpn-result-error {
    background: #fee2e2;
    border: 2px solid #ef4444;
    color: #991b1b;
}

.vpn-connection-result strong {
    display: block;
    margin-bottom: 5px;
}

.vpn-connection-result .vpn-ip-info {
    font-family: monospace;
    font-size: 13px;
    margin-top: 8px;
}
