body {
    font-family: 'Roboto', sans-serif;
    background: url('img/fundo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    margin: 0;
    min-height: 100vh;
    transform: scale(0.8);
    transform-origin: top center;
}

.content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 24px 40px 24px;
    text-align: center;
}

.event-section-title,
.event-main-title,
.event-main-title-glow {
    font-size: 4.8rem;
    font-weight: 900;
    color: #ff69b4 !important;
    text-shadow: 0 0 30px #ffb6c1, 0 0 60px #ff69b4, 0 0 10px #fff !important;
    letter-spacing: 4px;
    margin-bottom: 10px;
    margin-top: 0;
    animation: event-glow 2s infinite alternate;
}
@keyframes event-glow {
    0% { text-shadow: 0 0 30px #ff6600, 0 0 60px #ff0000, 0 0 10px #fff; }
    100% { text-shadow: 0 0 60px #ffd700, 0 0 120px #ff6600, 0 0 20px #fff; }
}

.event-subtitle {
    font-size: 4.8rem;
    color: #fff;
    margin-bottom: 32px;
    text-shadow: 0 0 8px #000;
}

.event-divider,
.event-info-divider {
    height: 6px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 0 auto;
    border-bottom: 2px solid #ffb6c1 !important;
    box-shadow: 0 8px 16px -8px #ff69b4a0 !important;
    background: transparent;
}

.event-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px !important;
    justify-items: center;
    margin-top: 40px;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.event-card {
    background: rgba(255,182,193,0.95) !important;
    border: 2px solid #ff69b4 !important;
    border-radius: 24px !important;
    box-shadow: 0 0 24px 4px #ffb6c1a0 !important;
    padding: 32px 24px 24px 24px;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.event-card:hover {
    transform: scale(1.06) rotate(-1deg);
    box-shadow: 0 0 40px 8px #ff69b4cc, 0 0 80px 16px #ffb6c1a0 !important;
    z-index: 2;
}
.event-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    margin-bottom: 24px;
    border-radius: 16px 16px 0 0;
    background: #fff0f6 !important;
    box-shadow: 0 0 16px #ffb6c180 !important;
    display: block;
}
.event-card h2 {
    color: #ff69b4 !important;
    text-shadow: 0 0 8px #ffb6c1 !important;
    font-size: 2.4rem;
    margin-bottom: 0;
    margin-top: 12px;
}

@media (max-width: 900px) {
    .content {
        padding: 40px 8px 24px 8px;
    }
    .event-cards {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .event-card {
        width: 98vw;
        max-width: 400px;
    }
    .event-card img {
        width: 240px;
        height: 240px;
    }
}

.event-logo {
    display: block;
    margin: 0 auto 18px auto;
    max-width: 770px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 32px #ffb6c1) drop-shadow(0 0 12px #ff69b4);
    background: none;
    border-radius: 0;
    padding: 0;
}

.event-info {
    background: rgba(255,182,193,0.85) !important;
    border-radius: 18px;
    box-shadow: 0 0 24px 4px #ff69b4a0 !important;
    padding: 32px 24px 24px 24px;
    max-width: 700px;
    margin: 0 auto 40px auto;
    text-align: center;
}
.event-info .event-badge {
    display: inline-block;
    background: #ff69b4 !important;
    color: #fff !important;
    font-weight: bold;
    font-size: 3rem;
    padding: 8px 22px;
    border-radius: 12px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    margin-top: 0;
    box-shadow: 0 0 16px #ffb6c1cc !important;
    text-transform: uppercase;
}
.event-info .event-main-title {
    font-size: 5rem;
    color: #ff69b4 !important;
    font-weight: 900;
    margin: 10px 0 18px 0;
    text-shadow: 0 0 18px #ff6600;
}
.event-info .event-desc {
    color: #fff !important;
    font-size: 2.2rem;
    margin-bottom: 18px;
    text-shadow: 0 0 8px #ffb6c1 !important;
}
.event-info .event-time {
    font-size: 2.5rem;
    color: #ff69b4 !important;
    font-weight: bold;
    margin-top: 10px;
    letter-spacing: 1px;
}

.language-selector {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-bottom: 18px;
    margin-top: 10px;
}
.language-flag {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #ff69b4 !important;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: border 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 8px #ffb6c1 !important;
}
.language-flag.active {
    border: 3px solid #ffb6c1 !important;
}
#flag-br { background-image: url('img/flags/br.svg'); }
#flag-us { background-image: url('img/flags/us.svg'); }
#flag-es { background-image: url('img/flags/es.svg'); }

.footer-buttons {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin: 80px auto 0 auto;
}
.footer-btn {
    background: #ff69b4 !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 0 8px #ffb6c1 !important;
    font-size: 2.1rem;
    font-weight: bold;
    display: inline-block;
    padding: 28px 120px;
    border-radius: 16px;
    margin: 0 12px;
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
    border: none !important;
    text-align: center;
    min-width: 320px;
    max-width: 100%;
}
.footer-btn.discord {
    background: #ffb6c1 !important;
    color: #ff69b4 !important;
}
.footer-btn:hover {
    background: #fff0f6 !important;
    color: #ff69b4 !important;
    border-color: #fff0f6 !important;
    transform: translateY(-5px) scale(1.04);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.footer-btn.discord:hover {
    background: #ff69b4 !important;
    color: #fff !important;
    border-color: #ff69b4 !important;
}
@media (max-width: 900px) {
    .event-section-title { font-size: 2.8rem; }
    .event-logo { max-width: 350px; }
    .footer-buttons { flex-direction: column; gap: 18px; }
    .footer-btn { font-size: 1.2rem; padding: 18px 20px; }
}

.event-info-big {
    background: linear-gradient(135deg, #2a133a 60%, #181a2a 100%);
    border: 4px solid #ff69b4;
    box-shadow: 0 0 64px 16px #ff6600cc, 0 0 120px 40px #ffd70044;
    border-radius: 32px;
    padding: 64px 32px 48px 32px;
    max-width: 1500px;
    margin: 0 auto 60px auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
.event-main-title-glow {
    font-size: 5.5rem;
    color: #ff69b4 !important;
    font-weight: 900;
    letter-spacing: 6px;
    margin-bottom: 0;
    margin-top: 0;
    text-shadow: 0 0 60px #ff6600, 0 0 120px #ff0000, 0 0 30px #fff, 0 0 10px #ffd700;
    animation: event-glow-strong 2s infinite alternate;
}
@keyframes event-glow-strong {
    0% { text-shadow: 0 0 60px #ff6600, 0 0 120px #ff0000, 0 0 30px #fff, 0 0 10px #ffd700; }
    100% { text-shadow: 0 0 120px #ffd700, 0 0 240px #ff6600, 0 0 60px #fff, 0 0 20px #ff0000; }
}
.event-desc-big {
    font-size: 1.6rem;
    color: #fffbe7;
    margin-bottom: 32px;
    text-shadow: 0 0 12px #000;
}
.event-time-big {
    font-size: 2.1rem;
    color: #ff69b4 !important;
    font-weight: bold;
    margin-top: 18px;
    letter-spacing: 2px;
    text-shadow: none !important;
}
@media (max-width: 900px) {
    .event-main-title-glow { font-size: 2.5rem; }
    .event-info-big { padding: 24px 8px 24px 8px; max-width: 98vw; }
    .event-info-divider { height: 4px; margin: 18px auto; }
    .event-desc-big { font-size: 1.1rem; }
    .event-time-big { font-size: 1.2rem; }
    .event-logo { max-width: 350px; }
}

.drops-section {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    justify-items: center;
}
.drops-card {
    background: rgba(255,182,193,0.95);
    border: 2px solid #ff69b4;
    border-radius: 24px;
    box-shadow: 0 0 24px 4px #ffb6c1a0;
    padding: 32px 24px 24px 24px;
    width: 320px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.drops-card:hover {
    transform: scale(1.06) rotate(-1deg);
    box-shadow: 0 0 40px 8px #ff69b4cc, 0 0 80px 16px #ffb6c1a0 !important;
    z-index: 2;
}
.drops-card h3 {
    color: #ff69b4;
    font-size: 2rem;
    margin-bottom: 18px;
    text-align: center;
    text-shadow: 0 0 8px #ffb6c1;
}
.drops-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
.drops-list li {
    font-size: 1.25rem;
    color: #d63384;
    background: #fff0f6;
    border-radius: 12px;
    margin-bottom: 10px;
    padding: 10px 16px;
    box-shadow: 0 0 8px #ffb6c1a0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.drops-list li strong {
    color: #ff69b4;
    font-weight: bold;
}
.event-time,
.event-time-big {
    color: #ff69b4 !important;
    font-weight: bold;
    margin-top: 18px;
    text-shadow: none !important;
}
@media (max-width: 900px) {
    .drops-section {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .drops-card {
        width: 98vw;
        max-width: 400px;
    }
} 