/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0 0px; /* Add padding to the left and right sides */
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}









/* all button design */
.custom-buttona {
    margin-top: 5px;
    display: inline-block;
    font-size: 18px; /* Default font size */
    font-weight: 549; /* Default font weight */
    color: #000000; /* Default text color */
    background-color: #f5f5f5; /* Default background color */
    border: none;
    border-radius: 5px;
    text-decoration: none; /* Remove underline from link */
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effect */
    padding: 4px 25px;
    border: 2px solid #A37E2D; /* Add a border on hover */
}

.custom-buttona:hover {
    background-color: #A37E2D; /* Slightly darker on hover */
    color: #ffffff; /* Change text color on hover */
    border: 2px solid #7DA908; /* Add a border on hover */
}












/* design page */
/* coming soon */
.design_page__bg {
    position: relative;
    width: 100vw;
    height: 500px; /* Reduced height */
    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; /* Match reduced height */
    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; /* Maintain reduced height on mobile */
        min-height: 500px;
    }
    .design_page__countdown {
        gap: 18px;
    }
    .design_page__num {
        font-size: 12vw;
        min-width: 50px;
    }
    .design_page__item {
        min-width: 70px;
    }
}