* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --holo-blue: #00eaff;
    --holo-purple: #a800ff;
    --holo-pink: #ff00ea;
    --holo-green: #00ffb3;
    --dark-bg: #05050a;
    --card-bg: rgba(0, 234, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --text-primary: #e0e0e0;
    --text-secondary: #909090;
    --success: #00ffb3;
    --warning: #ffcc00;
    --error: #ff3860;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

body {
    font-family: 'Exo', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation Toolbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(5, 5, 10, 0.95), rgba(15, 15, 20, 0.9));
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(0, 234, 255, 0.3);
    z-index: 1000;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 234, 255, 0.15);
}

.navbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--holo-blue), var(--holo-purple), var(--holo-pink));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: brandGradientShift 4s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(0, 234, 255, 0.5);
    filter: drop-shadow(0 0 15px rgba(0, 234, 255, 0.3));
}

@keyframes brandGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    backdrop-filter: blur(10px);
}

.navbar-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 234, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.navbar-item i {
    font-size: 1rem;
    transition: all 0.4s ease;
}

.navbar-item:hover {
    color: var(--holo-blue);
    background: linear-gradient(135deg, rgba(0, 234, 255, 0.1), rgba(168, 0, 255, 0.05));
    border-color: rgba(0, 234, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 234, 255, 0.2);
}

.navbar-item:hover::before {
    left: 100%;
}

.navbar-item:hover i {
    color: var(--holo-purple);
    transform: scale(1.1);
}

.navbar-item.active {
    color: var(--holo-blue);
    background: linear-gradient(135deg, rgba(0, 234, 255, 0.15), rgba(168, 0, 255, 0.1));
    border-color: var(--holo-blue);
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.3), inset 0 0 10px rgba(0, 234, 255, 0.1);
}

.navbar-item.active i {
    color: var(--holo-purple);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: var(--holo-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 234, 255, 0.5);
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Enhanced Animated Grid Background */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: 
        linear-gradient(rgba(0, 234, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 234, 255, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(168, 0, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 0, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px, 30px 30px, 30px 30px;
    animation: gridMove 25s linear infinite, gridPulse 5s ease-in-out infinite alternate;
    z-index: -2;
    opacity: 0.7;
}

.particle-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(0, 234, 255, 0.7) 0%, rgba(168, 0, 255, 0.3) 50%, transparent 100%);
    border-radius: 50%;
    filter: blur(1.5px);
    animation: float linear infinite, sparkle 2.5s ease-in-out infinite alternate;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg) scale(1); opacity: 1; }
    50% { transform: translateY(-50vh) rotate(180deg) scale(1.1); opacity: 0.7; }
    100% { transform: translateY(-100vh) rotate(360deg) scale(0.9); opacity: 0; }
}

@keyframes sparkle {
    0% { filter: blur(1.5px) brightness(1); }
    100% { filter: blur(3px) brightness(1.8); }
}

/* Enhanced Screen Container */
.screen {
    min-height: 100vh;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    padding-top: 120px;
    position: relative;
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.screen.active {
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Enhanced Welcome Screen */
.welcome-content {
    text-align: center;
    max-width: 900px;
    position: relative;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--holo-blue), var(--holo-purple), var(--holo-pink), var(--holo-blue));
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(0, 234, 255, 0.6);
    animation: glow 3.5s ease-in-out infinite alternate, gradientShift 8s ease-in-out infinite;
    position: relative;
    filter: drop-shadow(0 0 30px rgba(0, 234, 255, 0.4));
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 10px;
    background: linear-gradient(90deg, transparent, var(--holo-blue), var(--holo-purple), var(--holo-blue), transparent);
    border-radius: 50%;
    filter: blur(4px);
    animation: underlineGlow 2.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from { 
        text-shadow: 0 0 25px rgba(168, 0, 255, 0.6), 0 0 40px rgba(0, 234, 255, 0.6), 0 0 50px rgba(255, 0, 234, 0.4);
        filter: drop-shadow(0 0 25px rgba(0, 234, 255, 0.4));
    }
    to { 
        text-shadow: 0 0 40px rgba(168, 0, 255, 0.9), 0 0 60px rgba(0, 234, 255, 0.9), 0 0 70px rgba(255, 0, 234, 0.7);
        filter: drop-shadow(0 0 50px rgba(0, 234, 255, 0.7));
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes underlineGlow {
    from { opacity: 0.7; transform: translateX(-50%) scaleX(0.9); }
    to { opacity: 1; transform: translateX(-50%) scaleX(1.1); }
}

.subtitle {
    font-size: clamp(1.3rem, 3.5vw, 2rem);
    margin-bottom: 4rem;
    color: var(--text-secondary);
    position: relative;
    display: inline-block;
    animation: subtitleFloat 5s ease-in-out infinite;
}

.subtitle::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--holo-blue), var(--holo-purple), var(--holo-pink), var(--holo-blue));
    background-size: 250% 100%;
    transform: scaleX(0);
    transform-origin: left;
    animation: subtitleUnderline 3.5s ease-in-out infinite, gradientFlow 5s linear infinite;
    border-radius: 3px;
}

@keyframes subtitleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes subtitleUnderline {
    0%, 100% { transform: scaleX(0); }
    50% { transform: scaleX(1); }
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 250% 50%; }
}

/* Enhanced Buttons */
.neon-button {
    background: transparent;
    border: 2px solid var(--holo-blue);
    color: var(--holo-blue);
    padding: 1.2rem 3.5rem;
    font-size: 1.3rem;
    font-family: 'Orbitron', monospace;
    cursor: pointer;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    overflow: hidden;
    border-radius: 50px;
    box-shadow: 0 0 25px rgba(0, 234, 255, 0.4), inset 0 0 25px rgba(0, 234, 255, 0.15);
    backdrop-filter: blur(12px);
}

