.auth-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    position: relative;
}

.navbar-dark {
    background-color: #4338ca;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

#logoutBtn {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    font-weight: 600;
    border: 2px solid transparent;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.2);
}

#logoutBtn:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(220, 38, 38, 0.3);
    border-color: transparent;
}

#logoutBtn:focus {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    color: white;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.25);
    border-color: transparent;
}

#logoutBtn i {
    font-size: 1rem;
    color: white;
    opacity: 0.9;
}

#logoutBtn:hover i {
    opacity: 1;
}

.auth-page .container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    min-height: calc(100vh - 160px);
    position: relative;
    max-width: 100%;
}


.auth-form {
    max-width: 450px;
    width: 90%;
    padding: 3rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.auth-form .form-control {
    background-color: #fff;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.auth-form .form-control:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
    outline: none;
}

.auth-form input,
.auth-form button,
.auth-form select,
.auth-form textarea {
    position: relative;
}

.auth-form label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    display: block;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-icon {
    font-size: 3rem;
    color: #6366f1;
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: transform 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.captcha-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.captcha-image-container {
    position: relative;
    display: inline-block;
}

.refresh-button {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#captchaImage {
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
}
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: auto;
    position: relative;
    z-index: 2;
}

.auth-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        135deg,
        var(--gradient-start),
        var(--gradient-end)
    );
    z-index: 1;
    pointer-events: none;
}

.auth-form h2 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
}

.auth-header .auth-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(
        135deg,
        var(--gradient-start),
        var(--gradient-end)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.auth-header .auth-icon i {
    color: white;
    font-size: 2rem;
}

.auth-header h2 {
    margin: 0;
    font-size: 2rem;
}

.auth-header .text-gradient {
    background: linear-gradient(
        135deg,
        var(--gradient-start),
        var(--gradient-end)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0.5rem 0 0 0;
    opacity: 0.8;
}

.auth-form .form-label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.auth-form .form-label::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(
        135deg,
        var(--gradient-start),
        var(--gradient-end)
    );
    transition: width 0.3s ease;
}

.auth-form .form-control:focus + .form-label::after,
.auth-form .form-control:focus ~ .form-label::after {
    width: 100%;
}

.auth-form .form-control {
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
}

.auth-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
    background: white;
    outline: none;
}

.auth-form .form-control:hover:not(:focus) {
    border-color: rgba(99, 102, 241, 0.4);
}

.auth-form .btn-primary {
    background: linear-gradient(
        135deg,
        var(--gradient-start),
        var(--gradient-end)
    );
    border: none;
    padding: 0.9rem 2rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.auth-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    background: linear-gradient(
        135deg,
        var(--gradient-end),
        var(--gradient-start)
    );
}

.auth-form .btn-primary:active {
    transform: translateY(0);
}

.verification-input-container {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.verification-input {
    max-width: 200px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.3rem;
    padding: 1rem 0.5rem;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.98);
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
}

.verification-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
    background: white;
    outline: none;
    transform: scale(1.02);
}

.verification-input::placeholder {
    color: rgba(99, 102, 241, 0.4);
    font-weight: 400;
}

.auth-icon.success {
    color: #10b981;
    font-size: 4rem;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.welcome-content {
    padding: 1rem 0;
}

.welcome-features {
    background: rgba(99, 102, 241, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

.feature-item i {
    width: 20px;
    text-align: center;
}

.welcome-actions .btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.welcome-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
}

.auth-form p {
    color: var(--text-light);
    text-align: center;
    margin-top: 1.5rem;
}

.auth-form p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-form p a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}




.auth-page::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 25%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 25% 85%, rgba(251, 191, 36, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(34, 197, 94, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.08) 0%, transparent 60%);
    z-index: 1;
}



