@font-face {
    font-family: 'TTWPGOTT';
    src: url('../fonts/TTWPGOTT.ttf') format('truetype');
}

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

body {
    font-family: 'TTWPGOTT', 'Courier New', monospace;
    background-color: #000;
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hourglass-link {
    display: block;
    width: 100%;
    max-width: 400px;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.hourglass-link:hover {
    opacity: 0.85;
}

.hourglass-img {
    width: 100%;
    height: auto;
    display: block;
}

.title-link {
    text-decoration: none;
    color: #fff;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.title-link:hover {
    opacity: 0.85;
}

.title-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.title {
    font-size: 28px;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
}

.divider {
    width: 2px;
    height: 40px;
    background-color: #fff;
}

.enter-btn {
    background-color: transparent;
    border: 1px solid #888;
    color: #888;
    padding: 12px 40px;
    font-family: 'TTWPGOTT', 'Courier New', monospace;
    font-size: 20px;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
}

.enter-btn:hover {
    border-color: #fff;
    color: #fff;
}

@media (max-width: 480px) {
    .title {
        font-size: 22px;
        letter-spacing: 1.5px;
    }

    .divider {
        height: 35px;
    }

    .container {
        gap: 25px;
    }

    .enter-btn {
        font-size: 16px;
        padding: 10px 30px;
        letter-spacing: 2px;
    }
}

@media (max-width: 360px) {
    .title {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .divider {
        height: 30px;
    }
}