/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Visually Hidden for SEO */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f0f0f;
}

::-webkit-scrollbar-thumb {
    background: #6a0dad;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8a2be2;
}

/* Overlay */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #05000a;
    /* Darker purple hint */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 1s ease;
    cursor: pointer;
}

.overlay-content p {
    font-size: 1.5rem;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        text-shadow: 0 0 5px #fff;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 20px #fff, 0 0 30px #b026ff;
    }

    /* Purple glow */
    100% {
        opacity: 0.5;
        text-shadow: 0 0 5px #fff;
    }
}

/* Main Content */
#main-content {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    padding-top: 0;
    /* Removed padding so banner starts at top */
    padding-bottom: 50px;
}

.hidden {
    pointer-events: none;
    display: none !important;
    /* Ensure it doesn't take space when hidden if we want strict hiding */
}

/* Override display none for transition */
#main-content.hidden {
    display: flex !important;
    visibility: hidden;
}


/* Background Animation */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at bottom, #1a0b2e 0%, #000000 100%);
    /* Purple gradient */
}

/* Hero Section */
.hero-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
    /* Removed padding for full width */
    margin-bottom: 60px;
    animation: fadeIn 1.5s ease forwards;
}

.hero-container {
    width: 100%;
    max-width: 100%;
    /* Full width */
}

.hero-banner {
    width: 100%;
    height: auto;
    border-radius: 0;
    /* Removed radius for full width look */
    border-bottom: 2px solid rgba(138, 43, 226, 0.5);
    /* Border only at bottom */
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.2);
    object-fit: cover;
    display: block;
}

/* Navbar Styles (Global) */
.navbar {
    padding: 1rem 2rem;
    background: rgba(30, 15, 50, 0.85);
    /* Purple tint */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 43, 226, 0.2);
    /* Purple border hint */
    position: fixed;
    top: 20px;
    /* Floating from top */
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    /* Less than 100% width */
    max-width: 1200px;
    z-index: 1000;
    transition: all 0.3s ease;
    border-radius: 50px;
    /* Rounded corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar:hover {
    background: rgba(10, 10, 15, 0.95);
}

.nav-container {
    max-width: 1400px;
    /* Wider container */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    /* Larger logo text */
    letter-spacing: 1px;
}

.nav-logo img {
    height: 45px;
    /* Slightly larger logo */
    border-radius: 50%;
    border: 2px solid #b026ff;
    /* Added border to logo */
    box-shadow: 0 0 10px rgba(176, 38, 255, 0.5);
}

.nav-links {
    display: flex;
    gap: 30px;
    /* More spacing */
    background: rgba(255, 255, 255, 0.03);
    /* Subtle pill background */
    padding: 10px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
}

.nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(176, 38, 255, 0.8);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #b026ff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Products Section */
#products {
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
    animation: fadeIn 2s ease 0.5s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #b026ff;
    text-shadow: 0 0 10px rgba(176, 38, 255, 0.3);
}

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

.product-card {
    background: #0d0616;
    /* Dark background */
    border: 1px solid #2a1b3d;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.2);
    border-color: #8a2be2;
}

/* Glow effect on top */
.product-card::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.product-icon {
    font-size: 3rem;
    color: #b084f4;
    /* Light purple */
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.product-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.price-label {
    font-size: 1rem;
    color: #aaa;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #b084f4;
}

.frequency {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
    display: block;
    position: relative;
    z-index: 1;
}

.save-text {
    color: #00ff9d;
    /* Green */
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.features-list {
    list-style: none;
    text-align: left;
    width: 100%;
    margin-bottom: 30px;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.features-list li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: #b084f4;
    font-size: 0.8rem;
}

.note {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 40px;
    background: #8a2be2;
    /* Purple */
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    position: relative;
    z-index: 1;
}

.buy-btn:hover {
    background: #9d4edd;
    transform: translateY(-2px);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #1a0b2e;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    border: 1px solid #6a0dad;
    box-shadow: 0 0 25px rgba(106, 13, 173, 0.5);
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #aaa;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #fff;
}

.modal-content h3 {
    margin-bottom: 10px;
    color: #b026ff;
}

.modal-content p {
    margin-bottom: 20px;
    color: #ccc;
    font-size: 0.9rem;
}

#checkout-form input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #0f0f0f;
    color: #fff;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.3s ease;
}

#checkout-form input:focus {
    border-color: #b026ff;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(45deg, #6a0dad, #b026ff);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.submit-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Product Detail Modal Styles */
.product-detail-content {
    max-width: 800px;
    width: 90%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.2);
}

