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

body {
    font-family: 'Orbitron', monospace;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    text-align: center;
    padding: 60px 0 40px;
    position: relative;
}

.title {
    font-family: 'Creepster', cursive;
    font-size: 4.5rem;
    color: #00ff88;
    text-shadow: 
        0 0 10px #00ff88,
        0 0 20px #00ff88,
        0 0 40px #00ff88;
    margin-bottom: 10px;
    animation: glow 2s ease-in-out infinite alternate;
}

.release-info {
    margin-top: 20px;
}

.release-date {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.5);
    animation: pulse 2s infinite;
    margin-right: 15px;
}

.official-badge {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.subtitle {
    font-size: 1.2rem;
    color: #888;
    letter-spacing: 3px;
    text-transform: uppercase;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 10px #00ff88,
            0 0 20px #00ff88,
            0 0 40px #00ff88;
    }
    to {
        text-shadow: 
            0 0 20px #00ff88,
            0 0 30px #00ff88,
            0 0 60px #00ff88;
    }
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

/* Hero Image Section */
.hero-image-section {
    text-align: center;
    margin-bottom: 80px;
}

.image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    border: 4px solid #00ff88;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.4),
        inset 0 0 30px rgba(0, 255, 136, 0.1);
    transition: transform 0.3s ease;
    max-width: 600px;
    width: 100%;
}

.image-container:hover {
    transform: scale(1.02);
    box-shadow: 
        0 0 40px rgba(0, 255, 136, 0.6),
        inset 0 0 30px rgba(0, 255, 136, 0.1);
}

.hero-image {
    max-width: 100%;
    height: auto;
    display: none;
    filter: contrast(1.1) brightness(0.95);
    transition: opacity 0.5s ease-in-out;
}

.hero-image.active {
    display: block;
}

.image-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
}

.exclusive-badge {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
    animation: pulse 2s infinite;
    position: absolute;
    top: 15px;
    right: 15px;
}

.winter-badge {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
    position: absolute;
    bottom: 15px;
    left: 15px;
}

.image-indicators {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}

.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #00ff88;
    border: 2px solid #00ff88;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.arrow-btn:hover {
    background: #00ff88;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.arrow-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.arrow-left {
    left: 15px;
}

.arrow-right {
    right: 15px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.image-caption {
    font-style: italic;
    color: #aaa;
    font-size: 1.1rem;
}

/* Section Styles */
section {
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(10px);
}

h2 {
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

h3 {
    color: #00ff88;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: justify;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-card {
    background: rgba(0, 255, 136, 0.05);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.info-card h3 {
    color: #00ff88;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-card p {
    color: #ccc;
    font-size: 1rem;
    text-align: center;
}

/* Teaser Grid */
.teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.teaser-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.teaser-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 255, 136, 0.05);
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.teaser-item h3 {
    color: #00ff88;
    margin-bottom: 15px;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.teaser-item p {
    color: #ddd;
    font-size: 1rem;
    text-align: center;
}

.spoiler-warning {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid #ff6b35;
    border-radius: 10px;
    text-align: center;
}

.spoiler-warning p {
    color: #ff6b35;
    font-size: 1.1rem;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

/* Join Section */
.join-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.05));
}

.contact-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.email-input {
    padding: 15px 20px;
    border: 2px solid #00ff88;
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.3);
    color: #e0e0e0;
    font-size: 1rem;
    min-width: 300px;
    outline: none;
    transition: all 0.3s ease;
}

.email-input:focus {
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.email-input::placeholder {
    color: #888;
}

.join-btn {
    padding: 15px 30px;
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
    background: linear-gradient(45deg, #00cc6a, #00ff88);
}

.join-btn:hover::after {
    content: " 🐸";
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    margin-top: 60px;
}

.footer p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.disclaimer {
    font-style: italic;
    color: #555;
    font-size: 0.8rem;
}

.credits {
    color: #00ff88;
    font-size: 0.9rem;
    margin-top: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 20px;
        margin-bottom: 40px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        flex-direction: column;
        align-items: center;
    }
    
    .email-input {
        min-width: 250px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .email-input {
        min-width: 200px;
    }
}

/* Secret Video Overlay */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.video-overlay.active {
    display: flex;
    animation: fadeIn 0.5s ease-in-out;
}

.video-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.5);
    border: 3px solid #00ff88;
}

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

.close-video-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: #00ff88;
    border: 2px solid #00ff88;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.close-video-btn:hover {
    background: #00ff88;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    transform: scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: #00ff88;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00cc6a;
}

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

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