@keyframes pulse-decoration {
    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

.auth-page .navbar {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.auth-form .alert {
    border-radius: 0.75rem;
    border: none;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.auth-form .alert-danger {
    background: linear-gradient(
        135deg,
        rgba(220, 53, 69, 0.1),
        rgba(220, 53, 69, 0.05)
    );
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

.auth-form .alert-success {
    background: linear-gradient(
        135deg,
        rgba(40, 167, 69, 0.1),
        rgba(40, 167, 69, 0.05)
    );
    color: #28a745;
    border-left: 4px solid #28a745;
}

.auth-form .alert-info {
    background: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.1),
        rgba(99, 102, 241, 0.05)
    );
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
}

.dashboard-page {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    min-height: calc(100vh - 56px);
}


.main-content {
    min-height: calc(100vh - 56px);
    background-color: #f8f9fa;
}

.sidebar .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--text-dark);
    border-radius: 5px;
    margin-bottom: 5px;
}

.sidebar .nav-link:hover {
    background-color: rgba(99, 102, 241, 0.1);
    color: var(--text-dark) !important;
}

.sidebar .nav-link.active {
    background-color: var(--primary-color);
    color: white;
}

.sidebar .nav-link i {
    width: 20px;
    text-align: center;
}

.dashboard-section {
    opacity: 1;
    transition: opacity 0.3s ease;
    color: var(--text-dark);
}

.dashboard-section.d-none {
    opacity: 0;
    display: none !important;
}

.dashboard-section .stat-item label {
    color: var(--text-dark) !important;
}

.dashboard-section .stat-value,
.dashboard-section .metric-value {
    color: var(--primary-color) !important;
}

.dashboard-section .code-tabs .nav-link {
    color: var(--text-dark) !important;
}

.dashboard-section .list-group-item {
    color: var(--text-dark);
}

.dashboard-section .tab-pane pre code {
    color: #f8f9fa;
}

.dashboard-section h2,
.dashboard-section h3,
.dashboard-section p,
.dashboard-section label,
.dashboard-section .stat-value {
    color: var(--text-dark);
}

.dashboard-section .text-muted {
    color: var(--text-light) !important;
}

.dashboard-section .metric-value,
.dashboard-section .stat-value {
    color: var(--primary-color);
}

.dashboard-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.metrics-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.metric-item {
    padding: 1rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

span {
    color: inherit;
}

.dashboard-section span,
.dashboard-card span {
    color: var(--text-dark);
}

.metric-item span,
.summary-item span,
.feature-label span {
    color: var(--text-dark);
}

.tier-badge span {
    color: white !important;
}

.preview-title {
    color: #fbbf24 !important;
}

.metric-value-preview {
    color: var(--primary-color) !important;
}

.metric-label-preview {
    color: var(--text-light) !important;
}

.protection-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.protection-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.protection-item:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateX(5px);
}

.activity-feed {
    max-height: 250px;
    overflow-y: auto;
    margin-top: 1rem;
}

.activity-item {
    transition: background-color 0.2s ease;
}

.activity-item:hover {
    background-color: rgba(99, 102, 241, 0.05);
}

.activity-item:last-child {
    border-bottom: none !important;
}

.analytics-summary {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 6px;
}

.summary-label {
    color: var(--text-light);
}

.security-info {
    margin-top: 2rem;
}

.info-card {
    background: rgba(99, 102, 241, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.2);
}

.info-card h5 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.info-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.summary-value {
    font-weight: 600;
    color: var(--primary-color);
}

.coming-soon-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.coming-soon-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.coming-soon-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.stats-preview {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 450px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: float-stats 6s ease-in-out infinite;
}

@keyframes float-stats {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-8px) rotate(1deg);
    }
    66% {
        transform: translateY(-4px) rotate(-1deg);
    }
}

.preview-header {
    background: linear-gradient(135deg, #0f1419 0%, #1a1d24 50%, #0f1419 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    position: relative;
}

.preview-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 30%,
            rgba(99, 102, 241, 0.15) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(236, 72, 153, 0.15) 0%,
            transparent 50%
        );
    z-index: 1;
}

.preview-controls {
    display: flex;
    gap: 0.5rem;
    z-index: 2;
    position: relative;
}

.preview-controls .control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.preview-controls .control.red {
    background: #ff5f57;
}
.preview-controls .control.yellow {
    background: #ffbd2e;
}
.preview-controls .control.green {
    background: #28ca42;
}

.preview-controls .control.active {
    animation: pulse-control 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(40, 202, 66, 0.5);
}

