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

:root {
    --primary-blue: #3b82f6;
    --light-blue: #60a5fa;
    --bright-blue: #93c5fd;
    --dark-blue: #1e3a8a;
    --darker-blue: #1e40af;
    --darkest-blue: #1e3a8a;
    --navy-blue: #0f172a;
    --pure-white: #ffffff;
    --off-white: #e0f2fe;
    --gradient-start: #000000;
    --gradient-mid: #0a1628;
    --gradient-end: #1e3a8a;
    --gradient-white: rgba(255, 255, 255, 0.08);
    --glow-blue: #3b82f6;
    --text-light: #ffffff;
    --text-muted: #93c5fd;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    color: var(--text-light);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

#animatedBackground {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    background: #000000;
    pointer-events: none;
}


/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6), 0 0 1px rgba(59, 130, 246, 0.1);
    z-index: 1000;
    padding: 0;
}

.navbar .container {
    padding: 0 3rem;
    max-width: 100%;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    min-height: 80px;
    padding: 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    flex-shrink: 0;
    margin-left: 0;
    padding-left: 3rem;
    cursor: pointer;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--bright-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.logo {
    height: 75px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.9)) drop-shadow(0 0 60px rgba(59, 130, 246, 0.5)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.logo-container:hover .logo {
    filter: drop-shadow(0 0 40px rgba(59, 130, 246, 1)) drop-shadow(0 0 80px rgba(59, 130, 246, 0.7)) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
    transform: scale(1.12);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pure-white);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}

.logo-container:hover .logo-text {
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
    color: var(--bright-blue);
    transform: translateX(2px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    z-index: 5;
    white-space: nowrap;
}

.nav-menu-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    gap: 0.5rem;
}

.nav-menu-center a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    white-space: nowrap;
    flex-shrink: 0;
    background: transparent;
    border: 1px solid transparent;
}

.nav-menu-center a::before {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--bright-blue), transparent);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-menu-center a:hover {
    color: var(--bright-blue);
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-1px);
}

.nav-menu-center a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    white-space: nowrap;
    flex-shrink: 0;
    background: transparent;
    border: 1px solid transparent;
    display: block;
}

.dropdown-toggle::before {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--bright-blue), transparent);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.dropdown:hover .dropdown-toggle {
    color: var(--bright-blue);
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-1px);
}

.dropdown:hover .dropdown-toggle::before {
    transform: translateX(-50%) scaleX(1);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 12px;
    list-style: none;
    padding: 0.75rem 0;
    margin: 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(59, 130, 246, 0.1);
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.85rem 1.75rem;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    font-size: 0.9rem;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--bright-blue);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu a:hover {
    background: rgba(59, 130, 246, 0.12);
    color: var(--bright-blue);
    padding-left: 2.25rem;
    transform: translateX(4px);
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}


.btn-nav {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue), var(--light-blue));
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--light-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--pure-white);
    line-height: 1.2;
    letter-spacing: -0.02em;
    white-space: nowrap;
    text-align: center;
    width: 100%;
    transform: translateX(-15px);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    width: 100%;
    opacity: 0.95;
    text-align: center;
}

.hero-features {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-badge {
    padding: 0.5rem 1.25rem;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    color: var(--bright-blue);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1.1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.2));
    color: var(--bright-blue);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2), 0 0 0 1px rgba(59, 130, 246, 0.3);
    border: 1.5px solid rgba(59, 130, 246, 0.4);
    backdrop-filter: blur(10px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.3), 0 0 0 1px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.25));
    color: var(--light-blue);
}

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

.btn-secondary {
    background: rgba(0, 0, 0, 0.4);
    color: var(--bright-blue);
    border: 2px solid rgba(59, 130, 246, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.7);
    color: var(--light-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}


/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--pure-white);
}

/* Features Section */
.features {
    background: rgba(30, 10, 50, 0.3);
    backdrop-filter: blur(10px);
}

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

.feature-card {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(30, 10, 50, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), var(--light-blue), var(--bright-blue), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--bright-blue);
}

.feature-card p {
    color: var(--pure-white);
    line-height: 1.6;
}

/* Products Section */
.products {
    background: transparent;
    position: relative;
    padding-top: 50px;
}

.products-page {
    padding-top: 20px;
    padding-bottom: 80px;
    min-height: calc(100vh - 200px);
}

.products .container {
    position: relative;
}

