/* Base Styles & Variables */
:root {
    --primary-color: #86100E;
    --primary-dark: #3a0404;
    --text-color: #fdfbf7;
    --text-light: #d1cbbd;
    --bg-color: #F4B9B9;
    --accent-color: #BF953F;
    --sakura-color: #ffb7c5;
    --sakura-dark: #ff99aa;

    --gold-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    --gold-gradient-text: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);

    --red-gradient: linear-gradient(135deg, #86100E, #a01c1a, #5a0a09, #86100E, #3d0706);
    --red-gradient-text: linear-gradient(to right, #86100E, #a01c1a, #5a0a09, #86100E, #a01c1a);

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    background-image: url('sampleg.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.title {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-color);
}

.pink-text {
    color: #F4B9B9 !important;
}

.gold-text {
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.floral-icon {
    font-size: 2rem;
    margin: 1rem 0;
    opacity: 0.9;
}

/* Typography Classes */
.title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-color);
    margin-bottom: 2rem;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
    color: var(--text-color);
    display: inline-block;
    width: 100%;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--text-color);
    opacity: 0.5;
}

/* Sections */
.hidden {
    display: none !important;
    opacity: 0;
}

.invitation-content {
    opacity: 1;
    transition: opacity 1.5s ease-in;
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(20, 2, 2, 0.7);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    position: relative;
    border: none;
    overflow: hidden;
}

.fade-in {
    animation: fadeIn 1.5s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.section {
    padding: 4rem 2rem;
    position: relative;
}

.section:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: var(--red-gradient);
    opacity: 0.3;
}

/* -------------- DECORATIVE CORNERS -------------- */
.gold-corner {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.8;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 0;
    display: flex;
    gap: 5px;
}

.gold-corner i {
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.1));
}

.gold-corner i.flipped {
    transform: scaleX(-1) rotate(-30deg);
}

.top-left {
    top: 20px;
    left: 20px;
    transform: rotate(45deg);
}

.top-right {
    top: 20px;
    right: 20px;
    transform: rotate(135deg);
}

.bottom-left {
    bottom: 20px;
    left: 20px;
    transform: rotate(-45deg);
}

.bottom-right {
    bottom: 20px;
    right: 20px;
    transform: rotate(-135deg);
}


/* -------------- ENVELOPE OVERLAY -------------- */
.envelope-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('sampleg.png');
    /* Subtle texture for depth */
    background-image: url('https://www.transparenttextures.com/patterns/dark-matter.png');
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.envelope {
    position: relative;
    width: 320px;
    height: 220px;
    background: #d69191; /* Deeper blush for inside shadow */
    background-image: url('https://www.transparenttextures.com/patterns/clean-textile.png');
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
    animation: shake 3s infinite;
}

.envelope:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 35px 65px rgba(0, 0, 0, 0.8), 0 0 20px rgba(253, 251, 247, 0.1);
}

.envelope-flap {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 110px 160px;
    border-color: #fceaea transparent transparent transparent;
    border-radius: 4px 4px 0 0;
    z-index: 3;
    transform-origin: top;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.4));
}

.envelope-body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #d69191;
    background-image: url('https://www.transparenttextures.com/patterns/clean-textile.png');
    z-index: 1;
    border-radius: 4px;
}

.envelope-front {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 160px 110px 160px;
    border-color: transparent transparent #F4B9B9 transparent;
    z-index: 2;
}

.envelope::before,
.envelope::after {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    z-index: 2;
}

.envelope::before {
    left: 0;
    border-width: 220px 160px 0 0;
    border-color: #f2cece transparent transparent transparent;
}

.envelope::after {
    right: 0;
    border-width: 0 160px 220px 0;
    border-color: transparent transparent #f2cece transparent;
}

.wax-seal {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: radial-gradient(circle at 30% 30%, #a01c1a, #86100E 60%, #4a0000);
    border-radius: 50%;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4), inset 0 0 8px rgba(90, 10, 9, 0.8);
    border: 1px solid #4a0000;
}

.initials {
    color: #fcf1d4;
    font-family: 'Great Vibes', cursive;
    font-size: 1.6rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

.reserved-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 5;
    color: #86100E;
    font-family: var(--font-heading);
    pointer-events: none;
    width: 90%;
}

.reserved-label p {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
    margin: 0;
    letter-spacing: 1px;
}

