body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #552583, #FDB927);
    text-align: center;
    color: #FDB927;
    animation: backgroundAnimation 10s infinite alternate;
}

@keyframes backgroundAnimation {
    0% { background: linear-gradient(135deg, #552583, #FDB927); }
    100% { background: linear-gradient(135deg, #FDB927, #552583); }
}

.container {
    max-width: 800px;
    margin: 50px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #333;
}

h1 {
    color: #FDB927;
}

img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img.hover-effect:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(253, 185, 39, 0.8);
}

.mini-lebron {
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 100px;
    height: auto;
    transition: transform 0.3s ease;
}

.mini-lebron:hover {
    transform: scale(1.2);
}

p {
    font-size: 18px;
    line-height: 1.6;
}

footer {
    margin-top: 20px;
    padding: 10px;
    background: #333;
    color: white;
}
.mini-lebron-container {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: flex;
    align-items: center;
}

.chat-bubble {
    display: none;
    background: #fff;
    color: #333;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    text-align: center;
    margin-right: 10px; /* Space between chat bubble and Mini LeBron */
}

.mini-lebron {
    width: 100px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mini-lebron:hover {
    transform: scale(1.2);
}
.stats-container {
    max-width: 600px;
    margin: 50px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.stats-container img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: -200px;
    margin-top: -200px;
    scale: 0.5;
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.stats-table th, .stats-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.stats-table th {
    background-color: #552583;
    color: #FDB927;
}

.stats-table td {
    background-color: #f9f9f9;
}

.back-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 15px;
    background: #552583;
    color: #FDB927;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.back-button:hover {
    background: #FDB927;
    color: #552583;
}
