/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #8b0000;
    --dark-red: #660000;
    --light-red: #b22222;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #2c3e50;
    --black: #1a1a1a;
    --gradient-primary: linear-gradient(135deg, #8b0000, #ffffff);
    --gradient-secondary: linear-gradient(135deg, #b22222, #f8f9fa);
    --gradient-red: linear-gradient(135deg, #8b0000, #660000);
    --shadow-primary: 0 0 15px rgba(139, 0, 0, 0.2);
    --shadow-white: 0 0 15px rgba(255, 255, 255, 0.1);
    --glow-primary: 0 0 20px rgba(139, 0, 0, 0.3);
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: var(--black);
}

.background-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(139, 0, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(178, 34, 34, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.particles {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    opacity: 0.8;
    z-index: 2;
    box-shadow: 0 0 10px var(--primary-red);
}

.particles:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
    width: 8px;
    height: 8px;
}

.particles:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 15s;
    width: 4px;
    height: 4px;
}

.particles:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 10s;
    width: 6px;
    height: 6px;
}

.particles:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 18s;
    width: 5px;
    height: 5px;
}

.particles:nth-child(5) {
    top: 70%;
    left: 60%;
    animation-delay: 3s;
    animation-duration: 14s;
    width: 7px;
    height: 7px;
}

.particles:nth-child(6) {
    top: 15%;
    left: 50%;
    animation-delay: 5s;
    animation-duration: 13s;
    width: 3px;
    height: 3px;
}

.particles:nth-child(7) {
    top: 85%;
    left: 30%;
    animation-delay: 6s;
    animation-duration: 16s;
    width: 5px;
    height: 5px;
}

.particles:nth-child(8) {
    top: 45%;
    left: 85%;
    animation-delay: 7s;
    animation-duration: 11s;
    width: 4px;
    height: 4px;
}

.particles:nth-child(9) {
    top: 25%;
    left: 15%;
    animation-delay: 8s;
    animation-duration: 19s;
    width: 6px;
    height: 6px;
}

.particles:nth-child(10) {
    top: 75%;
    left: 75%;
    animation-delay: 9s;
    animation-duration: 14s;
    width: 4px;
    height: 4px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-30px) rotate(90deg) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translateY(-50px) rotate(180deg) scale(0.8);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-20px) rotate(270deg) scale(1.1);
        opacity: 0.9;
    }
}

/* Main Content */
.main {
    margin-top: 80px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(139, 0, 0, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-red);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    width: 96px;
    height: 96px;
    object-fit: contain;
    filter: none;
}

.nav-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary-red);
    text-shadow: 0 0 10px rgba(231, 76, 60, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    margin-top: 0;
}

.logo-container {
    position: relative;
    margin-bottom: 0;
    display: inline-block;
    order: 1;
    animation: logoEntrance 1.5s ease-out 0.5s forwards;
    opacity: 0;
    transform: scale(0.5);
}

@keyframes logoEntrance {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-logo {
    width: 500px;
    height: 500px;
    object-fit: contain;
    animation: logoFloat 6s ease-in-out infinite;
    filter: none;
    transition: all 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.logo-glow {
    display: none;
}

.hero-title {
    display: none;
}

.hero-subtitle {
    display: none;
}

/* Player Counter */
.player-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-red);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    animation: counterSlide 1s ease-out 1.5s forwards;
    opacity: 0;
    transform: translateY(30px);
    order: 3;
    position: relative;
    overflow: hidden;
}

.player-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.1), transparent);
    transition: left 0.8s ease;
}

.player-counter:hover::before {
    left: 100%;
}

@keyframes counterSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter-icon {
    font-size: 2rem;
    color: var(--primary-red);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.counter-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    text-shadow: 0 0 10px rgba(231, 76, 60, 0.3);
    animation: numberCount 3s ease-out 2s forwards;
}

