@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:wght@100..900&family=Great+Vibes&family=Montserrat:wght@100..900&display=swap');

:root {
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --accent-gold: #D4AF37;
    --accent-gold-light: #F1D279;
    --text-white: #FFFFFF;
    --text-gray: #A0A0A0;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .serif {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

.script {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 72px; /* Reduzido de 75px para 72px (redução de 3px) */
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.btn-premium {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-premium:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.logo {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: var(--transition);
    opacity: 0.7;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    color: var(--accent-gold);
}

.social-icons i {
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.social-icons i:hover {
    transform: scale(1.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 175px 8% 100px; /* Adicionado um 'espaço de bobo' generoso de 175px no topo para dar respiro da nav */
    background: radial-gradient(circle at 70% 50%, #2a2a2a 0%, #121212 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18,18,18,1) 0%, rgba(18,18,18,0.8) 40%, rgba(18,18,18,0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.banner-main-text {
    margin-bottom: 2.5rem;
}

.title-tiago {
    font-size: clamp(4rem, 10vw, 8rem); /* 64px → 128px fluido */
    line-height: 0.9;
    letter-spacing: -2px;
    color: #fff;
    margin: 0;
}

.title-braga {
    font-size: clamp(4.5rem, 12vw, 10rem); /* 72px → 160px fluido */
    color: var(--accent-gold);
    line-height: 0.5;
    margin-top: -10px;
    margin-left: 20px;
    text-shadow: 2px 2px 20px rgba(212, 175, 55, 0.3);
}

.pillars-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--accent-gold);
    width: fit-content;
    margin-bottom: 3rem;
    border-radius: 4px;
}

.pillars-bar span {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
}

.pillars-bar .dot {
    color: var(--accent-gold);
}

.icon-grid {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.icon-circle {
    color: var(--accent-gold);
    transition: var(--transition);
}

.icon-item p {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-gray);
}

.icon-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.deus-frase {
    font-size: 2.2rem;
    color: #fff;
    opacity: 0.9;
}

.hero-image-wrapper {
    position: absolute;
    right: 0;
    top: 72px; /* Alinha exatamente abaixo da nav de 72px */
    bottom: 0;
    width: 60%;
    z-index: 1;
}

.hero-image {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(0 0 50px rgba(0,0,0,0.5));
}

.image-overlay-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    z-index: -1;
}

.social-footer-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, #000 0%, #1a1a1a 50%, #000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 1rem 0;
    z-index: 5;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.social-link-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-link-banner:hover {
    transform: translateY(-3px);
}

.social-icon-wrapper i {
    font-size: 1.1rem; /* Ajuste para Font Awesome */
    color: #fff !important; /* Forçando branco */
}

.social-icon-wrapper {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.social-link-banner span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff; /* Fonte em branco */
    letter-spacing: 0.5px;
}

.social-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

/* Quote Section */
.quote-section {
    padding: 12rem 10%;
    background-color: var(--bg-dark);
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.quote-text {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    max-width: 1000px;
    margin-bottom: 3rem;
    font-weight: 400;
}

.signature {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: var(--accent-gold);
}

/* Bio Section */
.bio-section {
    padding: 10rem 10%;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
}

.bio-content {
    max-width: 850px;
}

.bio-content p {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 2.5rem;
    color: var(--text-gray);
    font-weight: 400;
    text-align: justify;
}

.bio-content p:first-child::first-letter {
    font-size: 5rem;
    float: left;
    margin-right: 1rem;
    line-height: 0.8;
    font-family: 'Montserrat', sans-serif;
    color: var(--accent-gold);
    font-weight: 900;
}

/* Pillars Section */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 8rem 10%;
    gap: 5rem;
    background: var(--bg-dark);
}

.pillar-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    transition: var(--transition);
}

.pillar-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--accent-gold);
    transform: translateY(-10px);
}

.pillar-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-gold);
    font-weight: 900;
}

.pillar-desc {
    font-size: 1rem;
    color: var(--text-gray);
}