.neon-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 234, 255, 0.5), rgba(168, 0, 255, 0.5), transparent);
    transition: left 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.neon-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 234, 255, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    border-radius: 50%;
}

.neon-button:hover {
    color: var(--dark-bg);
    background: linear-gradient(45deg, var(--holo-blue), var(--holo-purple));
    box-shadow: 0 0 50px var(--holo-blue), 0 0 70px rgba(168, 0, 255, 0.6), inset 0 0 35px rgba(255, 255, 255, 0.15);
    transform: translateY(-5px) scale(1.07);
    border-color: var(--holo-purple);
}

.neon-button:hover::before {
    left: 100%;
}

.neon-button:hover::after {
    width: 120px;
    height: 120px;
}

/* Enhanced Version Selector */
.version-selector {
    text-align: center;
    width: 100%;
    max-width: 1400px;
}

.selector-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 3.5rem;
    color: transparent;
    background: linear-gradient(45deg, var(--holo-blue), var(--holo-purple), var(--holo-pink), var(--holo-green));
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    animation: gradientShift 8s ease-in-out infinite, titlePulse 3.5s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 234, 255, 0.5));
}

.selector-title::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 5px;
    background: linear-gradient(90deg, var(--holo-blue), var(--holo-purple), var(--holo-pink), var(--holo-green));
    background-size: 250% 100%;
    border-radius: 4px;
    animation: gradientFlow 4s linear infinite, underlinePulse 2.5s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

@keyframes underlinePulse {
    0%, 100% { opacity: 0.8; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 1; transform: translateX(-50%) scaleX(1.15); }
}

.version-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.version-card {
    background: linear-gradient(135deg, rgba(0, 234, 255, 0.06), rgba(168, 0, 255, 0.06), rgba(0, 234, 255, 0.06));
    border: 2px solid rgba(0, 234, 255, 0.35);
    border-radius: 25px;
    padding: 3rem;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.version-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 234, 255, 0.12), rgba(168, 0, 255, 0.12), transparent);
    transform: rotate(0deg);
    transition: all 0.7s ease;
    opacity: 0;
}

.version-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 234, 255, 0.12), transparent, rgba(168, 0, 255, 0.12));
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 23px;
}

.version-card:hover {
    border-color: var(--holo-blue);
    box-shadow: 0 25px 70px rgba(0, 234, 255, 0.4), 0 0 50px rgba(168, 0, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transform: translateY(-20px) scale(1.03);
    background: linear-gradient(135deg, rgba(0, 234, 255, 0.12), rgba(168, 0, 255, 0.12), rgba(255, 0, 234, 0.08));
}

.version-card:hover::before {
    animation: cardRotate 4s linear infinite;
    opacity: 1;
}

.version-card:hover::after {
    opacity: 1;
}

.version-card.selected {
    border-color: var(--holo-purple);
    box-shadow: 0 30px 90px rgba(168, 0, 255, 0.5), 0 0 70px rgba(0, 234, 255, 0.4);
    background: linear-gradient(135deg, rgba(168, 0, 255, 0.18), rgba(0, 234, 255, 0.12));
    transform: translateY(-15px) scale(1.06);
}

@keyframes cardRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.card-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--holo-blue);
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--holo-blue), var(--holo-purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 3px;
}

.version-card:hover .card-title {
    color: var(--holo-purple);
    transform: translateY(-3px);
}

.version-card:hover .card-title::after {
    transform: scaleX(1);
}

.card-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
    transition: color 0.4s ease;
}

.version-card:hover .card-description {
    color: rgba(255, 255, 255, 0.95);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.8rem;
    color: var(--holo-blue);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 0 12px rgba(0, 234, 255, 0.4));
}

.version-card:hover .card-icon {
    transform: scale(1.4) rotate(15deg);
    color: var(--holo-purple);
    filter: drop-shadow(0 0 25px rgba(168, 0, 255, 0.6));
}

/* Enhanced Details Page */
.details-content {
    width: 100%;
    max-width: 1400px;
    text-align: center;
}

.details-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 7vw, 4.5rem);
    margin-bottom: 1.5rem;
    color: transparent;
    background: linear-gradient(45deg, var(--holo-blue), var(--holo-purple), var(--holo-pink), var(--holo-green));
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 8s ease-in-out infinite, titleBounce 5s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(0, 234, 255, 0.5));
}

@keyframes titleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.details-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3.5rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: subtitleFade 3.5s ease-in-out infinite alternate;
}

@keyframes subtitleFade {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Enhanced Features Section */
.features-section {
    margin-bottom: 5rem;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--holo-blue);
    position: relative;
    display: inline-block;
    animation: sectionTitleGlow 3.5s ease-in-out infinite alternate;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--holo-blue), var(--holo-purple), transparent);
    border-radius: 3px;
    animation: sectionUnderline 2.5s ease-in-out infinite;
}

@keyframes sectionTitleGlow {
    0% { text-shadow: 0 0 12px rgba(0, 234, 255, 0.6); }
    100% { text-shadow: 0 0 25px rgba(0, 234, 255, 0.9), 0 0 35px rgba(168, 0, 255, 0.5); }
}

@keyframes sectionUnderline {
    0%, 100% { transform: scaleX(0.9); opacity: 0.7; }
    50% { transform: scaleX(1.2); opacity: 1; }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(0, 234, 255, 0.1), rgba(168, 0, 255, 0.06));
    border: 1px solid rgba(0, 234, 255, 0.25);
    border-radius: 18px;
    padding: 2.5rem;
    backdrop-filter: blur(18px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, var(--holo-blue), var(--holo-purple));
    transition: height 0.5s ease;
    border-radius: 0 3px 3px 0;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 234, 255, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover {
    border-color: var(--holo-blue);
    box-shadow: 0 18px 45px rgba(0, 234, 255, 0.3), 0 0 35px rgba(168, 0, 255, 0.15);
    transform: translateY(-10px) scale(1.03);
    background: linear-gradient(135deg, rgba(0, 234, 255, 0.15), rgba(168, 0, 255, 0.1));
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.8rem;
    color: var(--holo-blue);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 0 10px rgba(0, 234, 255, 0.4));
}