.modal-body {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.modal-features,
.modal-pricing {
    flex: 1;
}

.modal-features h3,
.modal-pricing h3 {
    color: #8a2be2;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#modal-features-list {
    list-style: none;
    padding: 0;
}

#modal-features-list li {
    margin-bottom: 0.8rem;
    color: #e0e0e0;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

#modal-features-list li i {
    color: #8a2be2;
    margin-right: 10px;
    margin-top: 4px;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-option:hover {
    background: rgba(138, 43, 226, 0.1);
    border-color: #8a2be2;
}

.pricing-option.selected {
    background: rgba(138, 43, 226, 0.2);
    border-color: #8a2be2;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
}

.plan-name {
    font-weight: 600;
    color: #fff;
}

.plan-price {
    color: #8a2be2;
    font-weight: bold;
}

@media (max-width: 768px) {
    .modal-body {
        flex-direction: column;
    }
}


/* Product Page Styles (Navbar reused from global) */
.back-link {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
}

.back-link:hover {
    color: #8a2be2;
}

#product-page-content {
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.product-detail-container {
    max-width: 1200px;
    width: 95%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    z-index: 1;
}

.product-info-column h1 {
    font-size: 2.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.product-status {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-working {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.status-undetected {
    background: rgba(138, 43, 226, 0.1);
    color: #8a2be2;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.video-container {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.features-section,
.requirements-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
}

.features-section h2,
.requirements-section h2 {
    color: #8a2be2;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

#product-features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

#product-features-list li {
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 10px;
}

#product-features-list li i {
    color: #8a2be2;
}

/* Requirements Section Styling */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.requirement-card {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-3px);
    border-color: #8a2be2;
    background: rgba(26, 26, 46, 0.8);
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.2);
}

.requirement-icon {
    font-size: 1.8rem;
    color: #b084f4;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.requirement-info {
    flex: 1;
}

.requirement-label {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    font-weight: 600;
}

.requirement-value {
    font-size: 1.05rem;
    color: #fff;
    font-weight: 600;
    line-height: 1.4;
}

.pricing-card {
    background: rgba(26, 26, 46, 0.95);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.1);
    margin-top: 2rem;
}

.pricing-card h2 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.buy-btn-large {
    width: 100%;
    padding: 1rem;
    margin-top: 1.5rem;
    background: linear-gradient(45deg, #8a2be2, #4b0082);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
}

@media (max-width: 900px) {
    .product-detail-container {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        position: static;
    }
}

/* Features Section */
#features {
    width: 100%;
    max-width: 1200px;
    padding: 60px 20px;
    margin-top: 60px;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeIn 2s ease 1s forwards;
    text-align: center;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(138, 43, 226, 0.15);
    padding: 8px 20px;
    border-radius: 25px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    color: #b084f4;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.features-badge i {
    color: #8a2be2;
}

.section-subtitle {
    color: #aaa;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-card {
    background: rgba(26, 26, 46, 0.4);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 20px;
    padding: 50px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #8a2be2;
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.3);
    background: rgba(26, 26, 46, 0.6);
}

.feature-icon {
    font-size: 2.5rem;
    color: #b084f4;
    margin-bottom: 25px;
    background: rgba(138, 43, 226, 0.15);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.7;
}

/* Payment & Setup Section */
.payment-setup-section {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin-bottom: 80px;
    animation: fadeIn 2s ease 1.2s forwards;
    opacity: 0;
}

.content-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.payment-methods-card,
.easy-setup-card {
    background: rgba(26, 26, 46, 0.4);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.payment-methods-card:hover,
.easy-setup-card:hover {
    border-color: #8a2be2;
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.2);
}

.card-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-description {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.payment-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 20px;
}

.payment-icon {
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #b084f4;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    transform: translateY(-5px);
    background: rgba(138, 43, 226, 0.2);
    border-color: #8a2be2;
}

