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

body {
    font-family: 'Rajdhani', 'Orbitron', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Particles Background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: radial-gradient(ellipse at bottom, #0d1117 0%, #000000 100%);
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Aurora Background Effect */
.aurora-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.aurora {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.25;
    filter: blur(100px);
    animation: aurora-movement 20s ease-in-out infinite;
    mix-blend-mode: screen;
}

.aurora-1 {
    background: radial-gradient(ellipse at 30% 40%, rgba(0, 255, 255, 0.4) 0%, transparent 50%);
    animation-delay: 0s;
}

.aurora-2 {
    background: radial-gradient(ellipse at 70% 60%, rgba(0, 200, 255, 0.3) 0%, transparent 50%);
    animation-delay: 7s;
}

.aurora-3 {
    background: radial-gradient(ellipse at 50% 80%, rgba(0, 150, 255, 0.25) 0%, transparent 50%);
    animation-delay: 14s;
}

@keyframes aurora-movement {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.25;
    }
    33% {
        transform: translate(10%, -5%) scale(1.1) rotate(5deg);
        opacity: 0.35;
    }
    66% {
        transform: translate(-10%, 5%) scale(0.9) rotate(-5deg);
        opacity: 0.2;
    }
}

/* Glassmorphism Navigation */
.glass-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1400px;
}

.nav-container {
    background: rgba(10, 15, 25, 0.7);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 20px;
    padding: 1rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.8),
        0 0 1px rgba(0, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container:hover {
    background: rgba(10, 15, 25, 0.8);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(0, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #00ffff 30%, #00d4ff 50%, #00ffff 70%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 25px rgba(0, 255, 255, 0.6)) 
            drop-shadow(0 0 50px rgba(0, 255, 255, 0.3));
    animation: shimmer 4s ease-in-out infinite, logoGlow 3s ease-in-out infinite alternate;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5)) 
                drop-shadow(0 0 40px rgba(0, 255, 255, 0.2));
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.8)) 
                drop-shadow(0 0 60px rgba(0, 255, 255, 0.4));
    }
}

.logo:hover {
    filter: drop-shadow(0 0 35px rgba(0, 255, 255, 0.9)) 
            drop-shadow(0 0 70px rgba(0, 255, 255, 0.5));
    transform: scale(1.03);
    letter-spacing: 6px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    font-family: 'Rajdhani', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.7rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-radius: 0;
}

.nav-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: none;
}

/* Línea animada debajo */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #00ffff;
    background: transparent;
}

.nav-link:hover::after {
    width: 70%;
}

.nav-link.active {
    color: #00ffff;
    background: transparent;
}

.nav-link.active::after {
    width: 80%;
    box-shadow: 0 0 15px rgba(0, 255, 255, 1);
}

