/* Font Face Declarations */
@font-face {
    font-family: 'Bitcount Grid';
    src: url('assets/fonts/BitcountGridSingle_Cursive-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kodchasan';
    src: url('assets/fonts/Kodchasan-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kodchasan';
    src: url('assets/fonts/Kodchasan-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Kodchasan', sans-serif;
    background-color: #030719;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    line-height: 1.6;
}

/* Main Container */
.container {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

/* Logo */
.logo {
    font-family: 'Source Code Pro', monospace;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

/* Tagline */
.tagline {
    font-family: 'Kodchasan', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

/* Coming Soon - Dotted Style */
.coming-soon {
    margin-bottom: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coming-soon-svg {
    width: 100%;
    max-width: 800px;
    height: auto;
}

/* Contact Section */
.contact {
    font-family: 'Kodchasan', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 8rem;
}

.contact p {
    margin-bottom: 0.5rem;
}

.contact a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact a:hover {
    opacity: 0.7;
}

/* Footer */
.footer {
    font-family: 'Kodchasan', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
}

.footer-policies {
    margin-bottom: 1rem;
}

.footer-policies a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-policies a:hover {
    opacity: 0.7;
}

.footer-copyright {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .tagline {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .coming-soon {
        margin-bottom: 3rem;
    }

    .coming-soon-svg {
        max-width: 600px;
    }

    .contact {
        font-size: 1rem;
        margin-bottom: 5rem;
    }

    .footer {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 1.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .coming-soon {
        margin-bottom: 2rem;
    }

    .coming-soon-svg {
        max-width: 100%;
    }

    .contact {
        font-size: 0.9rem;
    }
}
