body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0b0b0b;
    color: white;
}



strong {
    color: #FDB927;
}

.figma-logo {
    position: absolute;
    top: 15px;
    left: 20px;
    z-index: 2000;
}

.figma-logo img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    background: white;
    padding: 5px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.figma-logo img:hover {
    transform: scale(1.15);
    box-shadow: 0 0 15px #FDB927;
}


nav {
    background: #552583;
    text-align: center;
    padding: 20px;
}

nav button {
    margin: 5px;
    padding: 12px 20px;
    border: none;
    background: #FDB927;
    color: black;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 6px;
}

nav button:hover {
    transform: scale(1.05);
}

/* SECTIONS */

.section {
    display: none;
    padding: 40px 20px;
}

.active {
    display: block;
}



.header-banner,
.rules-banner,
.importance-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.slide,
.rules-banner img,
.importance-banner img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: black;
    display: none;
}

.slide.active,
.rules-banner img,
.importance-banner img {
    display: block;
}

.banner-title,
.rules-title,
.importance-title {
    position: absolute;
    top: 45%;
    width: 100%;
    text-align: center;
    font-size: 50px;
    text-shadow: 2px 2px 10px black;
}



.text-box {
    max-width: 900px;
    margin: 30px auto;
    padding: 25px;
    background: #141414;
    border-left: 5px solid #FDB927;
    line-height: 1.8;
    font-size: 18px;
    border-radius: 10px;
}



.rule-item {
    background: #141414;
    margin: 20px auto;
    padding: 20px;
    max-width: 900px;
    border-left: 5px solid #FDB927;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 8px;
}

.rule-item:hover {
    transform: translateX(10px);
    background: #1c1c1c;
}

.rule-extra {
    display: none;
    margin-top: 10px;
    color: #ccc;
    line-height: 1.6;
}

.rule-item.active .rule-extra {
    display: block;
}


.players-title {
    text-align: center;
    font-size: 42px;
}

.players {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 20px;
}

.card {
    background: #141414;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 15px rgba(253,185,39,0.5);
}

.card img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    background: black;
    border-radius: 10px;
}

.card h3 {
    margin-top: 15px;
    font-size: 28px;
}

.card p {
    color: #ccc;
    font-size: 18px;
}



.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.modal-content {
    position: relative;
    background: #111;
    margin: 4% auto;
    width: 75%;
    max-width: 900px;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
}

#modalName {
    font-size: 40px;
}

#modalImg {
    width: 450px;
    max-width: 100%;
    height: 400px;
    object-fit: contain;
    background: black;
    border-radius: 12px;
}

#modalInfo {
    max-width: 700px;
    margin: 20px auto;
    font-size: 17px;
    line-height: 1.7;
    color: #ddd;
}



.close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.close:hover {
    color: #FDB927;
    transform: scale(1.2);
}



footer {
    background: #552583;
    text-align: center;
    padding: 20px;
    border-top: 4px solid #FDB927;
    margin-top: 40px;
    font-size: 18px;
}