@font-face {
    font-family: 'GRIFTER';
    src: url('fonts/GRIFTERBold.woff2') format('woff2'),
        url('fonts/GRIFTERBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #ffffff;
    --accent-color: #00d2ff;
    --text-color: #ffffff;
    --font-main: 'GRIFTER', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --overlay-color: rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}
.main-wrapper{
    width: 100%; 
    z-index: 2;
}
.content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 50px;
    height: calc(100vh - 65px);
    display: flex;
    flex-direction: column;
    margin: auto;
    top: 48px;
}

header {
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #ffffff;
    position: absolute;
    top: 0px;
    left: 0;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 250px;
}

.logo img {
    width: 100%;
}

.q-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-size: 18px;
    font-weight: 400;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 30px;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 1;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-family: var(--font-main);
    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 1;
}

.notify-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 60px;
    width: 100%;
    max-width: 500px;
}

.notify-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgb(255, 255, 255);
    border-radius: 50px;
    padding: 15px 25px;
    color: white;
    font-size: 14px;
    outline: none;
    backdrop-filter: blur(10px);
}

.notify-form button {
    background: linear-gradient(90deg, #00829d 0%, #004d5a 100%);
    border: none;
    border-radius: 50px;
    padding: 15px 35px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.3s, opacity 0.3s;
    box-shadow: 0 4px 15px rgba(0, 130, 157, 0.3);
}

.notify-form button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.countdown-section h2 {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.timer {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-box span:first-child {
    font-family: var(--font-main);
    font-size: 48px;
    font-weight: 700; /* Bolder for Grifter numbers */
}

.time-box .label {
    font-size: 10px;
    letter-spacing: 1px;
    margin-top: 5px;
    opacity: 0.6;
}

.separator {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 15px;
}

.progress-section {
    width: 100%;
    max-width: 600px;
}

.progress-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

.progress-text {
    font-size: 12px;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 0 20px;
    }

    header {
        height: 80px;
    }

    nav {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .notify-form {
        flex-direction: column;
        max-width: 100%;
    }

    .timer {
        gap: 10px;
    }

    .time-box span:first-child {
        font-size: 32px;
    }
}