.feature-card:hover .feature-icon {
    transform: rotate(18deg) scale(1.4);
    color: var(--holo-purple);
    filter: drop-shadow(0 0 20px rgba(168, 0, 255, 0.7));
}

.feature-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--holo-blue);
    transition: color 0.4s ease;
}

.feature-card:hover .feature-title {
    color: var(--holo-purple);
}

.feature-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    transition: color 0.4s ease;
}

.feature-card:hover .feature-description {
    color: rgba(255, 255, 255, 0.95);
}

/* Enhanced Videos Section */
.videos-section {
    margin-bottom: 5rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 3rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid rgba(0, 234, 255, 0.35);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 234, 255, 0.15);
    backdrop-filter: blur(12px);
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 234, 255, 0.15), transparent, rgba(168, 0, 255, 0.15));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.video-container:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 234, 255, 0.4), 0 0 50px rgba(168, 0, 255, 0.3);
    border-color: var(--holo-purple);
}

.video-container:hover::before {
    opacity: 1;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Enhanced Get Nova Button */
.get-nova-button {
    background: linear-gradient(45deg, var(--holo-blue), var(--holo-purple), var(--holo-pink));
    background-size: 400% 400%;
    border: none;
    color: var(--dark-bg);
    padding: 2.2rem 5.5rem;
    font-size: 2rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    cursor: pointer;
    border-radius: 60px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 3.5px;
    box-shadow: 0 0 50px rgba(0, 234, 255, 0.7), 0 0 70px rgba(168, 0, 255, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: buttonGradient 5s ease-in-out infinite, buttonPulse 2.5s ease-in-out infinite;
}

.get-nova-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--holo-purple), var(--holo-pink), var(--holo-blue));
    background-size: 400% 400%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    animation: buttonGradient 5s ease-in-out infinite reverse;
}

.get-nova-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    border-radius: 50%;
}

.get-nova-button:hover {
    transform: scale(1.1) translateY(-8px);
    box-shadow: 0 0 70px rgba(0, 234, 255, 0.9), 0 0 90px rgba(168, 0, 255, 0.6), 0 18px 45px rgba(0, 0, 0, 0.4);
    letter-spacing: 4.5px;
}

.get-nova-button:hover::before {
    opacity: 1;
}

.get-nova-button:hover::after {
    width: 220px;
    height: 220px;
}

@keyframes buttonGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 0 50px rgba(0, 234, 255, 0.7), 0 0 70px rgba(168, 0, 255, 0.4); }
    50% { box-shadow: 0 0 70px rgba(0, 234, 255, 0.9), 0 0 90px rgba(168, 0, 255, 0.6); }
}

/* Enhanced Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; backdrop-filter: blur(0px); }
    to { opacity: 1; backdrop-filter: blur(12px); }
}

.modal-content {
    background: linear-gradient(135deg, rgba(5, 5, 10, 0.98), rgba(15, 15, 20, 0.95));
    border: 2px solid var(--holo-blue);
    border-radius: 25px;
    margin: 7% auto;
    padding: 3.5rem;
    width: 90%;
    max-width: 550px;
    text-align: center;
    backdrop-filter: blur(30px);
    box-shadow: 0 0 70px rgba(0, 234, 255, 0.5), 0 0 110px rgba(168, 0, 255, 0.3);
    position: relative;
    overflow: hidden;
    transform: scale(0.75) translateY(60px);
    animation: modalAppear 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 234, 255, 0.15), rgba(168, 0, 255, 0.15), transparent);
    transform: rotate(0deg);
    animation: modalRotate 7s linear infinite;
}

@keyframes modalAppear {
    to { transform: scale(1) translateY(0); }
}

@keyframes modalRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.modal-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 1.8rem;
    color: var(--holo-blue);
    position: relative;
    z-index: 2;
    animation: titleShimmer 3.5s ease-in-out infinite;
}

@keyframes titleShimmer {
    0%, 100% { text-shadow: 0 0 12px rgba(0, 234, 255, 0.6); }
    50% { text-shadow: 0 0 25px rgba(0, 234, 255, 0.9), 0 0 35px rgba(168, 0, 255, 0.5); }
}

.access-key {
    background: linear-gradient(135deg, rgba(0, 234, 255, 0.18), rgba(168, 0, 255, 0.12));
    border: 2px solid var(--holo-blue);
    border-radius: 12px;
    padding: 1.8rem;
    margin: 2.5rem 0;
    font-family: 'Courier New', monospace;
    font-size: 1.4rem;
    color: var(--holo-blue);
    word-break: break-all;
    position: relative;
    transition: all 0.5s ease;
    z-index: 2;
    box-shadow: inset 0 0 25px rgba(0, 234, 255, 0.15);
}

.access-key:hover {
    background: linear-gradient(135deg, rgba(0, 234, 255, 0.25), rgba(168, 0, 255, 0.18));
    box-shadow: 0 0 35px rgba(0, 234, 255, 0.4), inset 0 0 35px rgba(0, 234, 255, 0.25);
    transform: scale(1.03);
}

.copy-btn {
    background: linear-gradient(45deg, rgba(0, 234, 255, 0.25), rgba(168, 0, 255, 0.25));
    border: 1px solid var(--holo-blue);
    color: var(--holo-blue);
    padding: 1rem 1.8rem;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: all 0.5s ease;
    font-family: 'Exo', sans-serif;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(12px);
}

.copy-btn:hover {
    background: linear-gradient(45deg, var(--holo-blue), var(--holo-purple));
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 234, 255, 0.4);
}

.close {
    color: var(--text-secondary);
    float: right;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.5s ease;
    position: absolute;
    top: 20px;
    right: 25px;
    z-index: 3;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover {
    color: var(--holo-blue);
    transform: rotate(180deg) scale(1.3);
    background: rgba(0, 234, 255, 0.15);
}

/* Enhanced Download Page */
.download-content {
    text-align: center;
    max-width: 700px;
    position: relative;
}

