/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0 0px;
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}









/* all button design */
.custom-buttona {
    margin-top: 5px;
    display: inline-block;
    font-size: 18px; 
    font-weight: 549; 
    color: #000000; 
    background-color: #f5f5f5; 
    border: none;
    border-radius: 5px;
    text-decoration: none; 
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease; 
    padding: 4px 25px;
    border: 2px solid #A37E2D; 
}

.custom-buttona:hover {
    background-color: #A37E2D; 
    color: #ffffff; 
    border: 2px solid #7DA908; 
}












/* design page */
/* coming soon */
.design_page__bg {
    position: relative;
    width: 100vw;
    height: 500px; 
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Overlay for the colored circles and semi-transparency */
.design_page__overlay {
    position: absolute;
    width: 100vw;
    height: 500px; 
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.design_page__circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
}
.design_page__circle--green { width: 60px; height: 60px; background: #7DA908; }
.design_page__circle--yellow { width: 75px; height: 75px; background: #A37E2D; }
.design_page__circle--blue { width: 50px; height: 50px; background: #90941A; }
.design_page__circle--red { width: 40px; height: 40px; background: #8C9B50; }

.design_page {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100vw;
}

/* Title and underline */
.design_page__title {
    margin-bottom: 40px;
}
.design_page__subtitle {
    letter-spacing: 0.17em;
    font-weight: 600;
    font-size: 30px;
    color: #000000;
    margin-bottom: 10px;
}
.design_page__underline {
    width: 400px;
    height: 3px;
    background: #A37E2D;
    margin: 0 auto 12px auto;
    border-radius: 2px;
}

/* Countdown section */
.design_page__countdown {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 32px;
}
.design_page__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.design_page__num {
    font-size: 70px;
    min-width: 100px;
    font-weight: 700;
    color: #000000;
    text-shadow: 0 4px 24px #7DA908;
    letter-spacing: 0.01em;
    line-height: 1;
}
.design_page__label {
    font-size: 22px;
    color: #000000;
    letter-spacing: 0.08em;
    margin-top: 12px;
    font-weight: 300;
}

/* Description text */
.design_page__desc {
    font-size: 18px;
    color: #7DA908;
    margin-top: 12px;
    font-weight: 400;
    letter-spacing: 0.03em;
}

/* Responsive */
@media (max-width: 700px) {
    .design_page__bg, .design_page__overlay {
        height: 500px; 
        min-height: 500px;
    }
    .design_page__countdown {
        gap: 18px;
    }
    .design_page__num {
        font-size: 12vw;
        min-width: 50px;
    }
    .design_page__item {
        min-width: 70px;
    }
}