:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --success-color: #27ae60;
    --text-color: #333;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --gold: #ffd700;
    --silver: #c0c0c0;
    --bronze: #cd7f32;
}

body {
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
    background-color: #f9f9f9;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#content.site-content {
    margin-top: 0px !important;
}

/* Stats Banner */
.stats-banner {
    background-color: var(--white);
    color: var(--text-color);
    padding: 0px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 0 15px;
    border-right: 1px solid #eee;
    flex: 1;
    justify-content: center;
    white-space: nowrap;
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 1.2rem;
    margin-right: 8px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.stat-text {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.stat-value {
    font-weight: 700;
    font-size: 1rem;
    margin-right: 5px;
    flex-shrink: 0;
}

.stat-label {
    font-size: 0.7rem;
    opacity: 0.8;
    margin-left: 5px;
}

.stats-date {
    font-size: 0.6rem;
    opacity: 0.6;
    margin-top: 0;
    text-align: center;
    font-style: italic;
}

/* Hide stats banner on mobile */
@media (max-width: 768px) {
    .stats-banner {
        display: none;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.2) 0%, rgba(231, 76, 60, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 72px;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
    position: relative;
    display: inline-block;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    display: block;
    background: linear-gradient(to right, var(--secondary-color), #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}


.hero-description {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
    perspective: 1000px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    z-index: 1;
}

.hero-card-content {
    position: relative;
    z-index: 2;
}

.hero-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.hero-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.hero-card-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 1rem;
}

.hero-card-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 0.8rem;
}

.hero-card-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-card-button:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero-card-image {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    z-index: 3;
}

/* Add animation for the hero card */
@keyframes float {
    0% {
        transform: translateY(0px) rotateY(0deg);
    }

    50% {
        transform: translateY(-10px) rotateY(5deg);
    }

    100% {
        transform: translateY(0px) rotateY(0deg);
    }
}

.hero-card {
    animation: float 6s ease-in-out infinite;
}

/* Responsive adjustments for hero section */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-title span {
        padding-bottom: 5px;
    }

    .hero-text {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero-title {
        font-size: 4rem;
        line-height: 1;
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
    }

    .hero-title span {
        font-size: 4.5rem;
        display: block;
        margin-top: 5px;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 20px;
        max-width: 90%;
        text-align: center;
        opacity: 0.9;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-card {
        padding: 25px;
        margin-top: 30px;
        opacity: 0.9;
        transform: scale(0.95);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .hero-card-title {
        font-size: 1.5rem;
    }

    .hero-card-image {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="rgba(0,0,0,0.05)"/></svg>');
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), #f39c12);
}

.section-title p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(52, 152, 219, 0.05));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.feature-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-img img {
    transform: scale(1.1);
}

.feature-content {
    padding: 30px;
    position: relative;
}

.feature-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.feature-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.feature-card:hover .feature-content h3::after {
    width: 100%;
}

.feature-content p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

.feature-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

.feature-link::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.feature-link:hover {
    color: var(--primary-color);
}

.feature-link:hover::after {
    transform: translateX(5px);
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 0;
}

.stats-section h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.stats-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), #f39c12);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    z-index: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.stat-card-content {
    position: relative;
    z-index: 2;
}

.stat-card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(231, 76, 60, 0.2);
}

.stat-card-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-card-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-date {
    font-size: 0.6rem;
    opacity: 0.6;
    margin-top: 0;
    text-align: center;
    font-style: italic;
}

/* Responsive adjustments for features and stats sections */
@media (max-width: 992px) {

    .features-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title h2,
    .stats-section h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {

    .features,
    .stats-section {
        padding: 80px 0;
    }

    .features-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2,
    .stats-section h2 {
        font-size: 2rem;
    }

    .feature-img {
        height: 200px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-card-value {
        font-size: 2rem;
    }

    /* Mobile-specific stats card improvements */
    .stat-card-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .stat-card-icon {
        margin: 0;
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .stat-card-value {
        margin-bottom: 0;
    }

    .stat-card-label {
        margin: 10px 0 0 0;
    }

    /* Create a container for icon and value to be on one line */
    .stat-card-icon-value {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.cta h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), #f39c12);
}

.cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-success {
    background-color: var(--success-color);
    color: var(--white);
    border: 2px solid var(--success-color);
}

.btn-success:hover {
    background-color: transparent;
    color: var(--white);
}

/* Responsive Design for Home Page */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .features,
    .cta,
    .stats-section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .stats-banner-content {
        flex-direction: column;
        gap: 15px;
    }

    .stat-item {
        margin: 5px 0;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 5px 0;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Stats Banner */
.stats-banner .stats-date {
    font-size: 0.6rem;
    opacity: 0.6;
    margin-top: 0;
    text-align: center;
    font-style: italic;
}

/* Stats Section */
.stats-section .stats-date {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 30px;
    font-style: italic;
}

/* Leaderboard Preview Section */
.leaderboard-preview {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.leaderboard-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="rgba(0,0,0,0.05)"/></svg>');
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
}

.leaderboard-preview-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.leaderboard-preview-item {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.leaderboard-preview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.leaderboard-preview-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(52, 152, 219, 0.05));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.leaderboard-preview-item:hover::before {
    opacity: 1;
}

.leaderboard-preview-rank {
    font-size: 1.5rem;
    font-weight: 700;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.rank-1 .leaderboard-preview-rank {
    background-color: var(--gold);
    color: var(--white);
}

.rank-2 .leaderboard-preview-rank {
    background-color: var(--silver);
    color: var(--white);
}

.rank-3 .leaderboard-preview-rank {
    background-color: var(--bronze);
    color: var(--white);
}

.rank-4 .leaderboard-preview-rank {
    background-color: var(--bronze);
    color: var(--white);
}

.rank-5 .leaderboard-preview-rank {
    background-color: var(--bronze);
    color: var(--white);
}

.leaderboard-preview-avatar {
    margin-right: 15px;
    flex-shrink: 0;
}

.leaderboard-preview-avatar img {
    border-radius: 50%;
    border: 2px solid var(--light-color);
    transition: all 0.3s ease;
}

.leaderboard-preview-item:hover .leaderboard-preview-avatar img {
    border-color: var(--secondary-color);
    transform: scale(1.1);
}

.leaderboard-preview-info {
    flex: 1;
}

.leaderboard-preview-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.leaderboard-preview-earnings {
    font-weight: 700;
    color: var(--secondary-color);
}

.leaderboard-preview-empty {
    text-align: center;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 15px;
    color: var(--text-light);
    font-style: italic;
}

.leaderboard-preview-footer {
    text-align: center;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .leaderboard-preview {
        padding: 60px 0;
    }

    .leaderboard-preview-item {
        padding: 12px 15px;
    }

    .leaderboard-preview-rank {
        font-size: 1.2rem;
        width: 30px;
        height: 30px;
    }

    .leaderboard-preview-name {
        font-size: 1rem;
    }
}