.download-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    margin-bottom: 2.5rem;
    color: transparent;
    background: linear-gradient(45deg, var(--holo-blue), var(--holo-purple), var(--holo-pink), var(--holo-green));
    background-size: 400% 400%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 8s ease-in-out infinite, downloadTitleFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 234, 255, 0.6));
}

@keyframes downloadTitleFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.03); }
}

.download-button {
    background: linear-gradient(45deg, var(--success), var(--holo-blue), var(--holo-purple));
    background-size: 400% 400%;
    border: none;
    color: var(--dark-bg);
    padding: 2.8rem 6.5rem;
    font-size: 2.5rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    cursor: pointer;
    border-radius: 60px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 4.5px;
    box-shadow: 0 0 60px rgba(0, 234, 255, 0.8), 0 0 90px rgba(0, 255, 179, 0.5);
    position: relative;
    overflow: hidden;
    animation: downloadButtonGlow 3.5s ease-in-out infinite, buttonGradient 6s ease-in-out infinite;
}

.download-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--holo-blue), var(--success), var(--holo-purple));
    background-size: 400% 400%;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: buttonGradient 6s ease-in-out infinite reverse;
}

.download-button:hover {
    transform: scale(1.18) translateY(-10px);
    box-shadow: 0 0 90px rgba(0, 234, 255, 1), 0 0 130px rgba(0, 255, 179, 0.7), 0 25px 60px rgba(0, 0, 0, 0.4);
    letter-spacing: 6.5px;
}

.download-button:hover::before {
    opacity: 1;
}

@keyframes downloadButtonGlow {
    0%, 100% { 
        box-shadow: 0 0 60px rgba(0, 234, 255, 0.8), 0 0 90px rgba(0, 255, 179, 0.5);
    }
    50% { 
        box-shadow: 0 0 80px rgba(0, 234, 255, 1), 0 0 110px rgba(0, 255, 179, 0.7);
    }
}

.download-info {
    margin-top: 3rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    animation: infoFade 4.5s ease-in-out infinite alternate;
}

@keyframes infoFade {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Enhanced Back Button */
.back-button {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    background: linear-gradient(45deg, rgba(0, 234, 255, 0.12), rgba(168, 0, 255, 0.12));
    border: 2px solid var(--holo-blue);
    color: var(--holo-blue);
    padding: 1rem 1.8rem;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(18px);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.3);
}

.back-button:hover {
    background: linear-gradient(45deg, var(--holo-blue), var(--holo-purple));
    color: var(--dark-bg);
    padding: 1rem 2.2rem;
    transform: translateX(-8px);
    box-shadow: 0 8px 25px rgba(0, 234, 255, 0.4);
}

/* Enhanced Loading Animation */
.loading {
    display: inline-block;
    width: 28px;
    height: 28px;
    border: 4px solid rgba(0, 234, 255, 0.35);
    border-radius: 50%;
    border-top-color: var(--holo-blue);
    border-right-color: var(--holo-purple);
    animation: spin 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    margin-left: 15px;
    filter: drop-shadow(0 0 6px rgba(0, 234, 255, 0.6));
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Enhanced Notification */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, rgba(5, 5, 10, 0.98), rgba(15, 15, 20, 0.95));
    border-left: 6px solid var(--holo-blue);
    color: white;
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 35px rgba(0, 234, 255, 0.25);
    transform: translateX(150%);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(18px);
    border-radius: 18px;
}

.notification.show {
    transform: translateX(0);
    animation: notificationGlow 3.5s ease-in-out infinite alternate;
}

.notification.success {
    border-left-color: var(--success);
}

.notification.warning {
    border-left-color: var(--warning);
}

.notification.error {
    border-left-color: var(--error);
}

@keyframes notificationGlow {
    0% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 35px rgba(0, 234, 255, 0.25); }
    100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 45px rgba(0, 234, 255, 0.5); }
}

.notification-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px currentColor);
}

/* Enhanced Progress Bar */
.progress-container {
    width: 100%;
    height: 10px;
    background: rgba(0, 234, 255, 0.12);
    border-radius: 12px;
    margin-top: 1.8rem;
    overflow: hidden;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--holo-blue), var(--holo-purple), var(--holo-pink));
    background-size: 250% 100%;
    width: 0;
    transition: width 0.5s ease;
    border-radius: 12px;
    animation: progressGlow 2.5s ease-in-out infinite alternate;
    box-shadow: 0 0 18px rgba(0, 234, 255, 0.6);
}

@keyframes progressGlow {
    0% { 
        background-position: 0% 50%;
        box-shadow: 0 0 18px rgba(0, 234, 255, 0.6);
    }
    100% { 
        background-position: 100% 50%;
        box-shadow: 0 0 30px rgba(0, 234, 255, 0.9);
    }
}

/* Page Content Styles */
.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 234, 255, 0.05), rgba(168, 0, 255, 0.03));
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 234, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.page-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    text-align: center;
    color: transparent;
    background: linear-gradient(45deg, var(--holo-blue), var(--holo-purple), var(--holo-pink));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 234, 255, 0.4));
}

.page-section {
    margin-bottom: 3rem;
}

.section-heading {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--holo-blue);
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--holo-blue), var(--holo-purple));
    border-radius: 2px;
}