.payment-security-badges {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(138, 43, 226, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(138, 43, 226, 0.15);
    transition: all 0.3s ease;
}

.security-badge:hover {
    background: rgba(138, 43, 226, 0.12);
    border-color: rgba(138, 43, 226, 0.3);
    transform: translateX(5px);
}

.security-badge i {
    font-size: 1.4rem;
    color: #8a2be2;
    min-width: 30px;
    text-align: center;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.badge-title {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
}

.badge-subtitle {
    font-size: 0.75rem;
    color: #aaa;
}

.payment-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.payment-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(138, 43, 226, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(138, 43, 226, 0.15);
    transition: all 0.3s ease;
}

.payment-feature-item:hover {
    background: rgba(138, 43, 226, 0.1);
    border-color: rgba(138, 43, 226, 0.3);
}

.payment-feature-item i {
    color: #8a2be2;
    font-size: 1.1rem;
    min-width: 20px;
}

.payment-feature-item span {
    color: #ddd;
    font-size: 0.9rem;
    font-weight: 500;
}

.setup-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.setup-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.setup-option:hover {
    background: rgba(138, 43, 226, 0.15);
    border-color: #8a2be2;
}

.setup-option i {
    color: #b084f4;
    font-size: 1.2rem;
}

.setup-option span {
    flex: 1;
    margin-left: 15px;
    color: #fff;
    font-weight: 500;
}

.toggle-switch {
    width: 50px;
    height: 26px;
    background: #2a2a4a;
    border-radius: 13px;
    position: relative;
    border: 1px solid rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
}

.toggle-switch.active {
    background: linear-gradient(45deg, #8a2be2, #b084f4);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    top: 2px;
    left: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.toggle-switch.active::after {
    left: 25px;
}

.setup-slider {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 12px;
}

.setup-slider label {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.setup-slider label i {
    color: #b084f4;
}

.slider-bar {
    width: 100%;
    height: 8px;
    background: #2a2a4a;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.slider-fill {
    height: 100%;
    width: 45%;
    background: linear-gradient(90deg, #8a2be2, #b084f4);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.interaction-prompt {
    margin-top: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px;
    background: rgba(138, 43, 226, 0.05);
    border-radius: 12px;
}

.interaction-prompt span {
    color: #aaa;
    font-size: 0.9rem;
}

.hand-icon {
    font-size: 2rem;
    animation: wave 1.5s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-20deg); }
}

@media (max-width: 900px) {
    .content-container {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
footer {
    background: #05000a;
    border-top: 1px solid #2a1b3d;
    padding: 60px 0 20px;
    margin-top: 50px;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: #b026ff;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 2px solid #b026ff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: #b026ff;
    padding-left: 5px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: #fff;
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Features Section */
#features {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeIn 2s ease 1s forwards;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #0d0616;
    border: 1px solid #2a1b3d;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #8a2be2;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.15);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #8a2be2;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
    box-shadow: 0 0 10px #8a2be2;
}

.feature-icon {
    font-size: 2rem;
    color: #b084f4;
    margin-bottom: 20px;
    background: rgba(138, 43, 226, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
}

/* Footer Styles */
footer {
    background: #05000a;
    border-top: 1px solid #2a1b3d;
    padding: 60px 0 20px;
    margin-top: 50px;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: #b026ff;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 2px solid #b026ff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: #b026ff;
    padding-left: 5px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: #fff;
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover {
    color: #b026ff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    font-size: 0.8rem;
}

/* Status Page Styles */
#status-page-content {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
}

.status-container {
    max-width: 1000px;
    width: 95%;
    z-index: 1;
}

/* Status Header */
.status-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInDown 0.8s ease;
}

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

.page-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.6);
    font-weight: 700;
    letter-spacing: 1px;
}

.page-subtitle {
    text-align: center;
    color: #aaa;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Overall Status Card */
.overall-status-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(16, 16, 36, 0.95) 100%);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.2);
    margin-top: 30px;
    transition: all 0.3s ease;
}

.overall-status-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(138, 43, 226, 0.3);
}

/* Pulse Animation */
.status-indicator {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-dot {
    width: 20px;
    height: 20px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    position: relative;
    z-index: 2;
}

.pulse-ring {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid #00ff00;
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
    opacity: 0;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.overall-info {
    flex: 1;
}

.overall-info h2 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
}

.overall-info p {
    color: #00ff00;
    font-size: 0.95rem;
    font-weight: 500;
}

.uptime-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(138, 43, 226, 0.15);
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    color: #b084f4;
    font-weight: 600;
}

.uptime-badge i {
    font-size: 1.2rem;
}

/* Status List */
.status-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.status-item {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(16, 16, 36, 0.8) 100%);
    border: 1px solid rgba(138, 43, 226, 0.2);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

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

.status-item:nth-child(1) { animation-delay: 0.1s; }
.status-item:nth-child(2) { animation-delay: 0.2s; }
.status-item:nth-child(3) { animation-delay: 0.3s; }
.status-item:nth-child(4) { animation-delay: 0.4s; }
.status-item:nth-child(5) { animation-delay: 0.5s; }
.status-item:nth-child(6) { animation-delay: 0.6s; }
.status-item:nth-child(7) { animation-delay: 0.7s; }
.status-item:nth-child(8) { animation-delay: 0.8s; }
.status-item:nth-child(9) { animation-delay: 0.9s; }

.status-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #8a2be2, #b084f4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.status-item:hover {
    transform: translateY(-5px);
    border-color: #8a2be2;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(16, 16, 36, 0.95) 100%);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.status-item:hover::before {
    opacity: 1;
}

.status-item-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-icon {
    width: 50px;
    height: 50px;
    background: rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #b084f4;
    transition: all 0.3s ease;
}

.status-item:hover .product-icon {
    background: rgba(138, 43, 226, 0.25);
    transform: rotate(10deg) scale(1.1);
}

.status-info {
    flex: 1;
}

.status-info h3 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 600;
}

.last-checked {
    font-size: 0.8rem;
    color: #888;
    font-weight: 400;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    align-self: flex-start;
}

.status-working {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.status-details {
    display: flex;
    gap: 20px;
    padding-top: 12px;
    border-top: 1px solid rgba(138, 43, 226, 0.15);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 0.85rem;
}

.detail-item i {
    color: #8a2be2;
    font-size: 0.9rem;
}

/* Additional Status Badges */
.status-detected {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.status-updating {
    background: rgba(255, 165, 0, 0.1);
    color: #ffa500;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1000px) {
    .status-list {
        grid-template-columns: 1fr;
    }

    .overall-status-card {
        flex-direction: column;
        text-align: center;
    }

    .page-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .status-details {
        flex-direction: column;
        gap: 10px;
    }

    .page-title {
        font-size: 1.8rem;
    }
}