* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: white;
    background: black;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 0.5s ease;
}

.content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(30px);
}

.content-inner {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.title {
    font-size: 48px;
    font-weight: 100;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 24px;
    font-weight: 100;
    margin-bottom: 50px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    max-width: 600px;
    margin: 0 auto 50px;
    gap: 0px;
    justify-content: space-between;
}

.grid-cell {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: 100;
    opacity: 0.6;
    line-height: 132%;
}

.hits-text {
    font-size: 18px;
    font-weight: 100;
    margin-bottom: 40px;
}

.links-container {
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
}

.links-container a {
    font-size: 18px;
    font-weight: 100;
    color: white;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.links-container a:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

@media (max-width: 1000px) {
    .title {
        font-size: 36px;
    }

    .subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .grid {
        max-width: 500px;
        margin: 0 auto 40px;
    }

    .grid-cell {
        font-size: 24px;
    }

    .hits-text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .links-container a {
        font-size: 16px;
    }
}
