@font-face {
    font-family: 'Thunder';
    src: url('Thunder-BoldLC.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

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

body {
    min-height: 100vh;
    background-color: #EBE1D8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding: 16px;
}

.logo {
    width: 128px;
    height: 128px;
    margin-bottom: 32px;
    object-fit: contain;
}

.app-name {
    font-family: 'Thunder', sans-serif;
    font-weight: 900;
    font-size: 60px;
    color: black;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.app-subtitle {
    margin-bottom: 28px;
}

.links {
    display: flex;
    gap: 32px;
}

.links a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    border-bottom: 1px solid black;
    padding-bottom: 4px;
    transition: opacity 0.2s ease;
}

.links a:hover {
    opacity: 0.7;
}

@media (max-width: 640px) {
    .app-name {
        font-size: 40px;
    }

    .logo {
        width: 96px;
        height: 96px;
    }
}