.products::before {
    display: none;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.title-line {
    flex: 1;
    max-width: 300px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.4) 20%,
        rgba(59, 130, 246, 0.8) 50%,
        rgba(59, 130, 246, 0.4) 80%,
        transparent 100%);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.section-title {
    white-space: nowrap;
    margin: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.product-card {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(15, 23, 42, 0.85) 50%,
        rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(59, 130, 246, 0.08) 0%, 
        rgba(96, 165, 250, 0.05) 30%,
        rgba(147, 197, 253, 0.03) 50%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(59, 130, 246, 0.2);
}

.product-card.featured {
    border: 2px solid rgba(59, 130, 246, 0.5);
    box-shadow: 
        0 8px 35px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(59, 130, 246, 0.3),
        0 0 30px rgba(59, 130, 246, 0.2),
        inset 0 0 20px rgba(59, 130, 246, 0.05);
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    position: relative;
    z-index: 2;
    animation: featuredGlow 3s ease-in-out infinite;
}

.product-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(96, 165, 250, 0.3), rgba(59, 130, 246, 0.3));
    border-radius: 16px;
    z-index: -1;
    opacity: 0.6;
    animation: borderPulse 2s ease-in-out infinite;
}

@keyframes featuredGlow {
    0%, 100% {
        box-shadow: 
            0 8px 35px rgba(0, 0, 0, 0.6),
            0 0 0 1px rgba(59, 130, 246, 0.3),
            0 0 30px rgba(59, 130, 246, 0.2),
            inset 0 0 20px rgba(59, 130, 246, 0.05);
    }
    50% {
        box-shadow: 
            0 8px 35px rgba(0, 0, 0, 0.6),
            0 0 0 1px rgba(59, 130, 246, 0.4),
            0 0 40px rgba(59, 130, 246, 0.35),
            inset 0 0 20px rgba(59, 130, 246, 0.08);
    }
}

@keyframes borderPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.9;
    }
}

.product-card.featured:hover {
    transform: translateY(-10px) scale(1.06);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.7),
        0 0 0 2px rgba(59, 130, 246, 0.5),
        0 0 50px rgba(59, 130, 246, 0.4),
        inset 0 0 30px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.7);
}

.product-card.featured .product-icon svg {
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.8)) 
            drop-shadow(0 0 25px rgba(59, 130, 246, 0.6))
            drop-shadow(0 0 35px rgba(59, 130, 246, 0.4));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.8)) 
                drop-shadow(0 0 25px rgba(59, 130, 246, 0.6))
                drop-shadow(0 0 35px rgba(59, 130, 246, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(59, 130, 246, 1)) 
                drop-shadow(0 0 30px rgba(59, 130, 246, 0.8))
                drop-shadow(0 0 40px rgba(59, 130, 246, 0.6));
    }
}

.product-card.featured .product-badge {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(96, 165, 250, 0.25));
    border: 1.5px solid rgba(59, 130, 246, 0.5);
    color: var(--bright-blue);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
    font-weight: 700;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.product-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--bright-blue);
    padding: 0.4rem 0.9rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    margin: 0.5rem auto 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bright-blue);
    margin-bottom: 1rem;
}

.product-icon svg,
.product-icon img {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.6)) drop-shadow(0 0 20px rgba(59, 130, 246, 0.4));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
}

.product-icon img[src="weapon icon.png"],
.product-icon img[src="Macro.png"],
.product-icon img[src="tweaking icon.png"],
.product-icon img[src="bundle.png"] {
    filter: 
        brightness(0) invert(1) 
        drop-shadow(0 0 10px rgba(59, 130, 246, 0.8)) 
        drop-shadow(0 0 20px rgba(59, 130, 246, 0.6));
}

.product-icon img[src="xbox icon.png"] {
    filter: 
        brightness(0) invert(1) 
        drop-shadow(0 0 10px rgba(34, 197, 94, 0.8)) 
        drop-shadow(0 0 20px rgba(34, 197, 94, 0.6));
}

.product-icon img[src="playstation.png"] {
    filter: 
        brightness(0) invert(1) 
        drop-shadow(0 0 10px rgba(30, 58, 138, 0.8)) 
        drop-shadow(0 0 20px rgba(30, 58, 138, 0.6));
}

.product-card:hover .product-icon svg,
.product-card:hover .product-icon img {
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.8)) drop-shadow(0 0 30px rgba(59, 130, 246, 0.5));
    transform: scale(1.1);
}

.product-card:hover .product-icon img[src="weapon icon.png"],
.product-card:hover .product-icon img[src="Macro.png"],
.product-card:hover .product-icon img[src="tweaking icon.png"],
.product-card:hover .product-icon img[src="bundle.png"] {
    filter: 
        brightness(0) invert(1) 
        drop-shadow(0 0 15px rgba(59, 130, 246, 1)) 
        drop-shadow(0 0 30px rgba(59, 130, 246, 0.8));
    transform: scale(1.1);
}