/* Works Section */
.works-section {
    padding: 10rem 10%;
    background-color: #121212;
}

.works-header {
    text-align: center;
    margin-bottom: 7rem;
}

.works-header h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1rem;
    color: #fff;
    text-transform: uppercase;
}

.works-header p {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.9rem;
    font-weight: 800;
}

.works-category {
    margin-bottom: 8rem;
}

.category-title {
    font-size: 1.8rem;
    border-left: 4px solid var(--accent-gold);
    padding-left: 2rem;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-item {
    transition: var(--transition);
}

.video-info {
    margin-top: 2rem;
}

.video-title {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.video-desc {
    font-size: 0.9rem;
    color: var(--accent-gold);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
    padding: 12rem 10%;
    background-color: var(--bg-dark);
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-label {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.contact-email {
    font-size: clamp(1.8rem, 6vw, 5rem);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.contact-email:hover {
    color: var(--accent-gold);
    transform: scale(1.05);
}

.contact-qr-container {
    margin-top: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.contact-qr {
    width: 350px;
    height: 350px;
    background: #fff;
    padding: 2rem;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
    transition: var(--transition);
    border: 5px solid var(--accent-gold);
}

.contact-qr:hover {
    transform: translateY(-15px) rotate(2deg);
}

.qr-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    color: var(--accent-gold);
}

/* Footer */
footer {
    padding: 6rem 10%;
    background: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-rights {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        min-height: 100vh;
        text-align: center;
        padding: 130px 5% 0; /* 72px nav + 58px folga generosa */
        overflow: visible;
    }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(18,18,18,1) 0%, rgba(18,18,18,0.85) 30%, rgba(18,18,18,0.4) 100%);
    }
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 2rem;
    }
    .hero-image-wrapper {
        position: relative;
        width: 90%;
        max-width: 400px;
        height: 420px;
        right: auto;
        top: auto;
        bottom: auto;
        margin: 0 auto;
    }
    .hero-image {
        object-fit: contain;
        object-position: bottom center;
    }
    .pillars-bar {
        margin: 0 auto 2rem;
    }
    .icon-grid {
        justify-content: center;
        width: 100%;
        padding: 0 1rem;
    }
    .social-footer-banner {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        flex-wrap: wrap;
        gap: 1.2rem;
        padding: 1.5rem 1rem;
        margin-top: 1.5rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    }
    .social-divider {
        display: none;
    }
    .pillars {
        grid-template-columns: 1fr;
    }
    footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 3rem 5%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .title-tiago { 
        font-size: clamp(3rem, 12vw, 5rem); /* 48px → 80px */
    }
    .title-braga { 
        font-size: clamp(3.5rem, 14vw, 6rem); /* 56px → 96px */
        margin-left: 0; 
        margin-top: -5px;
    }
    .pillars-bar { 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 0.5rem;
        padding: 0.6rem 1rem;
    }
    .pillars-bar span {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
    .icon-grid { 
        transform: none;
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 0.5rem;
    }
    .icon-item p {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }
    .icon-circle {
        width: 36px;
        height: 36px;
    }
    .icon-divider {
        display: none;
    }
    .deus-frase {
        font-size: 2rem;
    }
    .hero-image-wrapper {
        height: 350px;
        width: 85%;
    }
    .social-link-banner span {
        font-size: 0.85rem;
    }
    .social-icon-wrapper {
        width: 32px;
        height: 32px;
    }
    .social-icon-wrapper i {
        font-size: 0.9rem;
    }
    .video-grid { grid-template-columns: 1fr; }
    .contact-qr { width: 280px; height: 280px; }
}

@media (max-width: 400px) {
    .hero {
        padding: 110px 4% 0;
    }
    .title-tiago {
        font-size: 3.5rem;
    }
    .title-braga {
        font-size: 4rem;
    }
    .hero-image-wrapper {
        height: 300px;
    }
    .social-footer-banner {
        gap: 1rem;
    }
    .social-link-banner span {
        font-size: 0.65rem;
    }
}

/* ==========================================================================
   Categoria Literatura com o Destaque do Livro - "30 Dias de Oração"
   ========================================================================== */
.works-category#livro {
    background: radial-gradient(circle at 10% 30%, #0d121d 0%, #121212 100%);
    padding: 5rem 6%;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 175, 55, 0.05);
    margin-top: 6rem;
}

.book-showcase {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.book-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.book-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0) 70%);
    z-index: -1;
    pointer-events: none;
    animation: divineGlow 8s ease-in-out infinite alternate;
}

