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

/* YELLOW HIGHLIGHTS */
strong {
    color: #FDB927;
}

/* NAVBAR */
nav {
    background: #552583;
    text-align: center;
    padding: 20px;
    position: relative;
}

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

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

.lakers-logo {
    position: fixed;
    top: 12px;
    left: 20px;
    z-index: 2000;
}

.lakers-logo img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    background: white;
    padding: 5px;
    border-radius: 8px;
    transition: 0.3s;
}
.lakers-logo img:hover {
    transform: scale(1.1);
}

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

.active {
    display: block;
}

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

/* HEADER SLIDER */
.header-banner {
    position: relative;
    height: 400px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.slide.active {
    display: block;
}

.banner-title {
    position: absolute;
    top: 150px;
    width: 100%;
    text-align: center;
    font-size: 50px;
    text-shadow: 2px 2px 8px black;
}

/* RULES + IMPORTANCE BANNER */
.rules-banner,
.importance-banner {
    position: relative;
    height: 300px;
}

.rules-banner img,
.importance-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rules-title,
.importance-title {
    position: absolute;
    top: 120px;
    width: 100%;
    text-align: center;
    font-size: 42px;
    text-shadow: 2px 2px 8px black;
}

/* RULES */
.rule-item {
    background: #141414;
    margin: 15px auto;
    padding: 18px;
    border-left: 5px solid #FDB927;
    cursor: pointer;
    transition: 0.3s;
    max-width: 900px;
}

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

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

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

/* PLAYERS */
.players {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    overflow: visible;
    padding: 20px;
}

.card {
    background: #1a1a1a;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    border-radius: 10px;
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

.card:hover {
    transform: translateY(-10px) scale(1.05);
    z-index: 5;
}

.card.pop {
    transform: translateY(-20px) scale(1.12);
    z-index: 10;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    top: 0;
    left: 0;
}

.modal-content {
    background: #111;
    margin: 5% auto;
    padding: 25px;
    width: 60%;
    text-align: center;
    border-radius: 12px;
}

#modalImg {
    width: 300px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.close {
    float: right;
    cursor: pointer;
    font-size: 30px;
    color: white;
}