.reserved-label h2 {
    font-family: 'Great Vibes', cursive;
    color: var(--accent-color);
    font-size: 2rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-weight: 400;
}

.open-text {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #86100E;
    font-size: 2.2rem;
    opacity: 0.9;
    animation: pulse 2.5s infinite;
    font-family: 'Great Vibes', cursive;
    letter-spacing: 2px;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 0.5;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(134, 16, 14, 0.5); }
    50% { box-shadow: 0 0 20px rgba(134, 16, 14, 0.8), 0 0 30px rgba(134, 16, 14, 0.6); }
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }
    50% { text-shadow: 0 0 20px rgba(212, 175, 55, 1), 0 0 30px rgba(212, 175, 55, 0.8); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

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

/* Floating floral icon */
.floral-icon {
    animation: float 3s ease-in-out infinite;
}

/* Rotating corner icons */
.gold-corner i {
    animation: rotate 5s linear infinite;
}

/* Blinking cursor */
.cursor {
    animation: blink 1s infinite;
    color: var(--primary-color);
    /* Deep Red to match theme */
    -webkit-text-fill-color: var(--primary-color);
    display: inline-block;
}

/* Staggered fade-in for subtitles */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.delay-1 {
    animation-delay: 4s; /* After typewriter */
}

.delay-2 {
    animation-delay: 5s;
}

/* Shimmer effect on title */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 185, 185, 0.4), transparent);
    animation: shimmer 3s infinite;
    animation-delay: 6s; /* After subtitles */
}

/* Pulse glow on date box */
.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
    animation-delay: 6.5s;
}

/* Bounce effect on carousel nav arrows */
.owl-theme .owl-nav [class*='owl-']:hover {
    animation: bounce 0.6s ease;
}

/* Envelope Opening Animation Classes */
.envelope.opening .envelope-flap {
    transform: rotateX(180deg);
}

.envelope.opening .wax-seal {
    opacity: 0;
    transition: opacity 0.3s;
}

.envelope.opening {
    animation: none;
}

.envelope-overlay.fly-up {
    transform: translateY(-100vh);
    opacity: 0;
}

/* -------------- HERO SECTION -------------- */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    background: transparent;
}