@keyframes numberCount {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.counter-label {
    font-size: 0.9rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: labelFade 2s ease-out 2.5s forwards;
    opacity: 0;
}

@keyframes labelFade {
    to {
        opacity: 1;
    }
}

/* Download Section */
.download-section {
    animation: downloadSlide 1s ease-out 1.8s forwards, downloadFloat 6s ease-in-out infinite 3s;
    opacity: 0;
    transform: translateY(30px);
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

@keyframes downloadSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes downloadFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.download-btn {
    position: relative;
    padding: 1rem 2.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    background: linear-gradient(135deg, #b22222, #8b0000);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    justify-content: center;
    min-width: 250px;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
    background: linear-gradient(135deg, #c0392b, #b22222);
}

.download-btn:active {
    transform: translateY(0);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.download-btn:hover .btn-glow {
    left: 100%;
}

.download-info {
    font-size: 0.9rem;
    color: var(--light-gray);
    opacity: 0.8;
    text-align: center;
    animation: fadeInUp 1s ease-out 2.2s forwards, infoGlow 5s ease-in-out infinite 4s;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}

@keyframes infoGlow {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
}

/* Installation Section */
.installation {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    position: relative;
}

.installation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(139, 0, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.installation-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(139, 0, 0, 0.05) 100%);
    border: 2px solid var(--primary-red);
    border-radius: 20px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: stepEntrance 0.8s ease-out forwards;
    opacity: 0;
    transform: translateX(-50px);
}

.step:nth-child(1) { animation-delay: 0.2s; }
.step:nth-child(2) { animation-delay: 0.4s; }
.step:nth-child(3) { animation-delay: 0.6s; }
.step:nth-child(4) { animation-delay: 0.8s; }
.step:nth-child(5) { animation-delay: 1.0s; }

@keyframes stepEntrance {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.15), transparent);
    transition: left 0.6s ease;
}

.step:hover::before {
    left: 100%;
}

.step:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--glow-primary);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(139, 0, 0, 0.1) 100%);
    border-color: var(--light-red);
}

.step-number {
    background: var(--gradient-red);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Orbitron', monospace;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
    animation: numberPulse 3s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(139, 0, 0, 0.8);
    }
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.step:hover .step-content h3 {
    color: var(--primary-red);
    text-shadow: 0 0 10px var(--primary-red);
}

.step-content p {
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.step-content code {
    background: rgba(255, 0, 0, 0.2);
    color: var(--primary-red);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    border: 1px solid rgba(255, 0, 0, 0.3);
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.installation-note {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 1.5rem;
    background: rgba(255, 255, 0, 0.1);
    border-radius: 15px;
    border-left: 4px solid #ffff00;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    animation: noteEntrance 1s ease-out 1.2s forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes noteEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.installation-note i {
    color: #ffff00;
    font-size: 1.5rem;
    margin-top: 0.2rem;
    animation: iconGlow 2s ease-in-out infinite;
}

.installation-note p {
    color: #ffffcc;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(139, 0, 0, 0.03) 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-red);
    text-shadow: 0 0 20px rgba(139, 0, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(139, 0, 0, 0.3);
    }
    50% {
        text-shadow: 0 0 30px rgba(139, 0, 0, 0.5);
    }
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(139, 0, 0, 0.05) 100%);
    border: 2px solid var(--primary-red);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: cardEntrance 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.feature-card:nth-child(1) { animation-delay: 0.2s; }
.feature-card:nth-child(2) { animation-delay: 0.4s; }
.feature-card:nth-child(3) { animation-delay: 0.6s; }
.feature-card:nth-child(4) { animation-delay: 0.8s; }
.feature-card:nth-child(5) { animation-delay: 1.0s; }
.feature-card:nth-child(6) { animation-delay: 1.2s; }

@keyframes cardEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.15), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--glow-primary);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(139, 0, 0, 0.1) 100%);
    border-color: var(--light-red);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover h3 {
    color: var(--primary-red);
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    animation: iconFloat 3s ease-in-out infinite, iconGlow 2s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

@keyframes iconGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(139, 0, 0, 0.6));
    }
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-card p {
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    text-align: left;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--light-gray);
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    color: var(--white);
    transform: translateX(5px);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary-red);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--light-gray);
    transition: all 0.3s ease;
}

