* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

body {
    background: radial-gradient(circle at top, #1e1e2f, #0f0f17);
    color: #f5f5f5;
    line-height: 1.6;
}



.hero {
    background: url("img/background.webp") center / cover no-repeat;
    height: 420px;  
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero-overlay {
    background: linear-gradient(
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.55)
    );
    padding: 2.5rem 3rem;
    text-align: center;
    border-radius: 16px;
    max-width: 520px;
}

.hero h1 {
    font-size: 2.4rem;
    margin: 0.5rem 0;
}

.hero p {
    font-size: 1.05rem;
    opacity: 0.9;
}


.hero.small {
    padding: 2.5rem 1rem;
}



.btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.6rem;
    background: #ffcc00;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.content {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.content section {
    margin-bottom: 2rem;
}

.content h2 {
    color: #ffcc00;
    margin-bottom: 0.8rem;
}

.content ul {
    list-style: disc;
    margin-left: 1.5rem;
}

footer {
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery a {
    display: block;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    margin-top: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}


.game-logo img {
    max-width: 220px;
    margin-bottom: 1rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 9 / 16;
    margin: 0 auto;
}

.video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.feature {
    background: #1a1a1a;
    padding: 1.2rem;
    border-radius: 10px;
    font-weight: bold;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
}