@font-face {
    font-family: 'Sansation';
    src: url('../Sansation-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sansation', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #445b54 0%, #324641 50%, #223330 100%);
    color: #ffffff;
    position: relative;
}

.logo {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero {
    margin-bottom: 3rem;
}

.subtitle {
    font-size: 18pt;
    font-weight: normal;
    margin-bottom: 1rem;
    opacity: 0.95;
}

h1 {
    font-size: 42pt;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
    font-family: 'Sansation', sans-serif;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: normal;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #d8d8d8;
    color: #2d2d2d;
}

.btn-primary:hover {
    background-color: #c4c4c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: #1e3932;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #162b25;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

footer {
    margin-top: auto;
    padding-top: 3rem;
    font-size: 0.875rem;
    opacity: 0.9;
    line-height: 1.6;
    text-align: center;
}

footer p {
    margin: 0.25rem 0;
}

a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

a:hover {
    opacity: 0.85;
    border-bottom-color: #ffffff;
}

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

    .logo {
        top: 1rem;
        left: 1rem;
        width: 60px;
        height: 60px;
    }

    .hero {
        margin-bottom: 1.75rem;
    }

    .subtitle {
        font-size: 16pt;
        margin-bottom: 0.65rem;
    }

    h1 {
        font-size: 30pt;
    }

    .buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-bottom: 1.25rem;
    }

    .btn {
        width: 100%;
        padding: 1rem 2rem;
    }

    footer {
        padding-top: 1.5rem;
        padding-bottom: 0.5rem;
    }
}

@media (max-width: 400px) {
    body {
        padding: 1rem 1rem 0.75rem;
    }

    .logo {
        top: 0.75rem;
        left: 0.75rem;
        width: 50px;
        height: 50px;
    }

    .hero {
        margin-bottom: 1.5rem;
    }

    .subtitle {
        font-size: 14pt;
        margin-bottom: 0.5rem;
    }

    h1 {
        font-size: 24pt;
    }

    .btn {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    footer {
        padding-top: 1.25rem;
    }
}