.gallery-placeholder:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--light-red);
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.gallery-placeholder span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.03) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 4rem;
    color: var(--light-gray);
}

.about-text p {
    margin-bottom: 2rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(139, 0, 0, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid var(--primary-red);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-primary);
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-red);
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.3);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(139, 0, 0, 0.8) 100%);
    border-top: 2px solid var(--primary-red);
    padding: 4rem 0 2rem;
    animation: footerEntrance 1s ease-out 0.5s forwards;
    opacity: 0;
    transform: translateY(50px);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(139, 0, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes footerEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-links-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
    animation: titleSlide 1s ease-out 1s forwards;
    opacity: 0;
    transform: translateX(-30px);
}

@keyframes titleSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    animation: titleSlide 1s ease-out 1.2s forwards;
    opacity: 0;
    transform: translateX(-30px);
}

.footer-section p {
    color: var(--light-gray);
    line-height: 1.6;
    animation: textFade 1s ease-out 1.4s forwards;
    opacity: 0;
}

@keyframes textFade {
    to {
        opacity: 1;
    }
}

.footer-logo {
    margin-bottom: 1rem;
    animation: footerLogoFloat 4s ease-in-out infinite, footerLogoEntrance 1s ease-out 1.6s forwards;
    opacity: 0;
    transform: scale(0.5);
}

@keyframes footerLogoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes footerLogoEntrance {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.footer-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: none;
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.3));
}

.footer-section ul {
    list-style: none;
    animation: listSlide 1s ease-out 1.8s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes listSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-red);
    text-shadow: 0 0 10px rgba(231, 76, 60, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(231, 76, 60, 0.3);
    color: var(--light-gray);
    animation: bottomFade 1s ease-out 2s forwards;
    opacity: 0;
    position: relative;
    z-index: 1;
}

@keyframes bottomFade {
    to {
        opacity: 1;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--black);
    border: 2px solid var(--primary-red);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: modalEntrance 0.5s ease-out;
    box-shadow: var(--glow-red);
}

@keyframes modalEntrance {
    from {
        opacity: 0;
        transform: translate(-50%, -60%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--white);
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-red);
    transform: scale(1.2) rotate(90deg);
}

.modal-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-red);
    text-shadow: 0 0 15px var(--primary-red);
}

/* Key Input Section */
.key-input-section {
    margin-bottom: 2rem;
}

.key-input-section h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.key-input-section p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

.key-input-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.key-input {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-red);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.key-input:focus {
    outline: none;
    border-color: var(--light-red);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.key-input::placeholder {
    color: var(--light-gray);
}

.key-submit-btn {
    padding: 1rem 1.5rem;
    background: var(--gradient-red);
    color: var(--white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.key-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-red);
    background: linear-gradient(135deg, #ff3333, #ff0000);
}

.key-info {
    font-size: 0.9rem;
    color: var(--light-gray);
    font-style: italic;
}

.download-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.download-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--primary-red);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.download-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--light-red);
    transform: translateY(-2px);
}

.download-option h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.download-option p {
    color: var(--light-gray);
    margin-bottom: 1rem;
}

.download-option-btn {
    background: var(--gradient-red);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.download-option-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.requirements {
    text-align: left;
}

.requirements h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.requirements ul {
    list-style: none;
    color: var(--light-gray);
}

.requirements li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.requirements li:hover {
    color: var(--white);
    transform: translateX(5px);
}

.requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    animation: checkPulse 2s ease-in-out infinite;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-logo {
        width: 250px;
        height: 250px;
    }
    
    .player-counter {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .modal-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .key-input-container {
        flex-direction: column;
    }
    
    .key-input {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 200px;
        height: 200px;
    }
    
    .download-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-width: 200px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
} 