.page-text {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.contact-form {
    background: linear-gradient(135deg, rgba(0, 234, 255, 0.08), rgba(168, 0, 255, 0.05));
    border: 1px solid rgba(0, 234, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--holo-blue);
    font-weight: 600;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 234, 255, 0.05);
    border: 2px solid rgba(0, 234, 255, 0.3);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Exo', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--holo-blue);
    box-shadow: 0 0 15px rgba(0, 234, 255, 0.3);
    background: rgba(0, 234, 255, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-button {
    background: linear-gradient(45deg, var(--holo-blue), var(--holo-purple));
    border: none;
    color: var(--dark-bg);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(0, 234, 255, 0.4);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 234, 255, 0.6);
    background: linear-gradient(45deg, var(--holo-purple), var(--holo-pink));
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    /* Reduce animation intensity */
    .grid-background {
        animation: none;
        opacity: 0.3;
    }
    
    .particle {
        display: none;
    }
    
    /* Simplify text animations */
    .logo, .selector-title, .details-title, .download-title {
        animation: none !important;
        text-shadow: 0 0 10px rgba(0, 234, 255, 0.6);
    }
    
    /* Remove complex hover effects */
    .version-card:hover, .feature-card:hover {
        transform: none !important;
    }
    
    /* Simplify buttons */
    .neon-button, .get-nova-button, .download-button {
        animation: none !important;
    }
    
    .neon-button:hover, .get-nova-button:hover, .download-button:hover {
        transform: none !important;
        letter-spacing: inherit !important;
    }
    
    /* Reduce blur effects */
    .navbar {
        backdrop-filter: none;
        background: rgba(5, 5, 10, 0.98);
    }
    
    .version-card, .feature-card, .modal-content {
        backdrop-filter: none;
    }
    
    /* Add solid backgrounds where filters were removed */
    .version-card {
        background: rgba(5, 5, 10, 0.9);
    }
    
    .feature-card {
        background: rgba(5, 5, 10, 0.85);
    }
    
    /* Simplify shadows */
    .navbar {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }
    
    .version-card, .feature-card {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .neon-button, .get-nova-button, .download-button {
        box-shadow: 0 5px 20px rgba(0, 234, 255, 0.4);
    }
    
    /* Responsive navbar */
    .navbar-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, rgba(5, 5, 10, 0.98), rgba(15, 15, 20, 0.95));
        border-top: 2px solid rgba(0, 234, 255, 0.3);
        flex-direction: column;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .navbar-item {
        width: 100%;
        padding: 1.5rem 2rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(0, 234, 255, 0.1);
        justify-content: flex-start;
    }

    .navbar-toggle {
        display: flex;
    }

    /* Adjust grid layouts */
    .version-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    /* Adjust button sizes */
    .download-button {
        padding: 2.2rem 4.5rem;
        font-size: 2rem;
    }
    
    .modal-content {
        margin: 12% auto;
        padding: 2.5rem;
    }
    
    .get-nova-button {
        padding: 1.8rem 3.5rem;
        font-size: 1.6rem;
    }

    .screen {
        padding-top: 100px;
    }
}

@media (max-width: 480px) {
    .screen {
        padding: 1.5rem;
        padding-top: 100px;
    }
    
    .back-button {
        top: 1.5rem;
        left: 1.5rem;
        padding: 0.8rem 1.2rem;
    }
    
    .get-nova-button {
        padding: 1.5rem 2.5rem;
        font-size: 1.4rem;
        letter-spacing: 2.5px;
    }
    
    .download-button {
        padding: 1.8rem 3.5rem;
        font-size: 1.8rem;
        letter-spacing: 2.5px;
    }
    
    .notification {
        bottom: 20px;
        right: 20px;
        max-width: 320px;
        padding: 1.2rem;
    }

    .navbar-container {
        padding: 0 1rem;
    }

    .brand-text {
        font-size: 1.5rem;
    }
    
    /* Further simplify animations */
    .logo::after, .selector-title::after, .section-title::after, .card-title::after {
        animation: none !important;
    }
    
    /* Remove complex background effects */
    .version-card::before, .version-card::after, 
    .feature-card::before, .feature-card::after {
        display: none;
    }
    
    /* Reduce text sizes */
    .logo {
        font-size: clamp(2.5rem, 9vw, 5rem);
    }
    
    .download-title {
        font-size: 3rem;
    }


    
}

/* WhatsApp Screen Styles */
.whatsapp-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.whatsapp-title {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    font-family: 'Orbitron', sans-serif;
}

.whatsapp-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.whatsapp-card {
    background: rgba(20, 20, 30, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 0 auto;
    max-width: 500px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
    font-size: 4rem;
    color: #25D366;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.whatsapp-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
}

.whatsapp-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
    margin: 10px auto;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    margin-right: 10px;
    font-size: 1.4rem;
}

.whatsapp-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}


