* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #001f3f, #003366);
    color: #ffffff;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Estilo para o container de partículas */
.background-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(45deg, #0a192f, #112240);
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-section {
    margin-bottom: 4rem;
    position: relative;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.95), rgba(17, 34, 64, 0.95));
    overflow: hidden;
    padding: 3rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text {
    text-align: center;
    max-width: 800px;
}

h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, #ffffff, #00ffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: titleReveal 1.5s ease-out forwards, titleGlow 3s ease-in-out infinite;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    font-weight: 800;
    letter-spacing: 2px;
}

@keyframes titleReveal {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 255, 255, 0.7),
                    0 0 30px rgba(0, 255, 255, 0.5),
                    0 0 40px rgba(0, 255, 255, 0.3);
    }
}

.subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0;
    animation: subtitleFade 1.5s ease-out 0.5s forwards;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: 1px;
}

@keyframes subtitleFade {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.event-info {
    text-align: center;
    margin-bottom: 2rem;
}

.date-location {
    background-color: #000;
    padding: 1rem;
    border-radius: 8px;
    display: inline-block;
}

.date-location h3 {
    color: #fff;
    font-size: 1.2rem;
}

.gallery {
    margin-bottom: 3rem;
}

.image-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}

.secondary-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.secondary-images img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
    object-position: center;
}

.secondary-images img:hover {
    transform: scale(1.05);
}

.secondary-images img:last-child {
    object-fit: contain;
    background-color: transparent;
}

.form-section {
    background: linear-gradient(135deg, #001a3f, #0066ff);
    padding: 3rem;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.2);
    text-align: center;
}

h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
    font-size: 2rem;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    padding-left: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: #00a2ff;
    box-shadow: 0 0 10px rgba(0, 162, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.15);
}

.form-group input.error {
    border-color: #ff3333;
    box-shadow: 0 0 10px rgba(255, 51, 51, 0.3);
}

.submit-button {
    width: 100%;
    max-width: 300px;
    padding: 1.2rem;
    border: none;
    border-radius: 8px;
    background-color: #fff;
    color: #0066ff;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto;
    display: block;
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

button {
    width: 100%;
    padding: 1.2rem;
    border: none;
    border-radius: 8px;
    background-color: #fff;
    color: #0066ff;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button:hover {
    background-color: #0066ff;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Estilos para o contador regressivo */
.countdown-section {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: transparent;
    border-radius: 15px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    background: linear-gradient(135deg, rgba(0, 26, 63, 0.5), rgba(0, 102, 255, 0.5));
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.2);
    max-width: 600px;
    margin: 2rem auto;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #0066ff, #00a2ff);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    width: calc(25% - 1.5rem);
    min-width: 70px;
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
    transition: transform 0.3s ease;
    margin: 0.5rem;
    text-align: center;
    height: 80px;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

.countdown-item .number {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-item .text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    margin-top: 0;
    letter-spacing: 1px;
    line-height: 1;
}

/* Animações de entrada */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Efeitos hover melhorados */
.form-section {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.3);
}

button {
    position: relative;
    overflow: hidden;
}

button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

button:hover::after {
    width: 300%;
    height: 300%;
}

/* Estilos para o formulário oculto */
.hidden {
    display: none;
}

.form-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.form-content.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Estilo para o botão CTA principal */
.cta-button {
    margin-top: 2rem;
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
    background: linear-gradient(45deg, #64ffda, #00b5d8);
    border-radius: 50px;
    animation: pulse 2s infinite;
    width: fit-content;
    color: #0a192f;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: block;
    text-align: center;
    margin: 2rem auto;
    transition: all 0.3s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(0, 102, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0);
    }
}

.cta-button:hover {
    animation: none;
    transform: translateY(-3px);
    background: linear-gradient(45deg, #00b5d8, #64ffda);
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.3);
}

/* Ajuste para o formulário quando visível */
#cadastroForm {
    margin-top: 2rem;
    overflow: hidden;
}

/* Estilos para a seção Sobre */
.about-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 26, 63, 0.9), rgba(0, 102, 255, 0.9));
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.2);
}

.about-content {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.highlight {
    color: #00a2ff;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.about-story {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-story p {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-text p {
        font-size: 1rem;
    }

    .highlight {
        font-size: 1.2rem;
    }

    .about-story {
        padding: 1.5rem;
    }
}

/* Estilos para a estrutura do treinamento */
.training-structure {
    margin-bottom: 4rem;
    padding: 2rem;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.module {
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.95), rgba(28, 58, 107, 0.95));
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(100, 255, 218, 0.1);
    position: relative;
    overflow: hidden;
}

.module:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.2);
}

.module-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.module h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.module p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Adicionar efeito de brilho ao módulo específico */
.module:nth-child(4) {
    background: linear-gradient(135deg, rgba(28, 58, 107, 0.95), rgba(17, 34, 64, 0.95));
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.module:nth-child(4):hover {
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.3);
}

@media (max-width: 768px) {
    .modules-grid {
        grid-template-columns: 1fr;
    }

    .module {
        padding: 1.5rem;
    }

    .module h3 {
        font-size: 1.2rem;
    }
}

/* Estilos para a seção de benefícios */
.benefits-section {
    margin-bottom: 4rem;
    padding: 2rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.95), rgba(28, 58, 107, 0.95));
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.benefit-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
    }
}

.emoji-icon {
    font-size: 3rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .emoji-icon {
        font-size: 2.5rem;
    }
}

/* Ajuste para o contador na seção de evento */
.event-info .countdown {
    margin-top: 2rem;
}

