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

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #2a7b9b, #57c785, #eddd53);
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* HERO */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    animation: fadeIn 1s ease;
    padding: 4rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    color: white;
    line-height: 0.9;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.hero p {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.hand {
    width: 25%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    position: fixed;
}

.hand.left {
    left: 0;
    z-index: -1;
}

.hand.right {
    right: 0;
    z-index: -1;
}

.btn-hero {
    font-size: 1rem;
    background: #ffcc00;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    color: #fff;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.5s;
    outline: none;
}

.btn-hero:hover {
    background: #ffdd44;
    transform: scale(1.05);
}

.hero-img {
    width: 100%;
}

/* Hlavní sekce */

main {
    /* display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 2rem; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px;
    margin-top: 50px;
    width: 100%;
    max-width: none;
    padding: 20px 5%;
}

.game-section {
    /* max-width: 400px; */
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    animation: fadeInUp 1s ease;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.game-section p {
    margin-top: 1rem;
}

.game-icons img {
    width: 90px;
    margin: 0.5rem;
    transition: 0.3s;
    cursor: pointer;
}

.game-icons img:hover {
    transform: translateY(-5px) scale(1.08);
}

.btn-main {
    margin-top: 1rem;
    margin-bottom: 1rem;
    background: #ffcc00;
    color: #111;
    padding: 0.6rem 1rem;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    color: white;
}

.btn-main:hover {
    background: #ffdd44;
    transform: scale(1.05);
}

.info-section {
    /* background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    max-width: 400px;
    animation: fadeInUp 1.2s ease;
    color: white; */
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    animation: fadeInUp 1s ease;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.info-section ul {
    list-style: none;
    margin-top: 1rem;
}

.info-section li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
}

/* Animace */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