.preview-title {
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
    position: relative;
    background: linear-gradient(135deg, #fbbf24, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preview-body {
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.metric-preview {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.metric-chart {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 80px;
    justify-content: center;
}

.chart-bars .bar {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--accent-color)
    );
    border-radius: 4px 4px 0 0;
    width: 20px;
    animation: grow-bar 2s ease-out forwards;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
}

.chart-bars .bar:nth-child(1) {
    animation-delay: 0.2s;
}
.chart-bars .bar:nth-child(2) {
    animation-delay: 0.4s;
}
.chart-bars .bar:nth-child(3) {
    animation-delay: 0.6s;
}
.chart-bars .bar:nth-child(4) {
    animation-delay: 0.8s;
}
.chart-bars .bar:nth-child(5) {
    animation-delay: 1s;
}
.chart-bars .bar:nth-child(6) {
    animation-delay: 1.2s;
}

@keyframes grow-bar {
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

.metric-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric-item-preview {
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(99, 102, 241, 0.08);
    transition: all 0.3s ease;
}

.metric-item-preview:hover {
    background: rgba(99, 102, 241, 0.02);
    border-color: rgba(99, 102, 241, 0.15);
}

.metric-label-preview {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.metric-value-preview {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.coming-soon-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    animation: pulse-badge 3s ease-in-out infinite;
    align-self: flex-start;
}

@keyframes pulse-badge {
    0%,
    100% {
        box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 35px rgba(251, 191, 36, 0.5);
        transform: scale(1.02);
    }
}

.coming-soon-title {
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    margin: 0;
}

.coming-soon-title .text-gradient {
    color: #fbbf24;
    background: linear-gradient(135deg, #fbbf24, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@supports not (-webkit-background-clip: text) {
    .coming-soon-title .text-gradient {
        color: #fbbf24 !important;
        background: none !important;
        -webkit-text-fill-color: #fbbf24 !important;
    }
}

.coming-soon-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.highlight-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.highlight-item strong {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.highlight-item span {
    font-size: 0.95rem;
    color: var(--text-light);
}

.eta-info {
    background: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.05),
        rgba(236, 72, 153, 0.05)
    );
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
    text-align: center;
}

.eta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.eta-text {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}



.spec-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.coverage-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.coverage-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.coverage-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.coverage-bar {
    position: relative;
    height: 20px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.coverage-fill {
    height: 100%;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--accent-color)
    );
    border-radius: 10px;
    transition: width 0.3s ease;
}

.script-analytics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-distribution {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    justify-content: between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.feature-status {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

.feature-status.enabled {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

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

.best-practices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.practice-category h5 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.practice-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.practice-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-light);
    line-height: 1.5;
}

.practice-list li:last-child {
    border-bottom: none;
}

.practice-list strong {
    color: var(--text-color);
}

.browser-support {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.browser-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 6px;
}

.browser-item i {
    font-size: 1.25rem;
    width: 20px;
}

.browser-item span {
    flex: 1;
    font-weight: 500;
}

.support-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.support-badge.supported {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.support-badge.partial {
    background: rgba(251, 191, 36, 0.1);
    color: #d97706;
}

.support-badge.unsupported {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.implementation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.implementation-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.implementation-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.monitoring-info .alert {
    margin-bottom: 1rem;
}


.coverage-text {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.best-practice {
    background: rgba(99, 102, 241, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.best-practice h5 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.practice-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.practice-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.practice-list li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.practice-list li:last-child {
    border-bottom: none;
}

.sidebar-nav {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar .nav-link {
    color: var(--text-dark) !important;
    padding: 0.8rem 1rem;
    margin: 0.2rem 0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar .nav-link.active {
    background: var(--primary-color);
    color: white !important;
}

.nav-pills .nav-link {
    color: var(--text-dark) !important;
}

.nav-pills .nav-link.active {
    color: white !important;
}

.sidebar-nav .nav-link i {
    width: 20px;
}

.dashboard-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.stats-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #28a745;
}

.detection-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.user-welcome {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.user-details h4 {
    margin: 0;
    color: var(--text-dark);
}

.stats-grid {
    display: grid;
    gap: 1.5rem;
}

.stat-item {
    background: rgba(0, 0, 0, 0.02);
    padding: 1rem;
    border-radius: 8px;
}

.stat-item label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.code-block {
    background: #f8f9fa;
    color: #1e293b;
    padding: 1rem;
    border-radius: 8px;
    position: relative;
}

.code-block pre {
    margin: 0;
    white-space: pre-wrap;
    color: #1e293b;
}

.performance-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.user-details p {
    margin: 0.2rem 0;
    color: var(--text-light);
}

.tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.tier-badge.free {
    background: linear-gradient(135deg, #64748b, #94a3b8);
    color: white;
}

.tier-badge.premium {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
    animation: glow 2s ease-in-out infinite;
}

.premium-tier .user-avatar i {
    color: #f59e0b;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.premium-tier .user-details h4 {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes glow {
    0%,
    100% {
        box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
    }
    50% {
        box-shadow: 0 2px 15px rgba(245, 158, 11, 0.5);
    }
}

.usage-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.usage-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

.usage-progress {
    margin-top: 1rem;
}

.progress {
    height: 8px;
    margin-bottom: 0.5rem;
}

.plan-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.plan-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.plan-limits ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.plan-limits ul li {
    padding: 0.3rem 0;
    color: var(--text-light);
}

.plan-limits ul li:before {
    content: "✓";
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.navbar {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10002;
    transition: all 0.3s ease;
    min-height: 80px;
}

.navbar.scrolled {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 0.8rem 2rem;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand i {
    font-size: 1.8rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}

.nav-link:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.2);
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}




body {
    padding-top: 80px;
}

:root {
    --primary-color: #6366f1;
    --secondary-color: #0ea5e9;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --accent-color: #ec4899;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --gradient-start: #6366f1;
    --gradient-end: #ec4899;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-color);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html {
    overflow-x: hidden;
    width: 100%;
}

.hero {
    background: linear-gradient(135deg, #ec4899 0%, #6366f1 100%);
    color: white;
    min-height: 100vh;
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 30%,
            rgba(99, 102, 241, 0.15) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(236, 72, 153, 0.15) 0%,
            transparent 50%
        );
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
}

.badge-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border: 1px solid rgba(251, 191, 36, 0.6);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.text-gradient {
    background: linear-gradient(135deg, #fbbf24, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.4);
    filter: brightness(1.2);
}

@supports not (-webkit-background-clip: text) {
    .text-gradient {
        color: #fbbf24;
        background: none;
        -webkit-text-fill-color: initial;
    }
}

.hero-description {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
}

.hero-actions .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 0.75rem;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.hero-metrics {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.protection-showcase {
    position: relative;
    max-width: 450px;
    width: 100%;
}

.code-window {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.window-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red {
    background: #ff5f57;
}
.control.yellow {
    background: #ffbd2e;
}
.control.green {
    background: #28ca42;
}

.window-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.window-content {
    padding: 2rem;
}

.protection-layer {
    background: rgba(52, 211, 153, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.4);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #34d399;
}

.protection-layer i {
    font-size: 1.25rem;
}

.threat-alerts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.alert-item {
    background: rgba(251, 146, 60, 0.15);
    border: 1px solid rgba(251, 146, 60, 0.4);
    border-radius: 0.5rem;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fb923c;
    font-size: 0.9rem;
}

.alert-item i {
    font-size: 1rem;
}

.col-lg-6, .col-md-4, .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
}

.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.installation {
    background-color: var(--light-color);
    padding: 100px 0;
}

.code-container {
    position: relative;
    background: var(--dark-color);
    border-radius: 1rem;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.install-container {
    max-width: 800px;
    margin: 0 auto;
}

.btn-copy {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    font-weight: 600;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-copy:hover {
    background: var(--primary-color);
    color: white;
}

.key-notice {
    background: rgba(var(--primary-color-rgb), 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.key-notice code {
    background: rgba(255, 255, 255, 0.5);
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    color: var(--primary-color);
    font-weight: 600;
}

.key-notice i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.table {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 1rem;
}

.table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-cta {
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
    color: white;
}

.btn-demo {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-demo:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.btn-glow-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
    z-index: -1;
}

.btn-cta:hover .btn-glow-effect {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--accent-color)
    );
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.features {
    padding: 80px 0;
    color: var(--text-dark);
}

.features h2,
.features .lead {
    color: var(--text-dark);
}

.beta-program h2,
.cta-banner h2 {
    color: white !important;
}

.api-documentation h2,
.installation h2,
.comparison h2,
.technical-specs h2,
.competitive-edge h2 {
    color: var(--text-dark) !important;
}

.protection-overview h2 {
    color: var(--text-dark) !important;
}

.features .feature-card h3 {
    color: var(--primary-color);
}

.features .feature-card p {
    color: var(--text-dark);
}

.installation {
    padding: 80px 0;
}

.code-container {
    position: relative;
    background: #1e1e1e;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.copy-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.comparison {
    padding: 80px 0;
}

.table {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.table th {
    background-color: var(--primary-color);
    color: white;
}

.founder-section {
    background-color: #f8f9fa;
}

.founder-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.founder-card {
    background: white;
    border-radius: 1rem;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.founder-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f8f9fa;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
}

.founder-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-bio {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.founder-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.founder-stats .stat-item {
    text-align: center;
}

.founder-stats .stat-item strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.founder-stats .stat-item span {
    font-size: 0.9rem;
    color: var(--text-light);
}


.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #b0c4de;
    padding: 2rem 0;
    border-top: 1px solid #2a3f5f;
}

.footer p {
    margin: 0;
}

.footer a {
    color: #6366f1 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #8b5cf6 !important;
    text-decoration: underline;
}

[data-aos] {
    opacity: 0;
    transition-duration: 0.8s;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.error-page {
    background: linear-gradient(135deg, #1a1f3c, #2d1b4e);
    min-height: 100vh;
    display: grid;
    place-items: center;
    color: white;
    text-align: center;
    position: relative;
    overflow-x: hidden;
    padding: 1rem;
}

.error-page p {
    color: rgba(255, 255, 255, 0.9);
}


.error-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.03) 0px,
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 4px
    );
    animation: bgShift 20s linear infinite;
    pointer-events: none;
}

.error-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.shield-icon {
    font-size: 4rem;
    color: #ff3e3e;
    animation: pulse 2s infinite;
    margin-bottom: -1rem;
}

.violation-info {
    background: rgba(255, 62, 62, 0.1);
    border: 1px solid rgba(255, 62, 62, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    width: 100%;
}

.violation-type {
    text-align: center;
    margin-bottom: 1rem;
}

.warning-icon {
    color: #ff3e3e;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.violation-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-all;
}



.protection-features {
    display: grid;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.protection-features p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.protection-features i {
    color: #4caf50;
}

.violation-info h2 {
    font-size: 1.75rem;
    margin: 0;
}

.violation-info p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.security-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.security-info p {
    margin: 0;
}

.security-badge {
    background: linear-gradient(135deg, #ff3e3e, #ff7676);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.btn-glow {
    background: linear-gradient(135deg, #ff3e3e, #ff7676);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 62, 62, 0.4);
    color: white;
}

.btn-glow::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    animation: buttonGlow 1.5s linear infinite;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

.dmca-form {
    max-width: 800px;
    width: 95%;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: auto;
    position: relative;
    z-index: 10001;
}

.form-section {
    background: rgba(99, 102, 241, 0.02);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.section-title {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(99, 102, 241, 0.1);
    padding-bottom: 0.5rem;
}

.legal-notice {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08), rgba(255, 152, 0, 0.05));
    border-radius: 1rem;
    border: 1px solid rgba(255, 193, 7, 0.3);
    position: relative;
    overflow: hidden;
}

.legal-notice::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    z-index: 1;
}

.legal-notice .alert {
    background: transparent;
    border: none;
    margin: 0;
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    border-radius: 0;
}

.legal-notice .alert-warning {
    color: #92400e;
    font-size: 0.95rem;
    line-height: 1.6;
}

.legal-notice .alert-warning strong {
    color: #78350f;
    font-weight: 700;
}

.legal-notice .alert-warning i {
    font-size: 1.1rem;
    color: #f59e0b;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.legal-checkboxes .form-check {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.legal-checkboxes .form-check:hover {
    background: rgba(99, 102, 241, 0.05);
    border-color: rgba(99, 102, 241, 0.2);
}

.legal-checkboxes .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.legal-checkboxes .form-check-label {
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
}

.dmca-info {
    background: rgba(99, 102, 241, 0.03);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.dmca-info h5 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.info-item h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

.success-details .alert-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
}

.next-steps {
    background: rgba(99, 102, 241, 0.03);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.next-steps h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.next-steps ul li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes buttonGlow {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

@keyframes bgShift {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-20px, -20px);
    }
}

.demo-section {
    background: linear-gradient(135deg, var(--light-color), #f0f4ff);
    min-height: calc(100vh - 300px);
    padding: 4rem 0;
}

.demo-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.5rem;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    padding: 1.5rem;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--accent-color)
    );
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-header i {
    font-size: 1.5rem;
}

.card-header h3 {
    margin: 0;
    font-weight: 600;
}

.card-body {
    padding: 2rem;
}

.challenge-list ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.challenge-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.challenge-list li i {
    color: var(--primary-color);
}

.protected-content {
    background: rgba(var(--primary-color-rgb), 0.05);
    border-radius: 1rem;
    overflow: hidden;
}

.content-header {
    background: rgba(var(--primary-color-rgb), 0.1);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

.content-body {
    padding: 1.5rem;
}

.demo-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.status-item {
    background: rgba(var(--primary-color-rgb), 0.05);
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.status-item.active {
    background: var(--primary-color);
    color: white;
}

.status-item i {
    font-size: 1.5rem;
}

.status-log {
    background: var(--dark-color);
    border-radius: 1rem;
    overflow: hidden;
}

.log-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.log-content {
    padding: 1rem;
    color: var(--light-color);
    max-height: 200px;
    overflow-y: auto;
}

.log-entry {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.log-entry:last-child {
    border-bottom: none;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: linear-gradient(
        135deg,
        var(--gradient-start),
        var(--gradient-end)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

[data-aos="flip-left"] {
    transform: perspective(2500px) rotateY(90deg);
}

[data-aos="flip-left"].aos-animate {
    transform: perspective(2500px) rotateY(0);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--gradient-start),
        var(--gradient-end)
    );
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--gradient-end),
        var(--gradient-start)
    );
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.statistics {
    background: linear-gradient(
        135deg,
        var(--dark-color) 0%,
        var(--primary-color) 100%
    );
}

.stat-card {
    padding: 2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.edge-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.edge-card:hover {
    transform: translateY(-5px);
}

.edge-card li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.edge-card .fas {
    margin-right: 0.5rem;
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.testimony {
    font-style: italic;
    margin-bottom: 1rem;
}

.client-info {
    display: flex;
    flex-direction: column;
}

.client-info small {
    color: var(--text-light);
}

.protection-overview {
    background-color: var(--light-color);
    padding: 80px 0;
}

.protection-card {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.protection-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.protection-image img {
    width: 100%;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.protection-card:hover .protection-image img {
    transform: scale(1.02);
}

.protection-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.protection-badge {
    background: linear-gradient(
        135deg,
        var(--gradient-start),
        var(--gradient-end)
    );
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.protection-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.protection-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.protection-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.spec-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.beta-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 1.5rem;
}

.beta-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.beta-stats .stat .number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.beta-stats .stat .label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


.spec-card:hover {
    transform: translateY(-5px);
}

.spec-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.spec-card h3 i {
    font-size: 1.5rem;
}

.spec-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 1.5rem;
}

.spec-card ul li:last-child {
    border-bottom: none;
}

.spec-card ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}
.version-comparison {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.pricing-header {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-cards {
    max-width: 1000px;
    margin: 0 auto;
}

.version-card {
    background: white;
    border-radius: 1.5rem;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid transparent;
    overflow: hidden;
    position: relative;
}

.version-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.version-card.premium-version {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, white 0%, rgba(99, 102, 241, 0.02) 100%);
}

.version-card.premium-version::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    z-index: 1;
}

.version-header {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
}

.version-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.version-badge.free {
    background: linear-gradient(135deg, #64748b, #94a3b8);
    color: white;
}

.version-badge.premium {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5); }
}

.version-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.version-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.version-price {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.version-features {
    padding: 0 2rem 2rem;
}

.features-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(99, 102, 241, 0.1);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.features-list i {
    margin-top: 0.1rem;
    flex-shrink: 0;
    font-size: 1rem;
}

.features-list .fa-check {
    color: #10b981;
}

.features-list .fa-star {
    color: #f59e0b;
}

.features-list .fa-info-circle {
    color: #64748b;
}

.features-list .fa-shield-alt,
.features-list .fa-headset,
.features-list .fa-cog,
.features-list .fa-chart-line,
.features-list .fa-update {
    color: var(--primary-color);
}

.limitations {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
    margin-top: 1rem;
}

.premium-benefits {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(236, 72, 153, 0.05));
    border-radius: 1.25rem;
    padding: 1.75rem;
    margin-top: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.15);
    position: relative;
    overflow: hidden;
}

.premium-benefits::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 1.25rem 1.25rem 0 0;
}

.premium-benefits h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.premium-benefits h4::before {
    content: "✨";
    font-size: 1.2rem;
}

.version-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.version-footer .btn {
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.version-footer .btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.version-footer .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.version-footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.comparison-table {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: none;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.comparison-table th {
    border: none;
    font-weight: 600;
    padding: 1.5rem 1rem;
    color: white;
    text-align: center;
}

.comparison-table td {
    border: none;
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    vertical-align: middle;
}

.comparison-table tbody tr:hover {
    background: rgba(99, 102, 241, 0.02);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.technical-comparison {
    margin-top: 4rem;
}

.integration-guide {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
}

.custom-prompt {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9998;
}

.custom-prompt .prompt-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
}

.custom-prompt .message {
    margin-bottom: 20px;
    text-align: center;
}

.custom-prompt .buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.captcha-container {
    background: rgba(99, 102, 241, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 0.5rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.captcha-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(99, 102, 241, 0.1),
        transparent
    );
    transition: left 0.6s ease;
    z-index: -1;
}

.captcha-container:hover {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
}

.captcha-container:hover::before {
    left: 100%;
}

.captcha-image-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    background: white;
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: 2px solid rgba(99, 102, 241, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.captcha-image-container:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.captcha-image-container img {
    height: 60px;
    border-radius: 0.5rem;
    flex-grow: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.refresh-button {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--accent-color)
    );
    border: none;
    color: white;
    padding: 0.6rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.refresh-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.refresh-button:hover::before {
    width: 100px;
    height: 100px;
}

.refresh-button:hover {
    transform: rotate(180deg) scale(1.15);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    background: linear-gradient(
        135deg,
        var(--accent-color),
        var(--primary-color)
    );
}

.refresh-button:active {
    transform: rotate(360deg) scale(1.05);
    transition: all 0.2s ease;
}

.refresh-button i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.refresh-button:hover i {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

.refresh-button i {
    font-size: 1rem;
}

.custom-alert {
    position: fixed;
    top: 100px;
    right: 20px;
    max-width: 350px;
    padding: 15px 20px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9998;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.custom-alert.show {
    transform: translateX(0);
}

.custom-alert .icon {
    font-size: 20px;
    flex-shrink: 0;
}

.custom-alert .content {
    flex-grow: 1;
}

.custom-alert .close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    color: #666;
    flex-shrink: 0;
}

.custom-alert .close:hover {
    color: #333;
}

.custom-alert.success {
    border-left: 4px solid #28a745;
}

.custom-alert.error {
    border-left: 4px solid #dc3545;
}

.custom-alert.warning {
    border-left: 4px solid #ffc107;
}

.custom-alert.info {
    border-left: 4px solid #17a2b8;
}

.custom-alert.success .icon {
    color: #28a745;
}

.custom-alert.error .icon {
    color: #dc3545;
}

.custom-alert.warning .icon {
    color: #ffc107;
}

.custom-alert.info .icon {
    color: #17a2b8;
}

.cta-banner {
    background: linear-gradient(
        135deg,
        var(--dark-color),
        var(--primary-color)
    );
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-feature i {
    color: #4caf50;
}

.btn-cta-large {
    background: linear-gradient(
        135deg,
        var(--gradient-start),
        var(--gradient-end)
    );
    border: none;
    padding: 1.2rem 3rem;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6);
    color: white;
}

.btn-cta-large::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: shimmerButton 3s linear infinite;
    opacity: 0;
}

.btn-cta-large:hover::before {
    opacity: 1;
}

.cta-note {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cta-buttons {
    margin-top: 2rem;
}

.cta-banner .btn-primary {
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.btn-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        var(--gradient-start),
        var(--gradient-end)
    );
    border: none;
    transition: all 0.4s ease;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: shimmerButton 3s linear infinite;
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

@keyframes shimmerButton {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

.stat-card {
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-card h3 {
    background: linear-gradient(to right, #fff, #e1e1ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: numberCount 2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@keyframes numberCount {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.api-documentation {
    padding: 5rem 0;
}

.api-highlights {
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.highlight-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.highlight-item code {
    background: #f8f9fa;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: #6c5ce7;
    font-weight: 600;
}

.code-preview {
    position: relative;
}

.code-window {
    background: #2d3436;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.window-header {
    background: #636e72;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red {
    background: #ff5f56;
}
.control.yellow {
    background: #ffbd2e;
}
.control.green {
    background: #27ca3f;
}

.window-title {
    color: #ddd;
    font-size: 0.9rem;
    font-family: monospace;
}

.code-content {
    padding: 1.5rem;
}

.code-content pre {
    margin: 0;
    background: none;
    color: #ddd;
    font-size: 0.9rem;
    line-height: 1.5;
}

.code-content code {
    background: none !important;
    color: #ddd;
}

.beta-program {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.beta-program p {
    color: rgba(255, 255, 255, 0.9);
}

.beta-program .container {
    position: relative;
}

.beta-badge {
    display: inline-block;
    margin-bottom: 2rem;
}

.beta-tag {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    animation: pulse-beta 3s ease-in-out infinite;
}

@keyframes pulse-beta {
    0%,
    100% {
        box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 25px rgba(251, 191, 36, 0.5);
        transform: scale(1.02);
    }
}

.beta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.beta-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 500px;
}

.beta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary-color);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.benefit-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.beta-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
}

.btn-beta {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    padding: 1.2rem 2.5rem;
    font-weight: 700;
    color: white;
    border-radius: 0.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.btn-beta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    color: white;
}

.btn-beta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
    z-index: 1;
}

.btn-beta:hover::before {
    left: 100%;
}

.btn-beta span,
.btn-beta i {
    position: relative;
    z-index: 2;
}

.beta-stats {
    display: flex;
    gap: 2rem;
}

.beta-stats .stat {
    text-align: center;
}

.beta-stats .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.beta-stats .label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.beta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.beta-dashboard {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-header {
    background: linear-gradient(
        135deg,
        var(--dark-color),
        var(--primary-color)
    );
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.header-controls {
    display: flex;
    gap: 0.5rem;
}

.header-controls .control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.header-controls .control.active {
    background: #4ade80;
    animation: pulse-control 2s ease-in-out infinite;
}

@keyframes pulse-control {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.header-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.dashboard-content {
    padding: 2rem;
}

.beta-features {
    margin-bottom: 2rem;
}

.feature-preview {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.02);
    border-radius: 0.75rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.feature-preview:hover {
    background: rgba(99, 102, 241, 0.05);
    border-color: rgba(99, 102, 241, 0.2);
}

.feature-preview.active {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary-color);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature-header i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.feature-header span:first-of-type {
    font-weight: 600;
    color: var(--text-dark);
    flex-grow: 1;
}

.status-badge {
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.status-badge.new {
    background: #10b981;
    color: white;
}

.status-badge.beta {
    background: #f59e0b;
    color: white;
}

.status-badge.coming {
    background: #6b7280;
    color: white;
}

.feature-progress {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
    height: 6px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--accent-color)
    );
    border-radius: 1rem;
    transition: width 2s ease;
    animation: progress-shine 3s ease-in-out infinite;
}

@keyframes progress-shine {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.feature-preview p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.beta-feedback {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 0.75rem;
    padding: 1rem;
}

.feedback-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.feedback-header i {
    color: var(--primary-color);
}

.feedback-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.feedback-text {
    font-size: 0.85rem;
    color: var(--text-light);
}

.feedback-text strong {
    color: var(--primary-color);
}