/* Estilos para a seção hero */
.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    padding: 1rem;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.main-hero-image {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 5px 25px rgba(0, 162, 255, 0.3);
    transition: transform 0.3s ease;
}

.hero-image-container:hover .main-hero-image {
    transform: scale(1.02);
}

.hero-content {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 2rem;
    border-radius: 15px;
}

/* Adicionar um efeito de gradiente suave atrás da imagem */
.hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 26, 63, 0.1), rgba(0, 102, 255, 0.1));
    border-radius: 20px;
    z-index: -1;
}

@media (max-width: 768px) {
    .hero-content {
        gap: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }
}

/* Estilo específico para o botão CTA do hero */
.cta-button {
    margin-top: 2rem;
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
    background: linear-gradient(45deg, #64ffda, #00b5d8);
    border-radius: 50px;
    animation: pulse 2s infinite;
    width: fit-content;
    color: #0a192f;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: block;
    text-align: center;
    margin: 2rem auto;
    transition: all 0.3s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(0, 102, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0);
    }
}

.cta-button:hover {
    animation: none;
    transform: translateY(-3px);
    background: linear-gradient(45deg, #00b5d8, #64ffda);
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.3);
}

/* Estilos para a seção de contato e footer */
.contact-section {
    margin-top: 4rem;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 26, 63, 0.95), rgba(0, 102, 255, 0.95));
    border-radius: 15px;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info h2 {
    margin-bottom: 3rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item h3 {
    color: #00a2ff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-item p {
    color: #fff;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #00a2ff;
}

.footer-logo {
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.footer-bottom {
    margin-top: 4rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 0 0 15px 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .contact-section {
        margin-top: 3rem;
        padding: 3rem 0;
    }

    .contact-details {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        margin-top: 3rem;
    }
}

/* Estilo para o botão CTA da seção form */
#showFormBtn {
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
    background: linear-gradient(45deg, #64ffda, #00b5d8);
    border-radius: 50px;
    animation: pulse 2s infinite;
    width: auto;
    display: block;
    margin: 0 auto;
}

#showFormBtn:hover {
    animation: none;
    transform: translateY(-3px);
    background: linear-gradient(45deg, #00b5d8, #64ffda);
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.3);
}

/* Estilos para o formulário flutuante */
.form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.form-overlay.visible {
    display: flex;
}

.floating-form {
    background: linear-gradient(135deg, #0a192f, #112240);
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    z-index: 1001;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.form-overlay.visible .floating-form {
    opacity: 1;
    transform: translateY(0);
}

/* Ajuste para o formulário existente */
.form-section {
    background: linear-gradient(135deg, #001a3f, #0066ff);
    padding: 3rem;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.2);
}

.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, #0066ff, #00a2ff);
    opacity: 0.1;
    border-radius: 40%;
    transform-origin: 50% 48%;
    animation: wave 25s infinite linear;
    z-index: -1;
}

.wave:nth-child(2) {
    background: linear-gradient(45deg, #004e92, #0066ff);
    opacity: 0.08;
    animation: wave 30s infinite linear;
}

.wave:nth-child(3) {
    background: linear-gradient(45deg, #000428, #004e92);
    opacity: 0.05;
    animation: wave 35s infinite linear;
}

@keyframes wave {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent, rgba(10, 25, 47, 0.8));
    z-index: 1;
}

.bubble {
    position: absolute;
    background: linear-gradient(45deg, rgba(100, 255, 218, 0.05), rgba(100, 255, 218, 0.1));
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
    z-index: 0;
}

.bubble:nth-child(1) {
    width: 300px;
    height: 300px;
    left: 10%;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 200px;
    height: 200px;
    left: 40%;
    animation-delay: -5s;
}

.bubble:nth-child(3) {
    width: 150px;
    height: 150px;
    left: 70%;
    animation-delay: -10s;
}

.bubble:nth-child(4) {
    width: 250px;
    height: 250px;
    left: 20%;
    animation-delay: -15s;
}

.bubble:nth-child(5) {
    width: 180px;
    height: 180px;
    left: 50%;
    animation-delay: -7s;
}

.bubble:nth-child(6) {
    width: 220px;
    height: 220px;
    left: 80%;
    animation-delay: -12s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(-20px) rotate(0deg);
    }
    25% {
        transform: translateY(20px) rotate(90deg);
    }
    50% {
        transform: translateY(40px) rotate(180deg);
    }
    75% {
        transform: translateY(20px) rotate(270deg);
    }
}

.submit-button.loading {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.submit-button.loading::after {
    content: '...';
    display: inline-block;
    margin-left: 5px;
}

.input-help {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-top: 0.5rem;
    text-align: left;
}

/* Ajustes para mobile */
@media (max-width: 480px) {
    .countdown {
        gap: 0.5rem;
        padding: 1rem;
        justify-content: center;
        width: 90%;
    }

    .countdown-item {
        width: calc(25% - 0.5rem);
        min-width: 65px;
        padding: 0.6rem;
        margin: 0.25rem 0;
        height: 70px;
    }

    .countdown-item .number {
        font-size: 1.5rem;
        line-height: 1;
        margin-bottom: 3px;
    }

    .countdown-item .text {
        font-size: 0.7rem;
        line-height: 1;
        margin-top: 0;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 360px) {
    .countdown {
        width: 95%;
        padding: 0.5rem;
        gap: 0.25rem;
    }

    .countdown-item {
        width: calc(25% - 0.25rem);
        min-width: 60px;
        padding: 0.5rem;
        height: 65px;
    }

    .countdown-item .number {
        font-size: 1.2rem;
        margin-bottom: 2px;
    }

    .countdown-item .text {
        font-size: 0.6rem;
    }
} 