/* Root Variables */
:root {
    --primary-color: #00d4ff;
    --secondary-color: #ff006b;
    --accent-color: #9d4edd;
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --glow-primary: rgba(0, 212, 255, 0.5);
    --glow-secondary: rgba(255, 0, 107, 0.5);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    --gradient-dark: linear-gradient(180deg, var(--bg-darker), var(--bg-dark));
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-darker);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

/* Particles Background */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(255, 0, 107, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 20% 80%, rgba(157, 78, 221, 0.1) 0%, transparent 50%);
}

#particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--primary-color), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--secondary-color), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--accent-color), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: float 20s linear infinite;
    opacity: 0.3;
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-10px) translateX(5px); }
    66% { transform: translateY(5px) translateX(-5px); }
    100% { transform: translateY(0px) translateX(0px); }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
}

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

.title-section {
    text-align: left;
}

.main-title {
    margin-bottom: 2rem;
}

.subtitle {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.project-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1rem;
    font-weight: 300;
}

.series-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px var(--glow-primary);
    animation: pulse-glow 3s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% { 
        filter: drop-shadow(0 0 20px var(--glow-primary));
        transform: scale(1);
    }
    100% { 
        filter: drop-shadow(0 0 40px var(--glow-primary));
        transform: scale(1.02);
    }
}

.release-info {
    margin-bottom: 2rem;
}

.release-date {
    font-family: 'Orbitron', monospace;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.tagline .quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-primary);
    text-align: center;
    padding: 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 30px var(--glow-primary);
    animation: quote-pulse 4s ease-in-out infinite;
}

@keyframes quote-pulse {
    0%, 100% { box-shadow: 0 0 30px var(--glow-primary); }
    50% { box-shadow: 0 0 50px var(--glow-primary); }
}

/* Countdown Styles */
.countdown-container {
    background: linear-gradient(135deg, rgba(255, 0, 107, 0.2), rgba(157, 78, 221, 0.2));
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0 40px var(--glow-secondary);
    animation: countdown-pulse 3s ease-in-out infinite;
}

@keyframes countdown-pulse {
    0%, 100% { 
        box-shadow: 0 0 40px var(--glow-secondary);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 60px var(--glow-secondary);
        transform: scale(1.02);
    }
}

.countdown-label {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 0 20px var(--glow-primary);
}

.countdown-unit {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Artwork Container */
.artwork-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-artwork {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 0 50px var(--glow-primary),
        0 0 100px var(--glow-secondary);
    animation: artwork-float 6s ease-in-out infinite;
}

@keyframes artwork-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(0px) rotate(0deg); }
    75% { transform: translateY(-5px) rotate(-1deg); }
}

.artwork-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient-primary);
    border-radius: 30px;
    opacity: 0.3;
    filter: blur(20px);
    z-index: -1;
    animation: glow-pulse 3s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(1.05); }
}

/* CTA Section */
.cta-section {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.cta-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 0 30px var(--glow-primary);
}

.cta-button.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 40px var(--glow-primary);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 40px var(--glow-primary);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about-section {
    background: var(--gradient-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
}

.about-text .highlight {
    color: var(--secondary-color);
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 10px var(--glow-secondary);
}

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

.feature-card {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--glow-primary);
    border-color: var(--primary-color);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

/* Purchase Section */
.purchase-section {
    background: radial-gradient(ellipse at center, rgba(255, 0, 107, 0.05) 0%, transparent 70%);
}

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

.purchase-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

/* Removed problematic ::before pseudo-element that was blocking clicks */

.purchase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 0, 0, 0.9));
}

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

.card-header i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.card-header h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
}

.price-display {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.currency {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.card-content {
    position: relative;
    z-index: 5;
}

.purchase-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white !important;
    text-decoration: none !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative !important;
    z-index: 999 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    border: none;
    outline: none;
}

.purchase-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px var(--glow-primary);
}

.price-notice {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.price-notice i {
    color: #ffc107;
}

/* Player Section */
.player-section {
    background: var(--gradient-dark);
}

.player-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.player-description h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.player-features {
    margin-top: 2rem;
}

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

.feature i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.2rem;
}

.feature h4 {
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.5rem;
}

.player-access {
    text-align: center;
}

.player-preview {
    margin-bottom: 2rem;
}

.player-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 40px var(--glow-secondary);
}

.player-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    background: var(--gradient-secondary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.player-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px var(--glow-secondary);
}

/* Campaign Section */
.campaign-section {
    background: radial-gradient(ellipse at center, rgba(157, 78, 221, 0.05) 0%, transparent 70%);
}

.campaign-card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 2px solid rgba(157, 78, 221, 0.3);
}

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

.campaign-header i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.campaign-header h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
}

.campaign-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.cd-features {
    margin-top: 1.5rem;
}

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

.cd-feature i {
    color: var(--accent-color);
}

.progress-display {
    background: rgba(157, 78, 221, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.progress-numbers {
    font-family: 'Orbitron', monospace;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(157, 78, 221, 0.2);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-secondary);
    transition: width 0.3s ease;
}

.progress-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.discord-section {
    background: rgba(114, 137, 218, 0.1);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(114, 137, 218, 0.3);
}

.discord-section h3 {
    font-family: 'Orbitron', monospace;
    margin-bottom: 1rem;
    color: #7289da;
}

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

.discord-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
}

.discord-feature i {
    color: #7289da;
}

/* Teaser Video Section */
.teaser-section {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.teaser-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 0, 107, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.teaser-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.teaser-description h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.teaser-lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
}

.teaser-stats {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.stat-item i {
    color: var(--primary-color);
}

.teaser-player {
    text-align: center;
}

.video-wrapper {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 50px var(--glow-secondary);
}

.video-placeholder {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.play-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-button i {
    font-size: 4rem;
    color: #ff0000;
    filter: drop-shadow(0 0 20px #ff0000);
    animation: youtube-pulse 2s ease-in-out infinite;
}

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

#youtube-player iframe {
    width: 100%;
    height: 315px;
    border: none;
    border-radius: 20px;
}

.video-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.video-link,
.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-link {
    background: #ff0000;
    color: white;
}

.video-link:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
}

.share-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.share-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--glow-primary);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.3);
}

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

.footer-section h4 {
    font-family: 'Orbitron', monospace;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .series-title {
        font-size: 2.5rem;
    }
    
    .cta-section {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .about-content,
    .player-content,
    .campaign-content,
    .teaser-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .purchase-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .discord-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .series-title {
        font-size: 2rem;
    }
    
    .countdown-display {
        gap: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

/* Animation for smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}