html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background: #000;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.container {
    position: relative;
    width: 100vw;
    height: 100vh;
}

.background-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1300px;
    max-width: 100vw;
    height: auto;
    z-index: 0;
    opacity: 0.9;
    pointer-events: none;
}

.content-wrapper {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
    animation: slideUp 1s ease-out;
    width: 100vw;
}

.buttons-row-parent {
    display: flex;
    justify-content: center;
}
.buttons-row {
    font-family: 'Metal Mania', cursive, sans-serif;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 25px;
    justify-content: center;
}

.feelar-dc {
    font-family: 'Metal Mania', cursive, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.buttons-row a,
.feelar-dc a {
    text-decoration: none;
    padding: 18px 35px;
    font-size: 22px;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, #464444, #ffffff);
    color: #000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 130px;
    text-align: center;
    display: inline-block;
}

.buttons-row a:hover,
.feelar-dc a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.6);
}

@keyframes slideUp {
    from {
        transform: translate(-50%, calc(-50% + 100px));
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

/* Custom kurzor */
* {
    cursor: url(https://r2.guns.lol/71aa828c-6012-439f-9ecd-0088ee785750.cur) 16 16, auto !important;
}

@media (max-width: 600px) {
    .background-image {
        width: 200vw;
        max-width: none;
        height: auto;
        left: 50%;
        top: 40%;
        transform: translate(-50%, -50%);
    }
    .content-wrapper {
        top: 60%; /* posun tlačítek níž (bylo 50%) */
        width: 100vw;
        padding: 0 4vw;
    }
    .buttons-row {
        gap: 5vw;
    }
    .buttons-row a,
    .feelar-dc a {
        font-size: 14px;
        padding: 10px 6vw;
        min-width: 0;
        width: auto;
        max-width: 40vw;
        border-radius: 8px;
    }
    .feelar-dc {
        gap: 6px;
    }
}