@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');
/* body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
} */
body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background: #f9f9f9;
}

.chart-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.chart-box canvas {
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px;
    width: 400px;
    height: 400px;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* 🎯 Make the bar chart wider */
#headsYesChart {
    width: 700px !important;
    height: 400px !important;
}
#levelStatsChart {
    width: 700px !important;
    height: 400px !important;
}

/* 🎯 Make the doughnut chart square */
#playerCountsChart {
    width: 400px !important;
    height: 400px !important;
}

/*PAGE TITLE*/
.header {
    background-color: #2c3e50; /* same as footer */
    padding: 30px 0;
    text-align: center;
    color: white;
    width: 100%;
    margin-bottom: 30px;
}

.page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 1s ease-out;
}

.page-title .icon {
    font-size: 2.2rem;
    color: white;
}

/* .page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 1s ease-out;
} */

/* .page-title .icon {
    font-size: 2.2rem;
    color: #333;
} */

.gradient-text {
    background: linear-gradient(90deg, #007cf0, #00dfd8, #ff61a6, #ff8e1c);  /* Multiple colors for effect */
    background-size: 200% 200%; /* Extends the background for animation */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    animation: gradientShift 3s ease-in-out infinite;  /* Animation for gradient effect */
}

/* Animation for the gradient */
@keyframes gradientShift {
    0% {
        background-position: 200% 0%;
    }
    50% {
        background-position: -200% 100%;
    }
    100% {
        background-position: 200% 0%;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* .chart-wrapper {
    text-align: center;
    padding: 20px;
} */

.footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #fff;
    background-color: #2c3e50;
    margin-top: 50px;
    width: 100%;
}

.footer-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-logos img {
    height: 200px; /* Adjust size as needed */
    object-fit: contain;
}

/* .footer {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    color: white;
    background-color: #2c3e50;
    padding: 20px;
    position: relative; 
    z-index: 10;
} */
 .download-section {
    background: linear-gradient(90deg, #007cf0, #00dfd8);
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin: 40px auto;
    border-radius: 16px;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}

.download-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.download-count {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.download-button {
    background-color: #2ecc71;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.download-button:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}
