.countdown-container {
    background: rgb(255 237 237);
    border-radius: 20px;
    padding: 40px 30px 60px 30px;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.countdown-header {
    text-align: center;
    margin-bottom: 15px;
}

.countdown-title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-top: unset !important;
}

.countdown-subtitle {
    font-size: 14px;
    color: #718096;
}

.pulse-icon {
    display: inline-block;
}

.countdown-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
}

.countdown-value {
    background: #e32402;
    color: white;
    font-size: 42px;
    font-weight: bold;
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    position: relative;
    transition: transform 0.3s ease;
}

.countdown-value:hover {
    transform: translateY(-5px);
}

.countdown-label {
    font-size: 11px;
    text-transform: uppercase;
    color: black;
    position: absolute;
    bottom: -35%;
}

.separator {
    font-size: 30px;
    color: black;
    align-self: center;
}

.expired-message {
    display: none;
    text-align: center;
    padding: 20px;
}

.expired-message h3 {
    color: #e53e3e;
    font-size: 28px;
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .countdown-wrapper {
        gap: 10px;
    }

    .countdown-value {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .separator {
        font-size: 20px;
    }

    .countdown-container {
        padding: 30px 20px 45px 20px;
    }

    .countdown-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .countdown-wrapper {
        gap: 8px;
    }

    .countdown-value {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .separator {
        font-size: 18px;
    }

    .countdown-label {
        font-size: 9px;
    }
}

@media (max-width: 400px) {
    .countdown-wrapper {
        gap: 5px;
    }

    .countdown-value {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .countdown-container {
        padding: 25px 15px 35px 15px;
    }

    .countdown-title {
        font-size: 16px;
    }

    .countdown-subtitle {
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .countdown-value {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .separator {
        font-size: 16px;
    }

    .countdown-label {
        font-size: 8px;
    }
}

/* Foundation */
.container-foundation {
    /* max-width: 400px; */
    margin: auto;
    font-family: 'Roboto Slab',serif;
    margin-top: 30px;
}

.foundation-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #16a34a;
    margin-bottom: 10px;
}

.foundation-title a {
    color: red;
    font-weight: bold;
    text-decoration: none;
}

.foundation-desc {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 25px;
}

.foundation-body {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.foundation-body {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.foundation-body img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 10px;
}

.foundation-body .balance {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.foundation-body .balance #live-value {
    font-size: 30px;
    font-weight: 700;
    color: #16a34a;
    margin: 10px 0;
}

.foundation-body .balance #live-growth {
    background: #dcfce7;
    color: #16a34a;
    font-weight: 600;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 14px;
}

.foundation-body .info {
    color: #555;
    font-size: 16px;
}

.foundation-top3 {
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.top3-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.top3-num {
    padding: 4px 10px;
    border-radius: 50%;
    font-weight: 600;
    font-size: 14px;
    margin-right: 5px;
}
/* END Foundation */