body {
    font-family: 'Fredoka', sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('../assets/Plain background.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #333;
    text-align: center;
    overflow-x: hidden;
    font-size: 1vw;
}

.logo-container {
    padding-top: 10px;
    position: relative;
    margin-bottom: 0px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hello-ncr-top {
    max-width: 17em;
    margin-bottom: 1.1em;
    position: relative;
    z-index: 2;
}

.logo {
    max-width: 90%;
    width: 27em;
    height: auto;
    position: relative;
    animation: pulse 4s ease-in-out infinite;
}

.glow-text {
    font-weight: 700;
    text-shadow: 0 0 1em rgba(255, 107, 107, 0.5), 0 0 2em rgba(92, 124, 250, 0.5), 0 0 3em rgba(252, 196, 25, 0.5);
    background: linear-gradient(90deg, #ff6b6b, #5c7cfa, #fcc419);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    word-wrap: break-word;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.wave-container {
    position: fixed;
    top: 70%;
    left: 0;
    width: 100vw;
    height: 15em;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.hashtags-wave {
    position: relative;
    width: 100%;
    height: 100%;
}

.hashtags-wave a {
    position: absolute;
    text-decoration: none;
    white-space: nowrap;
    pointer-events: auto;
}

.container {
    padding: 0 4em 4em;
    width: 90%;
    max-width: 100em;
    margin: 0 auto 5em;
    display: inline-block;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hold-tight {
    color: #4B3621; /* Brown */
    font-size: 2.1em;
}

.punchline {
    font-size: 1.8em;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.line.green { color: #228B22; }
.line.orange { color: #FF8C00; }
.line.reddish-pink { color: #E91E63; }

h1, p, #countdown, .social-media {
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 1em;
    color: #000;
}

p {
    font-size: 1.5em;
    margin-bottom: 2em;
}

.social-media a {
    margin: 0 1em;
    display: inline-block;
}

.social-media img {
    width: 4em;
    transition: transform 0.3s;
}

.social-media img:hover {
    transform: scale(1.1);
}

#countdown {
    font-size: 4em;
    font-weight: bold;
    margin-bottom: 1em;
    color: #000;
}

.flip-clock-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 2em;
}

@media (max-width: 1079px), (max-height: 719px) {
    body {
        background-image: none;
        background-color: #f8f8f8;
        font-size: 2vw;
    }
    .flip-clock-container {
        transform: scale(0.8);
    }
}

@media (max-width: 600px) {
    body {
        font-size: 3vw;
    }
    .flip-clock-container {
        transform: scale(0.6);
    }
}