@media (max-width: 768px) {
    .whatsapp-content {
        padding: 1rem;
    }
    
    .whatsapp-title {
        font-size: 2rem;
    }
    
    .whatsapp-card {
        padding: 1.5rem;
    }
    
    .whatsapp-icon {
        font-size: 3rem;
    }
    
    .whatsapp-button {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
}

/* Invoice Form Styles */
.invoice-form-content {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.invoice-form-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.invoice-form-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.invoice-form-card {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.success-icon {
    font-size: 4rem;
    color: #00ff00;
    margin-bottom: 1.5rem;
}

.invoice-form-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.invoice-form-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.invoice-form {
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #00ffff;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.invoice-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1.5rem;
    text-align: center;
}

/* Enhanced Offer Tag Styles - Lower Position */
.offer-tag {
    position: absolute;
    top: 10px; /* Changed from -15px to 10px */
    right: 20px;
    background: linear-gradient(45deg, #ff0080, #ff8c00);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 6px 20px rgba(255, 0, 128, 0.5);
    z-index: 10;
    animation: pulse 2s infinite, glow 3s infinite alternate;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.offer-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 16px;
    height: 100%;
    background: inherit;
    transform: skewX(-15deg);
    z-index: -1;
    border-radius: 25px 0 0 25px;
}

.offer-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.offer-tag.popular {
    background: linear-gradient(45deg, #00ff88, #00ccff);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.6);
    animation: pulse 1.5s infinite, glow-popular 2s infinite alternate;
}

.offer-tag.premium {
    background: linear-gradient(45deg, #9d50bb, #6e48aa, #ff00ff);
    box-shadow: 0 6px 20px rgba(157, 80, 187, 0.7);
    animation: pulse 1.8s infinite, glow-premium 2.5s infinite alternate;
}

.offer-tag.hot {
    background: linear-gradient(45deg, #ff0000, #ff8c00, #ffff00);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
    animation: pulse 1.2s infinite, glow-hot 2s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.05) translateY(-2px);
    }
    100% {
        transform: scale(1) translateY(0);
    }
}

@keyframes glow {
    from {
        box-shadow: 0 6px 20px rgba(255, 0, 128, 0.5);
    }
    to {
        box-shadow: 0 6px 30px rgba(255, 0, 128, 0.8), 0 0 15px rgba(255, 0, 128, 0.4);
    }
}

@keyframes glow-popular {
    from {
        box-shadow: 0 6px 20px rgba(0, 255, 136, 0.6);
    }
    to {
        box-shadow: 0 6px 30px rgba(0, 255, 136, 0.9), 0 0 15px rgba(0, 255, 136, 0.5);
    }
}

@keyframes glow-premium {
    from {
        box-shadow: 0 6px 20px rgba(157, 80, 187, 0.7);
    }
    to {
        box-shadow: 0 6px 30px rgba(157, 80, 187, 0.9), 0 0 15px rgba(157, 80, 187, 0.6);
    }
}

@keyframes glow-hot {
    from {
        box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
    }
    to {
        box-shadow: 0 6px 30px rgba(255, 0, 0, 0.9), 0 0 15px rgba(255, 0, 0, 0.5);
    }
}

/* Add position relative to cards for proper positioning */
.version-card, .variant-card {
    position: relative;
    overflow: visible;
}

/* Reduced padding since tags are now inside the cards */
.version-card {
    padding-top: 2rem;
}

.variant-card {
    padding-top: 2rem;
}


/* Timer Styling */
.offer-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 50, 50, 0.2);
    border: 1px solid rgba(255, 50, 50, 0.4);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

.offer-timer i {
    color: #ff3232;
    margin-right: 8px;
}

.timer-text {
    color: rgba(255, 255, 255, 0.9);
    margin-right: 5px;
}

.timer-countdown {
    font-weight: bold;
    color: #ff3232;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 50, 50, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(255, 50, 50, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 50, 50, 0); }
}

/* Original Price with Strikethrough */
.original-price {
    margin-bottom: 5px;
}

.strike-through {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    font-size: 1.2rem;
    font-weight: normal;
}

/* Discount Badge */
.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #ff3232, #ff6b6b);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(255, 50, 50, 0.3);
}

/* Elite variant special styling */
#elite-variant {
    border-color: rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: visible;
}

#elite-variant .variant-icon {
    color: #ffd700;
}

#elite-variant .variant-price {
    color: #ffd700;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

#elite-variant .variant-features li:before {
    color: #ffd700;
}

#elite-variant.selected {
    border-color: #ffd700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

/* Offer tag positioning fix */
#elite-variant .offer-tag {
    top: 10px;
    left: 10px;
    right: auto;
}


@media (max-width: 768px) {
    .offer-timer {
        font-size: 0.8rem;
        padding: 6px 10px;
        flex-wrap: wrap;
    }
    
    .timer-text {
        margin-right: 3px;
    }
    
    .discount-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .strike-through {
        font-size: 1rem;
    }
    
    #elite-variant .variant-price {
        font-size: 1.5rem;
    }
}


/* Add to existing CSS */

/* Android tag styling */
.offer-tag.android {
    background: linear-gradient(45deg, #3DDC84, #0F9D58);
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.8rem;
}

/* Android icon color */
#android-card .card-icon {
    color: #3DDC84;
}

#android-card:hover {
    border-color: rgba(61, 220, 132, 0.5);
}