/* Canva Style Typography & Layout overrides */
.canva-style .bismillah {
    display: block;
    margin: 0 auto 15px auto;
    max-width: 200px;
    height: auto;
}
.canva-style .intro-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.canva-style .we-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 3px;
}
.canva-style .parents-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
    font-family: var(--font-heading);
}
.canva-style .parents-column {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.canva-style .parents-title {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-light);
}
.canva-style .parent-name {
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.canva-style .invites-text {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.canva-style .script-font {
    font-family: 'Great Vibes', cursive !important;
    font-size: 5rem;
    text-transform: none;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 10px;
    letter-spacing: 2px;
    line-height: 1.2;
}
.canva-style .credentials {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
    line-height: 1.6;
}
.canva-style .and-script {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    margin: 5px 0;
    text-transform: lowercase;
    color: var(--text-light);
}
.canva-style .date-section {
    font-family: var(--font-heading);
    color: var(--text-color);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.canva-style .month {
    font-size: 1.2rem;
    letter-spacing: 6px;
    margin-bottom: 5px;
}
.canva-style .date-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 5px;
}
.canva-style .day, .canva-style .time {
    font-size: 1rem;
    padding: 8px 0;
    border-top: 1px solid rgba(253, 251, 247, 0.4);
    border-bottom: 1px solid rgba(253, 251, 247, 0.4);
    letter-spacing: 3px;
}
.canva-style .date-number {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
}
.canva-style .year {
    font-size: 1.2rem;
    letter-spacing: 6px;
}
@media (max-width: 600px) {
    .canva-style .parents-grid {
        flex-direction: column;
        gap: 20px;
    }
    .canva-style .script-font {
        font-size: 3.5rem;
    }
    .canva-style .date-row {
        gap: 10px;
    }
    .canva-style .day, .canva-style .time {
        font-size: 0.8rem;
        padding: 5px 0;
    }
    .canva-style .date-number {
        font-size: 2.5rem;
    }
}

.hero-text {
    animation: fadeUp 1s ease-out 1s both;
    /* Delayed start after envelope */
    position: relative;
    z-index: 10;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.date-box {
    margin-top: 2rem;
    padding: 1.5rem 2.5rem;
    border: 2px solid transparent;
    border-image: var(--red-gradient) 1;
    display: inline-block;
    background-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(134, 16, 14, 0.3);
    position: relative;
}

.date-box::before,
.date-box::after {
    content: '\f4d8';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.date-box::before {
    left: 10px;
}

.date-box::after {
    right: 10px;
    transform: translateY(-50%) scaleX(-1);
}

.date {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--bg-color);
    margin: 0;
    font-weight: 600;
}








/* -------------- ENTOURAGE SECTION -------------- */
.entourage-section {
    background-color: transparent;
    text-align: center;
}

.entourage-group {
    margin-bottom: 1rem;
    position: relative;
}

.entourage-group h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
    letter-spacing: 1px;
}

.entourage-list {
    list-style: none;
    padding: 0;
}

.entourage-list li {
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(253, 251, 247, 0.2);
    opacity: 0.9;
    margin: 0 auto;
    width: 80%;
    max-width: 320px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: slideInLeft 0.8s ease forwards;
    animation-delay: calc(var(--i, 0) * 0.2s);
}

.entourage-list li:last-child {
    border-bottom: none;
}

.entourage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

/* -------------- LOCATION SECTION -------------- */
.location-section {
    background-color: transparent;
    text-align: center;
}

.location-details {
    margin-bottom: 2rem;
}

.venue-name {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    letter-spacing: 1px;
}

.venue-address {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1.2rem;
}

.time {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-light);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.map-container {
    height: 350px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(253, 251, 247, 0.3);
    z-index: 1;
    /* Keep map below overlays if any */
}

/* -------------- FOOTER -------------- */
.footer {
    text-align: center;
    padding: 4rem 1rem;
    background-color: transparent;
    color: var(--text-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background-color: var(--text-color);
    opacity: 0.3;
}

.footer p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-transform: uppercase;
}

.hashtag {
    font-family: var(--font-heading) !important;
    font-size: 1.2rem !important;
    font-style: italic !important;
    letter-spacing: 3px;
    color: var(--text-light) !important;
    margin-top: 10px;
}

.creator-signature {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 3rem !important;
    opacity: 0.5;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.creator-signature span {
    font-family: 'Great Vibes', cursive;
    font-size: 1.2rem;
    text-transform: none;
    letter-spacing: 1px;
    color: var(--text-color);
    margin-left: 5px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.creator-signature a {
    text-decoration: none;
    color: inherit;
}

.creator-signature a:hover span {
    opacity: 1;
    text-shadow: 0 0 8px rgba(253, 251, 247, 0.8);
}


/* -------------- MEDIA QUERIES -------------- */
@media (min-width: 768px) {
    .title {
        font-size: 4.8rem;
    }

    .entourage-grid {
        grid-template-columns: 1fr 1fr;
    }

    .carousel-slide img {
        height: 70vh;
    }
}

/* -------------- LIVELY ENHANCEMENTS -------------- */

/* Particles System */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--sakura-color);
    opacity: 0.6;
    border-radius: 90% 0 90% 50%; /* Petal shape */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    animation: fall linear infinite;
}

.particle:nth-child(even) {
    background: var(--sakura-dark);
}

@keyframes fall {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    25% {
        transform: translateY(20vh) translateX(25px) rotate(45deg);
    }
    50% {
        transform: translateY(50vh) translateX(-25px) rotate(180deg);
    }
    75% {
        transform: translateY(80vh) translateX(25px) rotate(360deg);
    }
    100% {
        transform: translateY(110vh) translateX(0) rotate(720deg);
        opacity: 0;
    }
}

/* Countdown Section */
.countdown-section {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(134, 16, 14, 0.15);
    border: 1px solid rgba(191, 149, 63, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.countdown-label {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item .number {
    font-family: 'Times New Roman', serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(191, 149, 63, 0.3);
}

.countdown-item .label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-top: 5px;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Parallax & Background Bloom */
.invitation-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(134, 16, 14, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: rotate 20s linear infinite;
}

/* Enhanced Lists */
.entourage-list li {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.entourage-list li:hover {
    color: var(--accent-color);
    transform: scale(1.05) translateZ(0);
    letter-spacing: 4px;
    text-shadow: 0 0 15px rgba(191, 149, 63, 0.4);
}

@media (max-width: 600px) {
    .countdown-item .number {
        font-size: 1.8rem;
    }
    .countdown-item .label {
        font-size: 0.6rem;
    }
}