/* Login Button */
.btn-login {
    font-family: 'Rajdhani', sans-serif;
    color: #000000;
    background: linear-gradient(135deg, #00ffff 0%, #00d4ff 100%);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.5px;
    box-shadow: 
        0 4px 20px rgba(0, 255, 255, 0.4),
        0 0 25px rgba(0, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-login .nav-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.btn-login:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #00ffff 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 35px rgba(0, 255, 255, 0.6),
        0 0 40px rgba(0, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

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

/* Download Button */
.btn-download {
    font-family: 'Rajdhani', sans-serif;
    color: #00ffff;
    background: transparent;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.5px;
    border: 2px solid rgba(0, 255, 255, 0.5);
    margin-left: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.15);
}

.btn-download .nav-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.btn-download:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: #00ffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.3);
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2.5px;
    background: linear-gradient(90deg, #00ffff, #00d4ff);
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.hamburger:hover span {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

/* Main Content */
main {
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-section h1 {
    font-family: 'Orbitron', monospace;
    font-size: 6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #00ffff 30%, #00d4ff 50%, #00ffff 70%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    filter: drop-shadow(0 0 60px rgba(0, 255, 255, 0.6));
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
    text-transform: uppercase;
    animation: shimmer 4s ease-in-out infinite, heroGlow 3s ease-in-out infinite alternate;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes heroGlow {
    0% {
        filter: drop-shadow(0 0 40px rgba(0, 255, 255, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 80px rgba(0, 255, 255, 0.8)) 
                drop-shadow(0 0 120px rgba(0, 255, 255, 0.4));
    }
}

.hero-section p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.hero-section p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

/* Scroll Down Arrow */
.scroll-arrow {
    position: absolute;
    bottom: calc(40px + env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    color: #00ffff;
    text-decoration: none;
    animation: scrollBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.6));
    transition: filter 0.3s ease;
}

.scroll-arrow svg:first-child {
    opacity: 0.4;
    margin-bottom: -22px;
}

.scroll-arrow svg:last-child {
    opacity: 0.8;
}

.scroll-arrow:hover {
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.9));
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(12px);
    }
}

@media (max-width: 768px) {
    .scroll-arrow {
        bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    }
    .scroll-arrow svg {
        width: 38px;
        height: 38px;
    }
    .scroll-arrow svg:first-child {
        margin-bottom: -14px;
    }
}

@media (max-width: 480px) {
    .scroll-arrow {
        bottom: calc(90px + env(safe-area-inset-bottom, 0px));
    }
    .scroll-arrow svg {
        width: 34px;
        height: 34px;
    }
    .scroll-arrow svg:first-child {
        margin-bottom: -12px;
    }
}

/* Features Section */
.features-section {
    position: relative;
    z-index: 2;
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.features-container {
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #00ffff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 40px rgba(0, 255, 255, 0.4));
}

.section-header p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 8rem;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

.feature-item:nth-child(2) { animation-delay: 0.1s; }
.feature-item:nth-child(3) { animation-delay: 0.2s; }
.feature-item:nth-child(4) { animation-delay: 0.3s; }
.feature-item:nth-child(5) { animation-delay: 0.4s; }
.feature-item:nth-child(6) { animation-delay: 0.5s; }
.feature-item:nth-child(7) { animation-delay: 0.6s; }

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

.feature-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.feature-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(10, 15, 25, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.feature-video:hover {
    transform: scale(1.02);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 
        0 15px 60px rgba(0, 0, 0, 0.7),
        0 0 50px rgba(0, 255, 255, 0.2);
}

.feature-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-video-contain img {
    object-fit: contain;
    background: #000;
}

.feature-video-empty {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-coming-soon {
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(0, 255, 255, 0.3);
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px dashed rgba(0, 255, 255, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
}

.feature-content {
    padding: 2rem;
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: #00ffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.6));
}

.feature-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-content p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

.feature-content p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

/* Pricing Section */
.pricing-section {
    position: relative;
    z-index: 2;
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-container {
    width: 100%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

/* Infografía de créditos / planes (pricing) */
.pricing-credits-visual {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(0, 255, 255, 0.12);
}

.pricing-planes-figure {
    margin: 2rem auto 0;
    max-width: 1100px;
}

.pricing-planes-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.pricing-planes-caption {
    margin-top: 1.25rem;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.55;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-planes-caption strong {
    color: rgba(0, 255, 255, 0.95);
    font-weight: 600;
}

/* Clic en la miniatura → lightbox */
.pricing-planes-trigger {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: zoom-in;
    border-radius: 16px;
    line-height: 0;
}

.pricing-planes-trigger:focus-visible {
    outline: 2px solid rgba(0, 255, 255, 0.85);
    outline-offset: 4px;
}

.pricing-planes-trigger .pricing-planes-img {
    pointer-events: none;
}

/* Lightbox infografía (ventana emergente a pantalla casi completa) */
.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(0.75rem, env(safe-area-inset-top)) max(0.75rem, env(safe-area-inset-right)) max(0.75rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
}

.image-lightbox.hidden {
    display: none;
}

.image-lightbox-scrim {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 14, 0.94);
    backdrop-filter: blur(10px);
    cursor: zoom-out;
}

.image-lightbox-close {
    position: absolute;
    top: max(0.75rem, env(safe-area-inset-top));
    right: max(0.75rem, env(safe-area-inset-right));
    z-index: 2;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 255, 255, 0.35);
    border-radius: 12px;
    background: rgba(10, 15, 25, 0.85);
    color: #00ffff;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.image-lightbox-close:hover {
    background: rgba(0, 255, 255, 0.12);
    border-color: rgba(0, 255, 255, 0.55);
}

.image-lightbox-frame {
    position: relative;
    z-index: 1;
    max-width: min(96vw, 1500px);
    max-height: min(92vh, 1200px);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-lightbox-img {
    max-width: 100%;
    max-height: min(92vh, 1200px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.25);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(0, 255, 255, 0.08);
}

.pricing-card {
    background: rgba(10, 15, 25, 0.7);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-features {
    flex: 1;
    margin-bottom: 1.5rem;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.2);
}

.pricing-card.featured {
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 255, 0.4);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00ffff, #00d4ff);
    color: #000;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.5);
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.plan-header h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.8rem;
}

.currency {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 0.2rem;
}

.amount {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.period {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 0.4rem;
}

.plan-description {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.8rem;
}

.billing-toggle {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    margin-top: 1rem;
}

.billing-btn {
    font-family: 'Rajdhani', sans-serif;
    background: rgba(0, 0, 0, 0.3);
    border: 1.5px solid rgba(0, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.45);
    padding: 0.55rem 1.2rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.5px;
}

.billing-btn:hover {
    background: rgba(0, 255, 255, 0.08);
    border-color: rgba(0, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
}

.billing-btn.active {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(0, 200, 255, 0.15));
    border-color: #00ffff;
    color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}

.save-badge {
    background: rgba(0, 255, 100, 0.25);
    color: #00ff88;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    border: 1px solid rgba(0, 255, 100, 0.3);
    letter-spacing: 0.3px;
}

.plan-features {
    margin-bottom: 1.5rem;
}
    display: block;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: #00ffff;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.plan-link:hover {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.feature-item-price {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.feature-item-price svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    stroke: #00ffff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-item-price.disabled {
    color: rgba(255, 255, 255, 0.3);
}

.feature-item-price.disabled svg {
    stroke: rgba(255, 255, 255, 0.3);
}

.plan-button {
    display: block;
    width: 100%;
    padding: 0.9rem;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    color: #00ffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.plan-button:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    transform: translateY(-2px);
}

.plan-button.featured {
    background: linear-gradient(135deg, #00ffff, #00d4ff);
    border: none;
    color: #000;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.plan-button.featured:hover {
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1rem 2rem;
    }
    
    .nav-menu {
        gap: 0.3rem;
    }
    
    .nav-link {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .btn-login {
        padding: 0.7rem 1.5rem;
        margin-left: 0.5rem;
    }

    .hero-section h1 {
        font-size: 4.5rem;
    }

    .hero-section p {
        font-size: 1.4rem;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .feature-item {
        gap: 3rem;
        margin-bottom: 6rem;
    }

    .feature-content h3 {
        font-size: 1.8rem;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .feature-icon svg {
        width: 26px;
        height: 26px;
    }

    .feature-content p {
        font-size: 1rem;
    }

    .pricing-section {
        padding: 6rem 2rem;
    }

    .pricing-grid {
        gap: 2rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1.03);
    }

    .plan-header h3 {
        font-size: 1.6rem;
    }

    .amount {
        font-size: 3.5rem;
    }
}

@media (max-width: 820px) {
    .glass-nav {
        top: 20px;
        width: 95%;
    }

    .nav-container {
        padding: 0.9rem 1.5rem;
    }

    .logo {
        font-size: 1.3rem;
        letter-spacing: 3px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: rgba(5, 10, 20, 0.98);
        backdrop-filter: blur(30px);
        border-left: 1px solid rgba(0, 255, 255, 0.2);
        padding: 6rem 1.5rem 2rem;
        gap: 0.5rem;
        display: flex;
        align-items: flex-start;
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.9);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu li {
        width: 100%;
        display: flex;
        align-items: flex-start;
    }

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

    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }

    .nav-menu.active::before {
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        width: 100%;
        text-align: left;
        padding: 1.1rem 1.2rem;
        font-size: 1rem;
        border-radius: 0;
        background: transparent;
    }

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

    .nav-link .nav-icon {
        width: 20px;
        height: 20px;
        display: block;
    }

    .nav-link:hover,
    .nav-link.active {
        background: transparent;
    }

    .nav-link:hover .nav-icon,
    .nav-link.active .nav-icon {
        filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.8));
    }

    .btn-login {
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-top: 1.5rem;
        padding: 1rem 1.2rem;
        justify-content: center;
    }

    .btn-login .nav-icon {
        display: block;
    }

    .btn-download {
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-top: 0.5rem;
        padding: 1rem 1.2rem;
        justify-content: center;
    }

    .btn-download .nav-icon {
        display: block;
    }

    .hero-section h1 {
        font-size: 3.5rem;
    }

    .hero-section p {
        font-size: 1.3rem;
    }

    .features-section {
        padding: 5rem 1.5rem;
    }

    .section-header {
        margin-bottom: 4rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .feature-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 5rem;
    }

    .feature-item.reverse {
        grid-template-columns: 1fr;
    }

    .feature-item.reverse .feature-video {
        order: 1;
    }

    .feature-item.reverse .feature-content {
        order: 2;
    }

    .feature-content {
        padding: 1rem;
    }

    .feature-header {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .feature-icon svg {
        width: 26px;
        height: 26px;
    }

    .feature-content h3 {
        font-size: 1.6rem;
    }

    .feature-content p {
        font-size: 1rem;
    }

    .pricing-section {
        padding: 5rem 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .pricing-credits-visual {
        margin-top: 3rem;
        padding-top: 2.5rem;
    }

    .pricing-planes-caption {
        font-size: 0.88rem;
    }

    .plan-header h3 {
        font-size: 1.5rem;
    }

    .amount {
        font-size: 3rem;
    }

    .billing-toggle {
        flex-direction: column;
    }

    .billing-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .glass-nav {
        top: 20px;
        width: 95%;
    }

    .nav-container {
        padding: 0.8rem 1.2rem;
        position: relative;
    }

    .logo {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }

    .hamburger {
        display: flex;
    }

    /* Panel lateral derecho */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: rgba(5, 10, 20, 0.98);
        backdrop-filter: blur(30px);
        border-left: 1px solid rgba(0, 255, 255, 0.2);
        padding: 6rem 1.5rem 2rem;
        gap: 0.5rem;
        display: flex;
        align-items: flex-start;
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.9);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu li {
        width: 100%;
        display: flex;
        align-items: flex-start;
    }

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

    /* Overlay oscuro */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }

    .nav-menu.active::before {
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        width: 100%;
        text-align: left;
        padding: 1.1rem 1.2rem;
        font-size: 1rem;
        border-radius: 0;
        background: transparent;
    }

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

    .nav-link .nav-icon {
        width: 20px;
        height: 20px;
        display: block;
    }

    .nav-link:hover,
    .nav-link.active {
        background: transparent;
    }

    .nav-link:hover .nav-icon,
    .nav-link.active .nav-icon {
        filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.8));
    }

    .btn-login {
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-top: 1.5rem;
        padding: 1rem 1.2rem;
        justify-content: center;
    }

    .btn-login .nav-icon {
        display: block;
    }

    .btn-download {
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-top: 0.5rem;
        padding: 1rem 1.2rem;
        justify-content: center;
    }

    .btn-download .nav-icon {
        display: block;
    }

    .hero-section h1 {
        font-size: 3rem;
    }

    .hero-section p {
        font-size: 1.2rem;
    }

    .features-section {
        padding: 4rem 1rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .feature-item {
        margin-bottom: 4rem;
        gap: 1.5rem;
    }

    .feature-header {
        gap: 0.7rem;
        margin-bottom: 1rem;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .feature-content h3 {
        font-size: 1.4rem;
    }

    .feature-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .pricing-section {
        padding: 4rem 1rem;
    }

    .pricing-grid {
        margin-top: 3rem;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .plan-header h3 {
        font-size: 1.3rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .currency {
        font-size: 1.5rem;
    }

    .period {
        font-size: 0.9rem;
    }

    .feature-item-price {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }

    .feature-item-price svg {
        width: 18px;
        height: 18px;
        min-width: 18px;
    }

    .plan-button {
        padding: 0.9rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .glass-nav {
        top: 15px;
        width: 96%;
    }

    .nav-container {
        padding: 0.7rem 1rem;
    }

    .logo {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .nav-menu {
        width: 260px;
        padding: 5rem 1.2rem 2rem;
    }

    .nav-menu li {
        width: 100%;
    }

    .hero-section h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-section p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .features-section {
        padding: 3rem 0.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .feature-item {
        margin-bottom: 3rem;
    }

    .feature-header {
        gap: 0.6rem;
        margin-bottom: 0.8rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .feature-content h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .feature-content p {
        font-size: 0.9rem;
    }

    .pricing-section {
        padding: 3rem 0.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .popular-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .plan-header h3 {
        font-size: 1.2rem;
    }

    .amount {
        font-size: 2.2rem;
    }

    .plan-description {
        font-size: 0.9rem;
    }

    .feature-item-price {
        font-size: 0.85rem;
    }
}


/* Download Section */
.download-section {
    position: relative;
    z-index: 2;
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.download-container {
    width: 100%;
}

/* Version Badge */
.dl-version-row {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.dl-version-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 255, 255, 0.06);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

.dl-version-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
    animation: dl-pulse 2s ease-in-out infinite;
}

@keyframes dl-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(0, 255, 136, 0.6); }
    50% { opacity: 0.5; box-shadow: 0 0 4px rgba(0, 255, 136, 0.3); }
}

.dl-version-divider {
    color: rgba(255, 255, 255, 0.2);
}

/* Platform Cards Grid */
.dl-platforms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Platform Card */
.dl-platform-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dl-card-bg {
    position: absolute;
    inset: 0;
    background: rgba(8, 12, 22, 0.85);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.4s ease;
    z-index: 0;
}

.dl-platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.dl-platform-card:hover::before {
    opacity: 1;
}

.dl-platform-card:hover {
    transform: translateY(-6px);
}

.dl-platform-card:hover .dl-card-bg {
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(0, 255, 255, 0.08);
}

.dl-card-content {
    position: relative;
    z-index: 1;
    padding: 2.5rem 2rem 2rem;
}

/* Card Top - Icon + Name */
.dl-card-top {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.dl-os-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.dl-platform-card:hover .dl-os-icon {
    border-color: rgba(0, 255, 255, 0.35);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.dl-os-icon svg {
    width: 28px;
    height: 28px;
}

.dl-os-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.5px;
    margin: 0;
    line-height: 1.2;
}

.dl-os-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    color: rgba(0, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Card Description */
.dl-card-desc {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.8rem;
    letter-spacing: 0.3px;
}

.dl-android-aviso {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(0, 255, 255, 0.75);
    margin: -1rem 0 1.2rem;
    letter-spacing: 0.3px;
}

.dl-android-aviso strong {
    color: #00ffff;
    font-weight: 700;
}

.dl-drive-aviso {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.88rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 1.5rem;
    letter-spacing: 0.2px;
}

.dl-drive-aviso strong {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

/* Download Buttons */
.dl-btn-group {
    display: flex;
    gap: 0.7rem;
    margin-bottom: 2rem;
}

.dl-btn-main {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, #00ffff 0%, #00c8ff 100%);
    border-radius: 12px;
    color: #000;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.dl-btn-main::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
    transition: transform 0.6s ease;
    transform: translateX(-100%);
}

.dl-btn-main:hover::after {
    transform: translateX(100%);
}

.dl-btn-main svg {
    width: 18px;
    height: 18px;
    stroke: #000;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dl-btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.45);
}

.dl-btn-full {
    width: 100%;
    justify-content: center;
}

.dl-compat-tag {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.55);
    background: rgba(0, 0, 0, 0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: none;
}
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(0, 255, 255, 0.25);
    border-radius: 12px;
    color: rgba(0, 255, 255, 0.8);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.dl-btn-alt svg {
    width: 16px;
    height: 16px;
    stroke: rgba(0, 255, 255, 0.7);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dl-btn-alt:hover {
    background: rgba(0, 255, 255, 0.08);
    border-color: rgba(0, 255, 255, 0.45);
    color: #00ffff;
    transform: translateY(-2px);
}

/* Requirements */
.dl-requirements {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.dl-req-title {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.dl-req-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.dl-req {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.dl-req:hover {
    background: rgba(0, 255, 255, 0.03);
    border-color: rgba(0, 255, 255, 0.1);
}

.dl-req svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    stroke: rgba(0, 255, 255, 0.4);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.dl-req div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.dl-req strong {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dl-req span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 820px) {
    .dl-platforms {
        grid-template-columns: 1fr;
        max-width: 480px;
        gap: 1.5rem;
    }

    .download-section {
        padding: 5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .download-section {
        padding: 3rem 0.8rem;
    }

    .dl-card-content {
        padding: 2rem 1.5rem 1.5rem;
    }

    .dl-os-icon {
        width: 48px;
        height: 48px;
    }

    .dl-os-icon svg {
        width: 24px;
        height: 24px;
    }

    .dl-os-info h3 {
        font-size: 1.3rem;
    }

    .dl-btn-group {
        flex-direction: column;
    }

    .dl-req-grid {
        grid-template-columns: 1fr;
    }

    .dl-version-pill {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
}

/* Coming Soon Cards */
.dl-coming-soon-row {
    max-width: 1000px;
    margin: 3rem auto 0;
}

.dl-coming-soon-label {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 1.2rem;
}

.dl-coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.dl-coming-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: rgba(8, 12, 22, 0.5);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dl-coming-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dl-coming-card:hover::before {
    opacity: 1;
}

.dl-coming-card:hover {
    border-color: rgba(0, 255, 255, 0.12);
}

.dl-coming-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    flex-shrink: 0;
    opacity: 0.5;
}

.dl-coming-icon svg {
    width: 32px;
    height: 32px;
}

.dl-tux-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(85%) sepia(60%) saturate(400%) hue-rotate(140deg) brightness(1.1);
    opacity: 0.55;
}

.dl-coming-info {
    flex: 1;
}

.dl-coming-info h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    letter-spacing: 1px;
}

.dl-coming-info span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.2);
}

.dl-coming-badge {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(0, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 20px;
    flex-shrink: 0;
}

@media (max-width: 820px) {
    .dl-coming-soon-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .dl-coming-soon-row {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .dl-coming-card {
        padding: 1rem 1.2rem;
    }

    .dl-coming-icon {
        width: 36px;
        height: 36px;
    }

    .dl-coming-icon svg {
        width: 18px;
        height: 18px;
    }

    .dl-coming-info h4 {
        font-size: 0.9rem;
    }
}

/* Pricing FAQ Section */
.pricing-faq-section {
    position: relative;
    z-index: 2;
    padding: 6rem 2rem 8rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-faq-container {
    width: 100%;
}

.faq-credits-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(0, 255, 255, 0.04);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 18px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.faq-credits-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.faq-credits-icon svg {
    width: 24px;
    height: 24px;
}

.faq-credits-text h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    color: #00ffff;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.faq-credits-text p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.faq-credits-text strong {
    color: #ffffff;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    align-items: start;
}

.faq-item-card {
    background: rgba(10, 15, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 0;
    transition: border-color 0.3s ease;
    overflow: hidden;
}

.faq-item-card:hover {
    border-color: rgba(0, 255, 255, 0.15);
}

.faq-item-card.open {
    border-color: rgba(0, 255, 255, 0.2);
    background: rgba(0, 255, 255, 0.03);
}

.faq-q {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    padding: 1.2rem 1.5rem;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-q:hover {
    color: #00ffff;
}

.faq-q svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    flex-shrink: 0;
}

.faq-toggle {
    margin-left: auto;
    width: 24px;
    height: 24px;
    min-width: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    stroke: #00ffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.faq-item-card.open .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0;
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-item-card.open .faq-answer {
    padding: 0 1.5rem 1.5rem;
}

@media (max-width: 768px) {
    .pricing-faq-section {
        padding: 4rem 1rem 5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-credits-box {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Documentation Page Styles */
.documentation-section {
    position: relative;
    z-index: 2;
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.doc-container {
    width: 100%;
}

.doc-header {
    text-align: center;
    margin-bottom: 4rem;
}

.doc-header h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #00ffff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.doc-header p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

.plan-detail-card {
    background: rgba(10, 15, 25, 0.7);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    position: relative;
    transition: all 0.3s ease;
}

.plan-detail-card.collapsed {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
}

.plan-detail-card.featured {
    border: 2px solid rgba(0, 255, 255, 0.4);
    background: rgba(0, 255, 255, 0.05);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.15);
}

.popular-badge-detail {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00ffff, #00d4ff);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.plan-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 255, 255, 0.2);
}

.collapsible-header {
    cursor: pointer;
    user-select: none;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.collapse-toggle {
    background: none;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.collapse-toggle:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.6);
    transform: scale(1.1);
}

.collapse-icon {
    width: 24px;
    height: 24px;
    stroke: #00ffff;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.collapsible.collapsed .collapse-icon {
    transform: rotate(-90deg);
}

.collapsible-content {
    max-height: 5000px;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.3s ease;
    opacity: 1;
}

.collapsible.collapsed .collapsible-content {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
}

.collapsible.collapsed .plan-detail-header {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.collapsible.collapsed .plan-cta {
    display: block;
    margin-top: 0;
    padding-top: 1rem;
    border-top: none;
}

.plan-detail-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #00ffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.plan-price-tag {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-large {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.price-period {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

.plan-detail-content {
    display: block;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(0, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.detail-text {
    max-width: 100%;
}

.detail-text h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
}

.detail-text h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    color: #ffffff;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

.detail-text p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-list svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    stroke: #00ffff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-top: 0.2rem;
}

.feature-list strong {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    display: block;
    margin-bottom: 0.3rem;
}

.feature-list p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.limitation-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.limitation-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
}

.limitation-list svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.payment-option {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
}

.payment-option.highlighted {
    border-color: rgba(0, 255, 255, 0.4);
    background: rgba(0, 255, 255, 0.1);
}

.save-tag {
    position: absolute;
    top: -10px;
    right: 10px;
    background: rgba(0, 255, 100, 0.3);
    color: #00ff88;
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.payment-option h5 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.payment-price {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: #00ffff;
    margin-bottom: 0.5rem;
}

.payment-option p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.lifetime-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.benefit-card {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 255, 0.3);
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    stroke: #00ffff;
    fill: none;
}

.benefit-card h5 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.plan-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    color: #00ffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cta-button.featured {
    background: linear-gradient(135deg, #00ffff, #00d4ff);
    border: none;
    color: #000;
}

.cta-button.featured:hover {
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.6);
}

.comparison-section {
    margin: 4rem 0;
}

.comparison-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #00ffff;
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(10, 15, 25, 0.7);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 15px;
    overflow: hidden;
}

.comparison-table th {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #00ffff;
    padding: 1.5rem 1rem;
    text-align: center;
    background: rgba(0, 255, 255, 0.1);
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 1.2rem 1rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    text-align: center;
}

.comparison-table td:first-child {
    text-align: left;
}

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

.comparison-table tr:hover {
    background: rgba(0, 255, 255, 0.05);
}

/* Visual Comparison Bars */
.visual-comparison {
    margin: 4rem 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.visual-comparison-item {
    background: rgba(10, 15, 25, 0.7);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
}

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

.visual-header h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: #00ffff;
    margin-bottom: 0.5rem;
}

.visual-header p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.plan-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.plan-bar-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    gap: 1.5rem;
}

.plan-bar-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: right;
}

.plan-bar-container {
    position: relative;
    height: 40px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.15);
    overflow: hidden;
}

.plan-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease;
}

.plan-bar-fill.plan-free {
    background: linear-gradient(90deg, rgba(255, 50, 50, 0.4), rgba(255, 50, 50, 0.7));
    box-shadow: 0 0 20px rgba(255, 50, 50, 0.4);
}

.plan-bar-fill.plan-premium {
    background: linear-gradient(90deg, rgba(255, 200, 0, 0.4), rgba(255, 200, 0, 0.7));
    box-shadow: 0 0 20px rgba(255, 200, 0, 0.4);
}

.plan-bar-fill.plan-lifetime {
    background: linear-gradient(90deg, rgba(0, 255, 100, 0.4), rgba(0, 255, 100, 0.7));
    box-shadow: 0 0 20px rgba(0, 255, 100, 0.4);
}

.plan-bar-fill.featured {
    background: linear-gradient(90deg, rgba(0, 255, 255, 0.6), rgba(0, 255, 255, 0.9));
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
}

.plan-bar-fill.disabled {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.plan-bar-value {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.table-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}

.table-icon.icon-yes {
    stroke: #00ff88;
}

.table-icon.icon-no {
    stroke: #ff4444;
}

.faq-section {
    margin: 4rem 0;
}

.faq-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #00ffff;
    text-align: center;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
}

.faq-item {
    background: rgba(10, 15, 25, 0.7);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 15px;
    padding: 2rem;
}

.faq-item h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.faq-item p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.back-section {
    text-align: center;
    margin-top: 4rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    color: #00ffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-button svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.back-button:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.5);
    transform: translateX(-5px);
}

/* Responsive Documentation */
@media (max-width: 1024px) {
    .plan-detail-content {
        padding: 1.5rem;
    }

    .lifetime-benefits {
        grid-template-columns: 1fr;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

    .header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .collapsible.collapsed .header-left {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }

    .plan-detail-header h2 {
        font-size: 2rem;
    }

    .collapse-toggle {
        width: 45px;
        height: 45px;
    }

    .plan-detail-card.collapsed {
        margin-bottom: 1rem;
        padding: 1.2rem;
    }
}

@media (max-width: 768px) {
    .documentation-section {
        padding: 6rem 1rem 2rem;
    }

    .doc-header h1 {
        font-size: 2.5rem;
    }

    .plan-detail-card {
        padding: 2rem 1.5rem;
    }

    .plan-detail-card.collapsed {
        padding: 1rem;
    }

    .plan-detail-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .collapsible.collapsed .plan-detail-header {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }

    .collapsible.collapsed .header-left {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .collapsible.collapsed .plan-detail-header h2 {
        font-size: 1.3rem;
        margin: 0;
    }

    .collapsible.collapsed .price-large {
        font-size: 1.8rem;
    }

    .collapsible.collapsed .price-period {
        font-size: 0.9rem;
    }

    .collapsible.collapsed .collapse-toggle {
        width: 40px;
        height: 40px;
        margin-left: auto;
    }

    .collapsible.collapsed .collapse-icon {
        width: 20px;
        height: 20px;
    }

    .plan-detail-header h2 {
        font-size: 2rem;
    }

    .price-large {
        font-size: 2.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
    }

    .visual-comparison-item {
        padding: 1.5rem;
    }

    .visual-header h3 {
        font-size: 1.4rem;
    }

    .plan-bar-item {
        grid-template-columns: 100px 1fr;
        gap: 1rem;
    }

    .plan-bar-label {
        font-size: 0.95rem;
    }

    .plan-bar-container {
        height: 35px;
    }
}


/* Single Plan Documentation Styles */
.single-plan-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.single-plan-header h1 {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: #00ffff;
    margin-bottom: 1.5rem;
}

.plan-price-hero {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.plan-price-hero .currency {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 0.5rem;
}

.plan-price-hero .amount {
    font-family: 'Orbitron', monospace;
    font-size: 5rem;
    font-weight: 900;
    color: #ffffff;
}

.plan-price-hero .period {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 0.5rem;
}

.plan-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
}

.plan-hero-image {
    margin-bottom: 4rem;
    text-align: center;
}

.plan-hero-image img {
    width: 100%;
    max-width: 900px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
}

.content-section p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.simple-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.simple-list li {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
}

.simple-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #00ffff;
    font-size: 1.2rem;
}

.feature-detail {
    display: grid;
    grid-template-columns: 80px 1fr 400px;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(10, 15, 25, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    align-items: start;
}

.feature-detail-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.feature-detail-icon svg {
    width: 35px;
    height: 35px;
    stroke: #00ffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-detail-content h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-detail-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.feature-detail-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.feature-detail-content ul li {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.feature-detail-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00ffff;
}

.feature-image {
    margin: 0;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.limitations-section {
    background: rgba(255, 100, 100, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 100, 100, 0.2);
}

.limitation-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: rgba(10, 15, 25, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255, 100, 100, 0.2);
}

.limitation-card svg {
    width: 30px;
    height: 30px;
    min-width: 30px;
    stroke: rgba(255, 100, 100, 0.8);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.limitation-card h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.limitation-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.upgrade-section {
    background: rgba(0, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

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

.upgrade-card {
    background: rgba(10, 15, 25, 0.7);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.upgrade-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.2);
}

.upgrade-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
}

.upgrade-price {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.upgrade-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.upgrade-card ul li {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.upgrade-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ffff;
}

.upgrade-link {
    display: inline-block;
    color: #00ffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.upgrade-link:hover {
    color: #00d4ff;
    transform: translateX(5px);
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 200, 255, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    margin: 4rem 0;
}

.cta-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #00ffff, #00d4ff);
    border-radius: 12px;
    color: #000;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.6);
}

.plan-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    color: #00ffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.5);
    transform: translateX(-5px);
}

.nav-btn:last-child:hover {
    transform: translateX(5px);
}

/* Responsive Single Plan */
@media (max-width: 1024px) {
    .feature-detail {
        grid-template-columns: 60px 1fr 300px;
        gap: 1.5rem;
    }

    .feature-detail-icon {
        width: 55px;
        height: 55px;
    }

    .feature-detail-icon svg {
        width: 28px;
        height: 28px;
    }

    .upgrade-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .single-plan-header h1 {
        font-size: 2.5rem;
    }

    .plan-price-hero .amount {
        font-size: 3.5rem;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .feature-detail {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .feature-detail-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
    }

    .feature-image {
        margin-top: 1.5rem;
    }

    .plan-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-btn {
        justify-content: center;
    }
}

/* Footer */
.site-footer {
    position: relative;
    z-index: 10;
    background: linear-gradient(180deg, rgba(5, 10, 20, 0.95) 0%, rgba(2, 5, 12, 1) 100%);
    border-top: 1px solid rgba(0, 255, 255, 0.15);
    padding: 4rem 2rem 0;
    font-family: 'Rajdhani', sans-serif;
    color: rgba(255, 255, 255, 0.6);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .footer-logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    font-weight: 800;
    color: #00ffff;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-2px);
}

.footer-socials a svg {
    width: 18px;
    height: 18px;
    stroke: #00ffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-column h4 {
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #00ffff;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom span {
    color: #00ffff;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #00ffff;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

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

/* Promo pricing */
.promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff4d4d, #ff6b35);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.price-old {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: line-through;
    margin-right: 0.5rem;
    align-self: center;
}

/* Creator Section */
.creator-section {
    position: relative;
    z-index: 2;
    padding: 6rem 2rem;
}

.creator-container {
    max-width: 1100px;
    margin: 0 auto;
}

.creator-profile {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: rgba(10, 15, 25, 0.7);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.12);
    backdrop-filter: blur(20px);
}

.creator-image {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.15);
}

.creator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.creator-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.creator-role {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #00ffff;
    margin-bottom: 1rem;
}

.creator-info p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
}

.creator-projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.creator-project-card {
    background: rgba(10, 15, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.creator-project-card:hover {
    border-color: rgba(0, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

.creator-project-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1.2rem;
}

.creator-project-icon svg {
    width: 26px;
    height: 26px;
    stroke: #00ffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.creator-project-card h4 {
    font-family: 'Orbitron', monospace;
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.creator-project-card p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.creator-quote {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(0, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.creator-quote blockquote {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto 1rem;
}

.quote-author {
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    color: #00ffff;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .creator-profile {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .creator-image {
        width: 140px;
        height: 140px;
    }

    .creator-info h3 {
        font-size: 1.5rem;
    }

    .creator-info p {
        text-align: center;
        padding: 0 0.5rem;
        font-size: 1rem;
    }

    .creator-projects {
        grid-template-columns: 1fr;
    }
}

.creator-link {
    color: #00ffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.creator-link:hover {
    color: #00d4ff;
    text-decoration: underline;
}

.creator-values {
    margin-top: 4rem;
}

.creator-values h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #00ffff;
    text-align: center;
    margin-bottom: 2rem;
}

/* Login Section */
.login-section {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
}

.login-card {
    width: 100%;
    max-width: 440px;
    background: rgba(10, 15, 25, 0.85);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(0, 255, 255, 0.12);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 255, 255, 0.05);
}

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

.login-logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 800;
    color: #00ffff;
    letter-spacing: 4px;
    margin-bottom: 1.2rem;
}

.login-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.login-header p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.45);
}

.login-social {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.google-btn:hover {
    border-color: rgba(66, 133, 244, 0.5);
    background: rgba(66, 133, 244, 0.08);
}

.github-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.discord-btn:hover {
    border-color: rgba(88, 101, 242, 0.5);
    background: rgba(88, 101, 242, 0.08);
}

.login-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.login-divider span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.35);
    padding: 0 1rem;
    white-space: nowrap;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group label {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.4rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper svg {
    position: absolute;
    left: 1rem;
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.3);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

.input-wrapper input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.8rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.input-wrapper input:focus {
    border-color: rgba(0, 255, 255, 0.4);
    background: rgba(0, 255, 255, 0.03);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.08);
}

.toggle-password {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
}

.toggle-password svg {
    position: static;
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.35);
    pointer-events: auto;
    transition: stroke 0.3s ease;
}

.toggle-password:hover svg {
    stroke: #00ffff;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #00ffff;
    cursor: pointer;
}

.forgot-password {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: #00ffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #00d4ff;
    text-decoration: underline;
}

.login-submit {
    width: 100%;
    padding: 1rem;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #00ffff, #00d4ff);
    border: none;
    border-radius: 12px;
    color: #000;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.3);
}

.login-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.login-footer-text {
    text-align: center;
    margin-top: 1.5rem;
}

.login-footer-text p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.45);
}

.signup-link {
    color: #00ffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.signup-link:hover {
    color: #00d4ff;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .login-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .login-header h2 {
        font-size: 1.3rem;
    }
}

.login-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.15);
}

/* Dashboard Layout */
.dash-layout {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 100vh;
}

.dash-sidebar {
    width: 260px;
    height: 100vh;
    height: 100dvh;
    background: rgba(5, 10, 20, 0.95);
    border-right: 1px solid rgba(0, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    overflow-y: auto;
}

.dash-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem;
    margin-bottom: 2rem;
}

.dash-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid rgba(0, 255, 255, 0.3);
}

.dash-sidebar-logo span {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: #00ffff;
    letter-spacing: 2px;
}

.dash-nav {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.dash-nav-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    width: 100%;
    text-align: left;
}

.dash-nav-item svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.dash-nav-item:hover {
    background: rgba(0, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
}

.dash-nav-item.active {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
}

.dash-sidebar-bottom {
    margin-top: auto;
    flex-shrink: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
}

/* Topbar mobile */
.dash-topbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: rgba(5, 10, 20, 0.95);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(20px);
}

.dash-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.3rem;
}

.dash-menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: #00ffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}

.dash-topbar-title {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    color: #ffffff;
    letter-spacing: 2px;
}

.dash-avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid rgba(0, 255, 255, 0.3);
}

/* Main content */
.dash-main {
    flex: 1;
    margin-left: 260px;
    padding: 2.5rem;
    min-height: 100vh;
}

.dash-section {
    display: none;
}

.dash-section.active {
    display: block;
}

.dash-header h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.dash-header p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 2rem;
}

/* Cards */
.dash-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.dash-card {
    background: rgba(10, 15, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.dash-card:hover {
    border-color: rgba(0, 255, 255, 0.15);
    transform: translateY(-2px);
}

.dash-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dash-card-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.plan-icon { background: rgba(0, 255, 255, 0.1); }
.plan-icon svg { stroke: #00ffff; }
.credits-icon { background: rgba(250, 204, 21, 0.1); }
.credits-icon svg { stroke: #facc15; }
.usage-icon { background: rgba(52, 211, 153, 0.1); }
.usage-icon svg { stroke: #34d399; }
.renew-icon { background: rgba(167, 139, 250, 0.1); }
.renew-icon svg { stroke: #a78bfa; }

.dash-card-label {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.2rem;
}

.dash-card-value {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

/* Progress bar */
.dash-usage-box {
    background: rgba(10, 15, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.dash-usage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.dash-usage-header h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.dash-usage-percent {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: #00ffff;
}

.dash-progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.dash-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ffff, #00d4ff);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.dash-usage-details {
    display: flex;
    justify-content: space-between;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Activity */
.dash-activity {
    background: rgba(10, 15, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
}

.dash-activity h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.dash-activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.dash-activity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ffff;
    flex-shrink: 0;
}

.dash-activity-info span {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
}

.dash-activity-info small {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

/* Profile */
.dash-profile-card {
    background: rgba(10, 15, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem;
}

.dash-profile-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.dash-profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    border: 3px solid rgba(0, 255, 255, 0.3);
}

.dash-avatar-edit {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #00ffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash-avatar-edit svg {
    width: 14px;
    height: 14px;
    stroke: #000;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dash-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

/* Plan section */
.dash-plan-current {
    background: rgba(10, 15, 25, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.dash-plan-badge {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dash-plan-current h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.dash-plan-current p {
    font-family: 'Rajdhani', sans-serif;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
}

.dash-plan-comparison h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.dash-plan-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.dash-plan-option {
    background: rgba(10, 15, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.dash-plan-option.featured {
    border-color: rgba(0, 255, 255, 0.2);
}

.dash-plan-option:hover {
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-3px);
}

.dash-plan-option h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    color: #00ffff;
    margin-bottom: 0.8rem;
}

.dash-plan-price {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.dash-plan-price small {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.dash-plan-option p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Usage breakdown */
.dash-usage-breakdown {
    background: rgba(10, 15, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
}

.dash-usage-breakdown h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.dash-breakdown-item {
    display: grid;
    grid-template-columns: 140px 1fr 90px;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 0;
}

.dash-breakdown-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.dash-mini-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    overflow: hidden;
}

.dash-mini-fill {
    height: 100%;
    border-radius: 6px;
}

.dash-breakdown-val {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
}

/* Settings */
.dash-settings-group {
    background: rgba(10, 15, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
}

.dash-settings-group h3 {
    font-family: 'Rajdhani', sans-serif;
}

.dash-setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.dash-setting-info h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.dash-setting-info p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* Toggle switch */
.dash-toggle {
    position: relative;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.dash-toggle input { opacity: 0; width: 0; height: 0; }

.dash-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 26px;
    transition: 0.3s;
}

.dash-toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #ffffff;
    border-radius: 50%;
    transition: 0.3s;
}

.dash-toggle input:checked + .dash-toggle-slider {
    background: #00ffff;
}

.dash-toggle input:checked + .dash-toggle-slider::before {
    transform: translateX(22px);
    background: #000;
}

.dash-danger-btn {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 100, 100, 0.4);
    border-radius: 10px;
    color: #ff6b6b;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dash-danger-btn:hover {
    background: rgba(255, 100, 100, 0.1);
}

/* Dashboard responsive */
@media (max-width: 1024px) {
    .dash-cards { grid-template-columns: repeat(2, 1fr); }
    .dash-plan-options { grid-template-columns: 1fr; }
    .dash-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .dash-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .dash-sidebar.open {
        transform: translateX(0);
    }

    .dash-topbar {
        display: flex;
    }

    .dash-main {
        margin-left: 0;
        padding: 5rem 1.2rem 2rem;
    }

    .dash-cards { grid-template-columns: 1fr; }

    .dash-header h1 { font-size: 1.5rem; }

    .dash-breakdown-item {
        grid-template-columns: 100px 1fr 70px;
    }
}

/* Dashboard Overlay (mobile) */
.dash-overlay {
    display: none;
}

/* Quick Actions */
.dash-quick-actions {
    margin-top: 2rem;
}

.dash-quick-actions h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.dash-actions-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.dash-action-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(10, 15, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 1.2rem 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dash-action-card:hover {
    border-color: rgba(0, 255, 255, 0.2);
    background: rgba(0, 255, 255, 0.04);
    transform: translateX(4px);
}

.dash-action-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dash-action-icon svg {
    width: 22px;
    height: 22px;
    stroke: #00ffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dash-action-info {
    flex: 1;
}

.dash-action-info h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.15rem;
}

.dash-action-info p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.dash-action-arrow {
    width: 20px;
    height: 20px;
    stroke: rgba(255, 255, 255, 0.2);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.dash-action-card:hover .dash-action-arrow {
    stroke: #00ffff;
    transform: translateX(3px);
}

/* Plan button in dashboard */
.dash-plan-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.8rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    color: #00ffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.dash-plan-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.dash-plan-btn.featured {
    background: linear-gradient(135deg, #00ffff, #00d4ff);
    color: #000;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

.dash-plan-btn.featured:hover {
    box-shadow: 0 6px 25px rgba(0, 255, 255, 0.5);
    transform: translateY(-1px);
}

/* Profile fields */
.dash-profile-info {
    margin-top: 1.5rem;
}

.dash-profile-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.dash-profile-field:last-child {
    border-bottom: none;
}

.dash-profile-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.dash-profile-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
}

/* Dashboard cards 3 columns */
@media (min-width: 769px) {
    .dash-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .dash-cards {
        grid-template-columns: 1fr;
    }
}

/* Profile Hero Card */
.dash-profile-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.15);
}

.dash-profile-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.08) 0%, rgba(0, 100, 200, 0.06) 50%, rgba(0, 255, 255, 0.04) 100%);
    z-index: 0;
}

.dash-profile-hero-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem;
    gap: 3rem;
}

.dash-profile-hero-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.dash-profile-hero-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    flex-shrink: 0;
}

.dash-profile-hero-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.dash-profile-hero-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
}

.dash-profile-hero-email {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.dash-profile-hero-badge {
    display: inline-block;
    width: fit-content;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.25);
    padding: 0.2rem 0.9rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.4rem;
}

.dash-profile-hero-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 220px;
}

.dash-profile-detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

@media (max-width: 768px) {
    .dash-profile-hero-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    .dash-profile-hero-left {
        flex-direction: column;
        align-items: center;
        width: 100%;
        text-align: center;
    }
    .dash-profile-hero-text {
        align-items: center;
    }
    .dash-profile-hero-right {
        width: 100%;
        min-width: unset;
    }
    .dash-profile-hero-img {
        width: 80px;
        height: 80px;
    }
    .dash-profile-hero-name {
        font-size: 1.2rem;
    }
}

/* Profile field with icon */
.dash-profile-field-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dash-profile-field-icon svg {
    width: 18px;
    height: 18px;
    stroke: #00ffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dash-profile-field {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.dash-profile-field:last-child {
    border-bottom: none;
}

.dash-profile-label {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
    margin-bottom: 0.1rem;
}

.dash-profile-value {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .dash-profile-hero-content {
        padding: 2rem 1.5rem;
    }
    .dash-profile-hero-img {
        width: 80px;
        height: 80px;
    }
    .dash-profile-hero-name {
        font-size: 1.3rem;
    }
}

/* Plan Hero */
.dash-plan-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: rgba(10, 15, 25, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    gap: 3rem;
    margin-bottom: 1.5rem;
}

.dash-plan-hero-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.dash-plan-hero-name {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    font-weight: 900;
    color: #00ffff;
    margin: 0.3rem 0;
}

.dash-plan-hero-desc {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.dash-plan-hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    min-width: 250px;
}

.dash-plan-stat {
    display: flex;
    flex-direction: column;
}

.dash-plan-stat-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.2rem;
}

.dash-plan-stat-value {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.dash-plan-stat-small {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.3rem;
}

/* Billing Card */
.dash-billing-card {
    background: rgba(10, 15, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
}

.dash-billing-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.dash-billing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.dash-billing-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.dash-billing-item svg {
    width: 20px;
    height: 20px;
    stroke: #00ffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.dash-billing-label {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 0.15rem;
}

.dash-billing-value {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 600;
}

/* Plan upgrade section */
.dash-plan-upgrade {
    margin-top: 1.5rem;
}

.dash-plan-upgrade h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.dash-plan-option-header {
    margin-bottom: 1rem;
}

.dash-plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem 0;
}

.dash-plan-features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    padding: 0.35rem 0;
}

.dash-plan-features-list li svg {
    width: 16px;
    height: 16px;
    stroke: #00ffff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .dash-plan-hero {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    .dash-plan-hero-right {
        min-width: unset;
        width: 100%;
    }
    .dash-plan-hero-name {
        font-size: 1.8rem;
    }
    .dash-billing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Upgrade cards improved */
.dash-plan-option {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.8rem 1.8rem;
}

.dash-plan-option-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.dash-plan-option-tag.featured {
    color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.25);
}

.dash-plan-price-block {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin: 0.8rem 0;
}

.dash-plan-price-old {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
}

.dash-plan-price-amount {
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.dash-plan-option.featured .dash-plan-price-amount {
    color: #00ffff;
}

.dash-plan-price-period {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.4);
}

.dash-plan-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    margin: 1rem 0;
}

.dash-plan-option.featured .dash-plan-divider {
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.6), transparent);
}

.dash-plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    width: 100%;
}

.dash-plan-features-list li {
    justify-content: flex-start;
    text-align: left;
    padding: 0.4rem 0;
}

.dash-plan-upgrade-btn {
    display: block;
    width: 100%;
    padding: 0.85rem;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(0, 255, 255, 0.05);
    color: #00ffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.dash-plan-upgrade-btn:hover {
    background: rgba(0, 255, 255, 0.15);
    border-color: #00ffff;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
}

.dash-plan-upgrade-btn.featured {
    background: linear-gradient(135deg, #00ffff, #00d4ff);
    border: none;
    color: #000;
    box-shadow: 0 6px 25px rgba(0, 255, 255, 0.35);
}

.dash-plan-upgrade-btn.featured:hover {
    box-shadow: 0 8px 35px rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Logout confirm modal */
.dash-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
}

.dash-modal-overlay.active {
    display: flex;
}

.dash-modal {
    background: rgba(8, 14, 26, 0.98);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    max-width: 380px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 255, 255, 0.08);
    animation: modalIn 0.2s ease;
}

@keyframes modalIn {
    from { transform: scale(0.92); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.dash-modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 100, 100, 0.1);
    border: 1px solid rgba(255, 100, 100, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.dash-modal-icon svg {
    width: 26px;
    height: 26px;
    stroke: #ff6b6b;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dash-modal h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.dash-modal p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}

.dash-modal-actions {
    display: flex;
    gap: 0.8rem;
}

.dash-modal-cancel {
    flex: 1;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dash-modal-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.dash-modal-confirm {
    flex: 1;
    padding: 0.8rem;
    background: rgba(255, 80, 80, 0.15);
    border: 1px solid rgba(255, 80, 80, 0.35);
    border-radius: 12px;
    color: #ff6b6b;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dash-modal-confirm:hover {
    background: rgba(255, 80, 80, 0.25);
    border-color: #ff6b6b;
    box-shadow: 0 0 20px rgba(255, 80, 80, 0.2);
}
