/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Tipografia */
.gradient-text {
    background: linear-gradient(135deg, #ff8a00, #e52e71, #9b59b6, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite alternate;
}

@keyframes gradient-shift {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(30deg); }
}

.section-title {
    /* font-family: 'Orbitron', monospace; */
    font-family: 'Oxanium', 'Audiowide', 'Exo 2', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1a0033, #330066, #660033, #000);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 191, 255, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 138, 0, 0.5);
}

.hero-subtitle {
    font-size: 2rem;
    color: #00bcd4;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.hero-tagline {
    font-size: 1.5rem;
    color: #e74c3c;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(231, 76, 60, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: #bbb;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Botões */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #e74c3c);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #00bcd4;
    border: 2px solid #00bcd4;
}

.btn-secondary:hover {
    background: #00bcd4;
    color: #000;
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.3rem;
}

.btn-icon {
    font-size: 1.2em;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 2;
}

.scroll-arrow {
    font-size: 2rem;
    color: #666;
    animation: bounce 2s infinite;
}

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

/* Story Section */
.story-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #000 0%, #1a0033 100%);
}

.story-section .section-title {
    color: #e74c3c;
}

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

.story-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #ccc;
    line-height: 1.8;
}

.highlight-void {
    color: #9b59b6;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(155, 89, 182, 0.5);
}

.highlight-echoes {
    color: #00bcd4;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
}

.highlight-chronosurge {
    color: #ff8a00;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 138, 0, 0.5);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a0033 0%, #330066 50%, #1a0033 100%);
}

.features-section .section-title {
    color: #ff8a00;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #9b59b6;
    box-shadow: 0 20px 40px rgba(155, 89, 182, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00bcd4;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-description {
    color: #bbb;
    line-height: 1.6;
}

/* Monsters Section */
.monsters-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a0033 0%, #000 100%);
}

.monsters-section .section-title {
    color: #e74c3c;
}

.monsters-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.monster-info {
    text-align: left;
}

.monster-name {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff8a00;
    margin-bottom: 0.5rem;
}

.monster-type {
    font-size: 1.3rem;
    color: #9b59b6;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.monster-description {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.7;
}

.monster-display {
    display: flex;
    justify-content: center;
}

.monster-image-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.monster-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 30px rgba(255, 138, 0, 0.3));
}

.monster-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(255, 138, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.monster-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.monster-nav-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: none;
    background: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.monster-nav-dot:hover {
    background: #999;
    transform: scale(1.2);
}

.monster-nav-dot.active {
    background: #ff8a00;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 138, 0, 0.5);
}

/* Trailer Section */
.trailer-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #000 0%, #330033 100%);
}

.trailer-section .section-title {
    color: #00bcd4;
}

.trailer-container {
    max-width: 800px;
    margin: 0 auto;
}

.trailer-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a1a, #333);
    border: 2px solid #666;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trailer-placeholder:hover {
    border-color: #e74c3c;
    color: #e74c3c;
}

.play-button {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

/* Community Section */
.community-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #330033 0%, #1a0033 100%);
}

.community-section .section-title {
    color: #9b59b6;
}

.community-description {
    text-align: center;
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-social {
    padding: 15px 25px;
    border: 2px solid;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-twitter {
    border-color: #1da1f2;
    color: #1da1f2;
}

.btn-twitter:hover {
    background: #1da1f2;
    color: white;
}

.btn-instagram {
    border-color: #e4405f;
    color: #e4405f;
}

.btn-instagram:hover {
    background: #e4405f;
    color: white;
}

.btn-discord {
    border-color: #7289da;
    color: #7289da;
}

.btn-discord:hover {
    background: #7289da;
    color: white;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0033, #330066, #660033, #000);
    text-align: center;
}

.cta-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ff8a00;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    padding: 30px 0;
    background: #000;
    border-top: 1px solid #333;
    text-align: center;
    color: #666;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .monsters-gallery {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .monster-name {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-subtitle {
        font-size: 1.8rem;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .monster-image-container {
        width: 250px;
        height: 250px;
    }
}