@keyframes divineGlow {
    0% { transform: scale(0.95); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1.2; }
}

.book-img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.25);
    transition: var(--transition);
}

.book-img:hover {
    transform: translateY(-12px) scale(1.02) rotate(-0.5deg);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.7), 0 0 45px rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.5);
}

.book-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.book-badge {
    align-self: flex-start;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.book-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.book-subtitle {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    color: var(--accent-gold-light);
    margin-top: -0.7rem;
}

.book-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    text-align: justify;
}

/* Charity Badge */
.charity-badge {
    background: rgba(212, 175, 55, 0.04);
    border: 1px dashed rgba(212, 175, 55, 0.25);
    border-radius: 10px;
    padding: 1.2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: var(--transition);
}

.charity-badge:hover {
    background: rgba(212, 175, 55, 0.07);
    border-style: solid;
    border-color: var(--accent-gold);
}

.charity-icon {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.charity-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.charity-text strong {
    color: var(--accent-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.charity-text span {
    color: #d0d0d0;
}

.charity-text .highlight {
    color: var(--accent-gold);
    font-weight: 800;
}

/* Event Box */
.event-box {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.event-info-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.event-info-item i {
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 0.1rem;
    font-size: 1.1rem;
}

.event-info-item div {
    display: flex;
    flex-direction: column;
}

.event-info-item span {
    font-size: 0.65rem;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.event-info-item strong {
    font-size: 0.85rem;
    color: #fff;
    margin-top: 0.1rem;
}

.event-info-item small {
    font-size: 0.7rem;
    color: var(--text-gray);
    margin-top: 0.1rem;
}

/* Countdown */
.countdown-container {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.08);
    text-align: center;
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--accent-gold-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
}

.countdown-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.countdown-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.25);
}

.countdown-unit {
    font-size: 0.6rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.1rem;
}

.countdown-divider {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-gold);
    animation: blink 1s infinite;
}

@keyframes blink {
    50% { opacity: 0.3; }
}

/* Actions */
.book-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.btn-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    padding: 1rem 2rem;
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

.action-note {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-align: center;
    font-style: italic;
}

/* Adaptations for Book Showcase */
@media (max-width: 1024px) {
    .works-category#livro {
        padding: 4rem 4%;
    }
    
    .book-showcase {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        max-width: 600px;
    }
    
    .book-visual {
        order: 1;
    }
    
    .book-img {
        max-width: 320px;
    }
    
    .book-details {
        order: 2;
        align-items: center;
        text-align: center;
    }
    
    .book-badge {
        align-self: center;
    }
    
    .book-description {
        text-align: center;
    }
    
    .charity-badge {
        width: 100%;
        text-align: left;
    }
    
    .event-box {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .event-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .event-info-item {
        align-items: center;
        text-align: left;
    }
    
    .countdown-timer {
        gap: 0.4rem;
    }
    
    .countdown-segment {
        min-width: 45px;
    }
    
    .countdown-value {
        font-size: 1.3rem;
    }
    
    .countdown-divider {
        font-size: 1.3rem;
    }
}

/* Checkout Modal */
#checkout-overlay {
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

#checkout-overlay > div {
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translate(-50%, -45%); opacity: 0; }
    to { transform: translate(-50%, -50%); opacity: 1; }
}

#mp-checkout-container .mp-brick {
    border-radius: 8px;
    overflow: hidden;
}