.product-card:hover .product-icon img[src="xbox icon.png"] {
    filter: 
        brightness(0) invert(1) 
        drop-shadow(0 0 15px rgba(34, 197, 94, 1)) 
        drop-shadow(0 0 30px rgba(34, 197, 94, 0.8));
    transform: scale(1.1);
}

.product-card:hover .product-icon img[src="playstation.png"] {
    filter: 
        brightness(0) invert(1) 
        drop-shadow(0 0 15px rgba(30, 58, 138, 1)) 
        drop-shadow(0 0 30px rgba(30, 58, 138, 0.8));
    transform: scale(1.1);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
    color: var(--pure-white);
}

.product-description {
    color: var(--pure-white);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.product-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.25rem;
    padding: 0;
}

.product-features li {
    padding: 0.4rem 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.85rem;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bright-blue);
    font-weight: 700;
    font-size: 1rem;
}

.product-card:hover .product-features li {
    color: var(--pure-white);
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pure-white);
    line-height: 1;
}

.product-pricing {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-grow: 1;
}

/* Monthly Pricing (Editing Macro) */
.pricing-monthly .price-main {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.pricing-monthly .product-price {
    font-size: 2.2rem;
    margin-bottom: 0;
}

.pricing-monthly .price-period {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-monthly .price-divider {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0.25rem 0;
}

.pricing-monthly .price-lifetime-option {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-top: 0.25rem;
}

.pricing-monthly .lifetime-price {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--pure-white);
}

.pricing-monthly .lifetime-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: lowercase;
    font-weight: 400;
}

/* Bundle Pricing (Ultimate Bundle) */
.pricing-bundle .bundle-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
}

.pricing-bundle .bundle-price {
    font-size: 3rem;
    margin-bottom: 0;
    color: var(--pure-white);
    font-weight: 800;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    animation: priceGlow 2.5s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
    }
}

.pricing-bundle .bundle-badge {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(96, 165, 250, 0.3));
    border: 1.5px solid rgba(59, 130, 246, 0.6);
    color: var(--bright-blue);
    padding: 0.5rem 1.25rem;
    border-radius: 14px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    backdrop-filter: blur(10px);
}

/* Simple Pricing (Tweaking Utility) */
.pricing-simple .simple-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    justify-content: center;
}

.pricing-simple .product-price {
    font-size: 2rem;
    margin-bottom: 0;
}

.pricing-simple .simple-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: lowercase;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.product-buttons {
    display: flex;
    gap: 0.75rem;
    width: 100%;
    margin-top: auto;
}

.product-buttons .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    text-align: center;
}

.product-buttons-single {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: auto;
}

.product-buttons-single .btn {
    flex: 1;
    max-width: 100%;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    text-align: center;
    font-weight: 600;
}

.price-alt {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
    text-transform: lowercase;
    letter-spacing: 0.3px;
}

.price-comparison {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.original-price {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    font-weight: 400;
}

.discount-badge {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 0.2rem 0.6rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
}

.products-view-all {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.products-view-all .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* About Section */
.about {
    background: rgba(25, 8, 45, 0.3);
    backdrop-filter: blur(10px);
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(30, 10, 50, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue), var(--bright-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--bright-blue);
    font-size: 1rem;
}

/* Contact Section */
.contact {
    background: rgba(40, 12, 70, 0.3);
    backdrop-filter: blur(10px);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--pure-white);
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(30, 10, 50, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(30, 10, 50, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, 
        rgba(15, 23, 42, 0.95) 0%, 
        rgba(30, 41, 59, 0.95) 50%,
        rgba(15, 23, 42, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(59, 130, 246, 0.3);
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section h4 {
    color: var(--pure-white);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--bright-blue);
    transform: translateX(4px);
}

.logo-small {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.3));
}

.footer-section .logo-container {
    margin-bottom: 1rem;
}

.footer-section .logo-text {
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Terms Pages Styling */
.terms-section {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.terms-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bright-blue);
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.terms-body {
    color: var(--text-light);
    line-height: 1.8;
}

.terms-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.terms-body h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bright-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.terms-body p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.terms-body ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style-type: disc;
}

.terms-body li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.terms-body strong {
    color: var(--bright-blue);
    font-weight: 600;
}

@media (max-width: 768px) {
    .terms-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .terms-title {
        font-size: 2rem;
    }

    .terms-body h2 {
        font-size: 1.25rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu-center {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(30px);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid rgba(59, 130, 246, 0.3);
        align-items: flex-start;
        transform: none;
        margin-left: 0;
        justify-content: flex-start;
        gap: 0.5rem;
    }

    .nav-menu-center.active {
        left: 0;
    }

    .nav-menu-center a {
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 10px;
        margin-bottom: 0.5rem;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        margin-left: 1rem;
        margin-top: 0.5rem;
        width: calc(100% - 2rem);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
}

