/* esports.css - Styles for eSports Section */

/* Adjust text alignment for the content under "Welcome to Opsters eSports!" */
#home .center-content .content {
    text-align: justify; /* Align the text */
    max-width: 800px; /* Limit the width of the content */
    margin: auto; /* Center the content horizontally */
}

/* Best Player of the month styles */
.best-player-wrapper {
    width: 100%; /* Ensure full width */
    max-width: 1200px; /* Adjust max width as needed */
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.post {
    width: calc(30% - 20px); /* Adjust width according to your preference */
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
    position: relative;
}

.post:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f5f5f5, #fff);
    z-index: -1;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.post:hover {
    transform: translateY(-5px);
}

.clash-royale {
    background-color: lightskyblue; /* Set default background color to blue */
}

.post .clash-royale h2 {
    margin-top: 0;
    color: white;
    font-size: 20px;
    padding: 15px 20px 10px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.post .clash-royale h3 {
    margin-top: 0;
    color: white;
    font-size: 20px;
    padding: 15px 20px 10px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.post .clash-royale p {
    color: white;
    font-size: 16px;
    padding: 0 20px 15px;
    text-align: center;
}

.brawl-stars {
    background-color: #ffa500;
}

.clash-of-clans {
    background-color: #ffff00;
}