#android-card.selected {
    border-color: #3DDC84;
    box-shadow: 0 0 20px rgba(61, 220, 132, 0.3);
}


 /* Additional CSS for key status display */
        .key-status {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 15px;
            padding: 8px 12px;
            background: rgba(0, 255, 255, 0.1);
            border: 1px solid rgba(0, 255, 255, 0.3);
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .key-status i {
            margin-right: 8px;
            color: #00ffff;
        }
        
        .key-count {
            font-weight: bold;
            color: #00ffff;
            margin-right: 5px;
        }
        
        .key-label {
            color: rgba(255, 255, 255, 0.8);
        }
        
        /* Status-based styling */
        .key-status.keys-available {
            background: rgba(0, 255, 0, 0.1);
            border-color: rgba(0, 255, 0, 0.3);
        }
        
        .key-status.keys-available i,
        .key-status.keys-available .key-count {
            color: #00ff00;
        }
        
        .key-status.keys-low {
            background: rgba(255, 165, 0, 0.1);
            border-color: rgba(255, 165, 0, 0.3);
        }
        
        .key-status.keys-low i,
        .key-status.keys-low .key-count {
            color: #ffa500;
        }
        
        .key-status.keys-none {
            background: rgba(255, 0, 0, 0.1);
            border-color: rgba(255, 0, 0, 0.3);
        }
        
        .key-status.keys-none i,
        .key-status.keys-none .key-count {
            color: #ff0000;
        }
        
        /* Version selector styles */
        .version-selector {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            text-align: center;
        }
        
        .version-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .version-card {
            background: rgba(20, 20, 30, 0.7);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 10px;
            padding: 2rem;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .version-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 255, 255, 0.1);
            border-color: rgba(0, 255, 255, 0.5);
        }
        
        .version-card.selected {
            border: 2px solid #00ffff;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
            background: rgba(0, 255, 255, 0.05);
        }
        
        .card-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #00ffff;
        }
        
        .card-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #fff;
            font-family: 'Orbitron', sans-serif;
        }
        
        .card-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        /* Custom Name Assistant Specific Styles */
        .custom-price {
            margin: 1rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .original-price {
            font-size: 1.5rem;
            color: #ff5555;
            text-decoration: line-through;
            opacity: 0.8;
        }
        
        .discount-price {
            font-size: 2rem;
            font-weight: bold;
            color: #00ff00;
            font-family: 'Orbitron', sans-serif;
        }
        
        .discount-badge {
            background: linear-gradient(45deg, #ff3366, #ff6633);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
        }
        
        .offer-tag.exclusive {
            background: linear-gradient(45deg, #ff3366, #ff9933);
            color: white;
            padding: 5px 15px;
            border-radius: 5px;
            font-weight: bold;
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 0.8rem;
        }
        
        /* Custom Name Screen Styles */
        .custom-name-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
            text-align: center;
        }
        
        .custom-name-card {
            background: rgba(20, 20, 30, 0.8);
            border: 1px solid rgba(255, 51, 102, 0.3);
            border-radius: 15px;
            padding: 2.5rem;
            margin-top: 2rem;
            box-shadow: 0 10px 30px rgba(255, 51, 102, 0.2);
        }
        
        .custom-name-icon {
            font-size: 3rem;
            color: #ff3366;
            margin-bottom: 1.5rem;
        }
        
        .price-display {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin: 1.5rem 0;
            flex-wrap: wrap;
        }
        
        .price-display .original-price {
            font-size: 1.8rem;
        }
        
        .price-display .current-price {
            font-size: 2.5rem;
            font-weight: bold;
            color: #00ff00;
            font-family: 'Orbitron', sans-serif;
        }
        
        .discount-tag {
            background: #00ff00;
            color: #000;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: bold;
            font-size: 1rem;
        }
        
        .custom-name-form {
            text-align: left;
            margin: 2rem 0;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
            color: #00ffff;
            font-weight: bold;
        }
        
        .form-group input {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(0, 255, 255, 0.3);
            border-radius: 8px;
            color: white;
            font-size: 1rem;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: #00ffff;
            box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
        }
        
        .form-help {
            display: block;
            margin-top: 5px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        
        .included-features {
            background: rgba(0, 255, 255, 0.05);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
        }
        
        .included-features h4 {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #00ffff;
            margin-bottom: 1rem;
        }
        
        .included-features ul {
            list-style: none;
            padding-left: 0;
        }
        
        .included-features li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .included-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00ff00;
            font-weight: bold;
        }
        
        .custom-note {
            margin-top: 1.5rem;
            padding: 10px;
            background: rgba(255, 51, 102, 0.1);
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        /* Variant selector styles */
        .variant-selector {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            text-align: center;
        }
        
        .variant-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .variant-card {
            background: rgba(20, 20, 30, 0.7);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 10px;
            padding: 2rem;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .variant-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 255, 255, 0.1);
            border-color: rgba(0, 255, 255, 0.5);
        }
        
        .variant-card.selected {
            border: 2px solid #00ffff;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
            background: rgba(0, 255, 255, 0.05);
        }
        
        .variant-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #00ffff;
        }
        
        .variant-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #fff;
            font-family: 'Orbitron', sans-serif;
        }
        
        .variant-price {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            color: #00ffff;
            font-family: 'Orbitron', sans-serif;
        }
        
        .variant-features {
            text-align: left;
            margin-bottom: 2rem;
            padding-left: 1rem;
        }
        
        .variant-features li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.5rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .variant-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00ffff;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .version-cards,
            .variant-cards {
                grid-template-columns: 1fr;
            }
            
            .key-status {
                font-size: 0.8rem;
                padding: 6px 10px;
            }
            
            .custom-price,
            .price-display {
                flex-direction: column;
                gap: 10px;
            }
            
            .custom-name-card {
                padding: 1.5rem;
            }
            
            .price-display .original-price {
                font-size: 1.5rem;
            }
            
            .price-display .current-price {
                font-size: 2rem;
            }
        }


        /* Add these new styles to your existing style.css file */

/* Assistant Selector Styles */
.assistant-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
}

.assistant-card {
    background: rgba(20, 20, 40, 0.8);
    border: 2px solid rgba(0, 200, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    width: 300px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.assistant-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 30px rgba(0, 200, 255, 0.3);
}

.assistant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
}

.assistant-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
}

.assistant-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.assistant-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.assistant-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 200, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 20px;
    color: var(--neon-blue);
    font-size: 0.85rem;
}

/* Selection Content Styles */
.selection-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.selection-title {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    text-align: center;
}

.selection-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
}

.option-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.option-card {
    background: rgba(20, 20, 40, 0.8);
    border: 2px solid rgba(0, 200, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.option-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 30px rgba(0, 200, 255, 0.2);
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--neon-blue);
}

.option-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    min-height: 3.5rem;
}

.option-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    min-height: 4rem;
}

.option-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 200, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 20px;
    color: var(--neon-blue);
    font-size: 0.85rem;
}

/* MJ Variant Specific Styles */
.redeem-section {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(0, 200, 255, 0.2);
}

.redeem-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

#redeem-code {
    flex: 1;
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 10px;
    color: white;
    font-family: 'Exo', sans-serif;
    font-size: 0.9rem;
}

#redeem-code:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 200, 255, 0.5);
}

.redeem-btn {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
    border: none;
    border-radius: 10px;
    color: white;
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.redeem-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 200, 255, 0.4);
}

