* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050508;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    perspective: 1000px;
}

/* Background animated orbs for modern glassmorphism feel */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    filter: blur(90px);
    opacity: 0.5;
    border-radius: 50%;
    animation: float 25s infinite alternate ease-in-out;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    top: -15%;
    left: -10%;
    animation-duration: 22s;
}

.blob-2 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    bottom: -15%;
    right: -5%;
    animation-delay: -5s;
    animation-duration: 18s;
}

.blob-3 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #2af598 0%, #009efd 100%);
    top: 30%;
    left: 40%;
    animation-delay: -10s;
    opacity: 0.3;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    50% {
        transform: translate(150px, 100px) scale(1.1) rotate(180deg);
    }

    100% {
        transform: translate(-50px, -150px) scale(1.2) rotate(360deg);
    }
}

/* Main Container */
.container {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 950px;
    transform-style: preserve-3d;
}

.content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7), inset 0 0 20px rgba(255, 255, 255, 0.02);
    text-align: center;
    transform: translateZ(50px);
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Typography */
.sub-title {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #4facfe;
    margin-bottom: 0.5rem;
    font-weight: 700;
    transform: translateZ(30px);
    text-shadow: 0 0 10px rgba(79, 172, 254, 0.5);
}

.title-3d {
    font-family: 'Orbitron', sans-serif;
    font-size: 6.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: inline-block;
    letter-spacing: 2px;

    /* True 3D Text Effect */
    color: #ffffff;
    text-shadow:
        0 1px 0 #cccccc,
        0 2px 0 #c9c9c9,
        0 3px 0 #bbbbbb,
        0 4px 0 #b9b9b9,
        0 5px 0 #aaaaaa,
        0 6px 0 #999999,
        0 7px 0 #888888,
        0 8px 1px rgba(0, 0, 0, 0.1),
        0 0 10px rgba(0, 0, 0, 0.1),
        0 1px 5px rgba(0, 0, 0, 0.3),
        0 3px 8px rgba(0, 0, 0, 0.2),
        0 8px 15px rgba(0, 0, 0, 0.3),
        0 15px 20px rgba(0, 0, 0, 0.2),
        0 30px 40px rgba(0, 0, 0, 0.15);
    transform: translateZ(80px);
}

.description {
    font-size: 1.25rem;
    color: #d1d1d1;
    margin-bottom: 3.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 500;
    transform: translateZ(40px);
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    transform: translateZ(50px);
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    min-width: 120px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.time-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.time {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #00f2fe;
    text-shadow: 0 0 15px rgba(0, 242, 254, 0.6);
    line-height: 1;
}

.label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999999;
    margin-top: 0.8rem;
    font-weight: 700;
}

.colon {
    font-size: 3rem;
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    animation: blink 1s infinite alternate;
    line-height: 1;
    margin-bottom: 2rem;
}

@keyframes blink {
    0% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }

    100% {
        opacity: 0.1;
        text-shadow: none;
    }
}

/* Notify Section */
.notify-section {
    transform: translateZ(30px);
}

.notify-section p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #b3b3b3;
    font-weight: 700;
    letter-spacing: 1px;
}

.notify-form {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.notify-form input {
    padding: 1.2rem 1.8rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-size: 1.1rem;
    outline: none;
    width: 350px;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

.notify-form input::placeholder {
    color: #888;
}

.notify-form input:focus {
    border-color: #00f2fe;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2), inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

.notify-form button {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 20px rgba(0, 168, 255, 0.2);
}

.notify-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 242, 254, 0.4);
    background: linear-gradient(135deg, #00a4ff 0%, #3a9cff 100%);
}

.notify-form button:active {
    transform: translateY(1px);
    box-shadow: 0 5px 10px rgba(0, 242, 254, 0.3);
}

.notify-message {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #2af598;
    font-weight: 600;
}

.notify-message.error {
    color: #f5576c;
}

/* Responsive */
@media (max-width: 900px) {
    .content {
        padding: 3rem 2rem;
        transform: translateZ(30px);
    }

    .title-3d {
        font-size: 5rem;
        transform: translateZ(50px);
    }

    .time {
        font-size: 2.8rem;
    }

    .time-box {
        min-width: 100px;
        padding: 1.2rem;
    }

    .notify-form input {
        width: 280px;
    }
}

@media (max-width: 600px) {
    body {
        padding: 20px 0;
        overflow-x: hidden;
    }

    .container {
        width: 95%;
        perspective: none;
    }

    .content {
        padding: 2rem 1.2rem;
        transform: none !important;
        border-radius: 20px;
    }

    .title-3d {
        font-size: 3rem;
        transform: none !important;
        margin-bottom: 1rem;
        /* Reduce heavy text shadow for mobile performance */
        text-shadow:
            0 1px 0 #cccccc,
            0 2px 0 #c9c9c9,
            0 3px 0 #bbbbbb,
            0 4px 0 #b9b9b9,
            0 5px 0 #aaaaaa,
            0 5px 10px rgba(0, 0, 0, 0.3);
    }

    .sub-title {
        font-size: 1.1rem;
        transform: none !important;
        letter-spacing: 3px;
    }

    .description {
        font-size: 1rem;
        transform: none !important;
        margin-bottom: 2rem;
        padding: 0 10px;
    }

    .countdown {
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: 2rem;
        transform: none !important;
    }

    .colon {
        display: none;
    }

    .time-box {
        min-width: 46%;
        padding: 1rem;
        margin-bottom: 8px;
        border-radius: 12px;
    }

    .time {
        font-size: 2.2rem;
    }

    .label {
        font-size: 0.8rem;
    }

    .notify-section {
        transform: none !important;
    }

    .notify-form {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .notify-form input {
        width: 100%;
        margin-bottom: 0.8rem;
        padding: 1rem 1.5rem;
    }

    .notify-form button {
        width: 100%;
        padding: 1rem 1.5rem;
    }

    /* Adjust background blobs for mobile */
    .blob-1 {
        width: 300px;
        height: 300px;
        top: -10%;
        left: -20%;
    }

    .blob-2 {
        width: 250px;
        height: 250px;
        bottom: -10%;
        right: -20%;
    }

    .blob-3 {
        width: 280px;
        height: 280px;
        top: 40%;
        left: 20%;
    }
}