@font-face {
    font-family: 'Formula1-Wide';
    src: url('../font/Formula1-Display-Wide_web.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Formula1-Regular';
    src: url('../font/Formula1-Display-Regular_web.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Formula1-Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: black;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
}

.banner-top,
.banner-bot {
    display: block;
    width: 200px;
    height: auto;
    flex-shrink: 0;
    align-self: center;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    border: none;
    border-radius: 0;
    padding: 30px 0 80px 0;
    background: transparent;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

.welcome {
    font-family: 'Formula1-Wide', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    color: white;
    text-transform: uppercase;
    margin-top: 0;
}

.link-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.link-card {
    background: #e10600;
    border-radius: 8px;
    padding: 6px 25px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 6, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    min-height: 36px;
    margin: 0 auto;
    white-space: nowrap;
}

.link-card:hover {
    background: #c00500;
    box-shadow: 0 6px 20px rgba(225, 6, 0, 0.4);
    transform: translateY(-2px);
}

.link-card h2 {
    font-family: 'Formula1-Regular', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: white;
    letter-spacing: 1px;
    margin: 0;
    text-align: center;
}

footer {
    font-family: 'Formula1-Regular', sans-serif;
    text-align: center;
    color: #aaa;
    font-size: 0.5rem;
    margin-top: auto;
    margin-bottom: 8px;
    padding-bottom: 0;
    text-transform: uppercase;
    align-self: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 30px 0 80px 0;
        border-radius: 0;
    }

    .welcome {
        font-size: 16px;
    }

    .link-grid {
        gap: 15px;
        width: 100%;
    }

    .link-card {
        padding: 6px 10px;
        max-width: 300px;
        min-height: 36px;
    }

    .link-card h2 {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 0 80px 0;
        border-radius: 0;
    }

    .welcome {
        font-size: 16px;
    }

    .link-grid {
        width: 100%;
    }

    .link-card {
        padding: 6px 10px;
        max-width: 300px;
        min-height: 36px;
    }

    .link-card h2 {
        font-size: 14px !important;
    }
}
