/* Add this temporary test style at the top */
.launch-section {
    margin-top: 25px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.launch-description {
    text-align: center;
    width: 635px;
    margin: 0 auto 12px;
    padding: 0 25px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
}

.countdown-text {
    font-family: 'Inter', sans-serif;
    background: rgba(0, 0, 0, 0.9);
    padding: 0 30px;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    gap: 4px;
}

.time-value {
    font-size: 38px;
    font-weight: 700;
    background: linear-gradient(45deg, #ff4d7c, #4caf50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.time-label {
    font-size: 12px;
    margin-right: 8px;
}

.separator {
    font-size: 32px;
    margin: 0 3px;
}

.countdown-container {
    margin-top: 20px;
}

.time-label {
    font-size: 14px;
    color: #C1C0D8;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-right: 10px;
}

.separator {
    color: #ff4d7c;
    font-size: 36px;
    font-weight: 700;
    margin: 0 5px;
    opacity: 0.8;
    text-shadow: 0 0 10px rgba(255, 77, 124, 0.5);
}
.cta-button {
    margin-top: 15px;
    padding: 8px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #C1C0D8;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: -1000%;
    background: conic-gradient(from 90deg at 50% 50%, #E2CBFF 0%, #393BB2 50%, #E2CBFF 100%);
    animation: spin 2s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 19px;
    z-index: 1;
}

.cta-button span {
    position: relative;
    z-index: 2;
}

.cta-button:hover {
    color: white;
    transform: scale(1.02);
}

.cta-button:hover::before {
    opacity: 1;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
    text-shadow: 0 0 30px rgba(255, 77, 124, 0.3);
}

.launch-title, .launch-subtitle {
    background: linear-gradient(45deg, #ff4d7c, #4caf50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Inter, sans-serif;
}

.launch-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.launch-subtitle {
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.countdown-circle {
    width: 120px;
    height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    border: 2px solid #333;
}

/* Corrected progress lines */
.days-circle {
    border: 2px solid #ffffff;
    clip-path: circle(50%);
    background: conic-gradient(
        #ffffff 0deg 270deg,
        #333 270deg 360deg
    );
}

.hours-circle {
    border: 2px solid #ff4d7c;
    clip-path: circle(50%);
    background: conic-gradient(
        #ff4d7c 0deg 45deg,
        #333 45deg 360deg
    );
}

.minutes-circle {
    border: 2px solid #ffeb3b;
    clip-path: circle(50%);
    background: conic-gradient(
        #ffeb3b 0deg 180deg,
        #333 180deg 360deg
    );
}

.seconds-circle {
    border: 2px solid #4caf50;
    clip-path: circle(50%);
    background: conic-gradient(
        #4caf50 0deg 315deg,
        #333 315deg 360deg
    );
}

/* Fixed glowing dots */
.days-circle::after,
.hours-circle::after,
.minutes-circle::after,
.seconds-circle::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    filter: blur(1px);
}

.days-circle::after {
    background: #ffffff;
    box-shadow: 0 0 8px 2px #ffffff;
    transform: rotate(270deg) translateX(60px);
}

.hours-circle::after {
    background: #ff4d7c;
    box-shadow: 0 0 8px 2px #ff4d7c;
    transform: rotate(45deg) translateX(60px);
}

.minutes-circle::after {
    background: #ffeb3b;
    box-shadow: 0 0 8px 2px #ffeb3b;
    transform: rotate(180deg) translateX(60px);
}

.seconds-circle::after {
    background: #4caf50;
    box-shadow: 0 0 8px 2px #4caf50;
    transform: rotate(315deg) translateX(60px);
}

.inner {
    width: 110px;
    height: 110px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.countdown-circle span:first-child {
    font-size: 48px;
    font-weight: 700;
    color: #C1C0D8;
    margin-bottom: -5px;
}

.countdown-circle .label {
    font-size: 12px;
    color: #C1C0D8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-circle span {
    color: #C1C0D8;
    font-family: Inter, sans-serif;
}

.countdown-circle span:first-child {
    font-size: 48px;
    font-weight: 700;
}

.countdown-circle .label {
    font-size: 14px;
    margin-top: 5px;
}
.countdown-container {
    margin-top: 30px;
}

.countdown-text {
    font-family: 'Inter', sans-serif;
    background: rgba(0, 0, 0, 0.9);
    padding: 12px 30px;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    gap: 4px;
}

.time-value {
    font-size: 38px;
    font-weight: 700;
    background: linear-gradient(45deg, #ff4d7c, #4caf50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.time-label {
    font-size: 12px;
    margin-right: 8px;
}

.separator {
    font-size: 32px;
    margin: 0 3px;
}

.countdown-container {
    margin-top: 20px;
}

.time-label {
    font-size: 14px;
    color: #C1C0D8;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-right: 10px;
}

.separator {
    color: #ff4d7c;
    font-size: 36px;
    font-weight: 700;
    margin: 0 5px;
    opacity: 0.8;
    text-shadow: 0 0 10px rgba(255, 77, 124, 0.5);
}
.cta-button {
    margin-top: 20px;
    padding: 12px 30px;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(45deg, #ff4d7c, #4caf50);
    border-radius: 8px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 77, 124, 0.3);
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.5);
    background: linear-gradient(45deg, #4caf50, #ff4d7c);
}

.cta-button:active {
    transform: translateY(1px);
}