.get-redeem-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--neon-blue);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.get-redeem-link:hover {
    color: white;
    text-decoration: underline;
}

/* Source Code Screen Styles */
.source-code-content,
.guidance-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.source-code-card,
.guidance-card {
    background: rgba(20, 20, 40, 0.8);
    border: 2px solid rgba(0, 200, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.source-code-icon,
.guidance-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--neon-blue);
}

.source-code-card h3,
.guidance-card h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.source-code-features,
.guidance-features {
    text-align: left;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(0, 200, 255, 0.2);
}

.source-code-features h4,
.guidance-features h4 {
    color: var(--neon-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.source-code-features ul,
.guidance-features ul {
    list-style: none;
    padding-left: 1rem;
}

.source-code-features li,
.guidance-features li {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.source-code-features li::before,
.guidance-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .assistant-selector {
        flex-direction: column;
        align-items: center;
    }
    
    .assistant-card {
        width: 100%;
        max-width: 350px;
    }
    
    .option-cards {
        grid-template-columns: 1fr;
    }
    
    .selection-title {
        font-size: 2rem;
    }
    
    .selection-subtitle {
        font-size: 1rem;
    }
    
    .redeem-input-group {
        flex-direction: column;
    }
    
    #redeem-code {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .selection-content,
    .source-code-content,
    .guidance-content {
        padding: 1rem;
    }
    
    .selection-title {
        font-size: 1.8rem;
    }
    
    .assistant-card,
    .option-card,
    .source-code-card,
    .guidance-card {
        padding: 1.5rem;
    }
}


/* Redeem Code Section Styles */
.redeem-code-section {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.redeem-code-section .form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 0.8rem;
}

.redeem-code-section .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.redeem-code-section .form-group label i {
    font-size: 1rem;
}

#redeem-code {
    flex: 1;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Exo', sans-serif;
    transition: all 0.3s ease;
}

#redeem-code:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

#redeem-code::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Apply Button */
.apply-code-btn {
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--neon-purple) 0%, #8a2be2 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.apply-code-btn:hover {
    background: linear-gradient(135deg, #9d4edd 0%, #7b2cbf 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(157, 78, 221, 0.4);
}

.apply-code-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(157, 78, 221, 0.3);
}

.apply-code-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.apply-code-btn:hover::before {
    left: 100%;
}

/* Code Help Text */
.code-help {
    margin-top: 0.8rem;
    padding: 0.8rem;
    background: rgba(0, 20, 40, 0.3);
    border-radius: 6px;
    border-left: 3px solid var(--neon-blue);
}

.code-help p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.code-help i {
    color: var(--neon-blue);
    font-size: 0.9rem;
}

.code-help a {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.code-help a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

.code-help a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-pink);
    transition: width 0.3s ease;
}

.code-help a:hover::after {
    width: 100%;
}

/* Code Error Text */
.code-error {
    margin-top: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 6px;
    border-left: 3px solid #ff3232;
    animation: shake 0.5s ease-in-out;
}

.code-error p {
    margin: 0;
    font-size: 0.9rem;
    color: #ff6b6b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.code-error i {
    color: #ff3232;
    font-size: 0.9rem;
}

/* Animation for error */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Success price style */
#mj-price-display {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

#mj-price-display.discount-applied {
    color: #00ff00 !important;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
    animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 0 0 25px rgba(0, 255, 0, 0.8);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .redeem-code-section .form-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .apply-code-btn {
        width: 100%;
        padding: 14px 25px;
    }
    
    .redeem-code-section {
        padding: 0.8rem;
    }
    
    .code-help, .code-error {
        padding: 0.6rem;
    }
    
    .code-help p, .code-error p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .redeem-code-section {
        margin: 1rem 0;
    }
    
    #redeem-code {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .apply-code-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}


/* MJ Card Timer Styles */
.mj-card-timer {
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(168, 0, 255, 0.9), rgba(255, 0, 234, 0.9));
    border-radius: 15px 15px 5px 5px;
    padding: 12px;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(168, 0, 255, 0.4);
    animation: timerGlow 2s infinite alternate;
}

@keyframes timerGlow {
    0% { box-shadow: 0 5px 20px rgba(168, 0, 255, 0.4); }
    100% { box-shadow: 0 5px 30px rgba(168, 0, 255, 0.8); }
}

.timer-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: white;
    margin-bottom: 8px;
}

.timer-title i {
    font-size: 1rem;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 8px;
    border-radius: 8px;
    min-width: 45px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.time-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

.time-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.timer-colon {
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
    margin-top: -8px;
}

.timer-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
    color: white;
}

.timer-message i {
    animation: pulse 1.5s infinite;
}

/* MJ Card specific styling */
#mj-platform-card {
    position: relative;
    padding-top: 60px; /* Make space for timer */
}

#mj-platform-card .card-icon {
    margin-top: 10px;
}

/* MJ card opacity when not available */
#mj-platform-card.disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

#mj-platform-card.disabled .card-icon {
    color: rgba(168, 0, 255, 0.5);
}

#mj-platform-card.disabled .card-title {
    color: rgba(255, 255, 255, 0.5);
}

#mj-platform-card.disabled .card-description {
    color: rgba(255, 255, 255, 0.4);
}

#mj-platform-card.disabled:hover {
    transform: none !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
    border-color: rgba(0, 234, 255, 0.35) !important;
}

/* Responsive timer */
@media (max-width: 768px) {
    .mj-card-timer {
        padding: 10px;
        top: -12px;
    }
    
    .time-unit {
        min-width: 40px;
        padding: 4px 6px;
    }
    
    .time-number {
        font-size: 1rem;
    }
    
    .time-label {
        font-size: 0.6rem;
    }
    
    .timer-colon {
        font-size: 1rem;
        margin-top: -6px;
    }
    
    #mj-platform-card {
        padding-top: 55px;
    }
}

/* Add this to your existing CSS */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}