/* Sponsors Carousel Section */
.sponsors-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.sponsors-header {
    margin-bottom: 60px;
}

.sponsors-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 200, 81, 0.3);
}

.sponsors-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00C851, #FFD700);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.sponsors-subtitle {
    font-size: 1.1rem;
    color: #adb5bd;
    font-weight: 400;
    margin: 0;
}

.sponsors-carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.sponsors-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.sponsors-track {
    display: flex;
    animation: sponsorScroll 20s linear infinite;
    width: calc(200% + 40px);
}

@keyframes sponsorScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.sponsor-item {
    flex: 0 0 auto;
    width: 300px;
    margin-right: 40px;
    padding: 0 10px;
}

.sponsor-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    border: 2px solid rgba(0, 200, 81, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sponsor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 200, 81, 0.05), rgba(255, 215, 0, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sponsor-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 200, 81, 0.4);
    box-shadow: 0 20px 40px rgba(0, 200, 81, 0.2);
}

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

.sponsor-logo-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.sponsor-card:hover .sponsor-logo-container {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 200, 81, 0.4);
}

.sponsor-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.sponsor-info {
    position: relative;
    z-index: 2;
}

.sponsor-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sponsor-type {
    font-size: 0.85rem;
    color: #00C851;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Pause animation on hover */
.sponsors-carousel-container:hover .sponsors-track {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .sponsor-item {
        width: 280px;
        margin-right: 30px;
    }
    
    .sponsor-card {
        height: 200px;
        padding: 25px 15px;
    }
    
    .sponsor-logo-container {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }
}

@media (max-width: 991px) {
    .sponsors-title {
        font-size: 2rem;
    }
    
    .sponsor-item {
        width: 260px;
        margin-right: 25px;
    }
    
    .sponsor-card {
        height: 180px;
        padding: 20px 15px;
    }
    
    .sponsor-logo-container {
        width: 90px;
        height: 90px;
        margin-bottom: 12px;
    }
    
    .sponsor-name {
        font-size: 1rem;
    }
    
    .sponsor-type {
        font-size: 0.8rem;
    }
}

@media (max-width: 767px) {
    .sponsors-section {
        padding: 60px 0;
    }
    
    .sponsors-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .sponsors-track {
        animation-duration: 15s;
    }
    
    .sponsor-item {
        width: 240px;
        margin-right: 20px;
    }
    
    .sponsor-card {
        height: 160px;
        padding: 15px 10px;
        border-radius: 15px;
    }
    
    .sponsor-logo-container {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
        padding: 10px;
    }
    
    .sponsor-name {
        font-size: 0.9rem;
    }
    
    .sponsor-type {
        font-size: 0.75rem;
    }
}

@media (max-width: 575px) {
    .sponsors-section {
        padding: 50px 0;
    }
    
    .sponsors-title {
        font-size: 1.5rem;
    }
    
    .sponsors-subtitle {
        font-size: 1rem;
    }
    
    .sponsors-track {
        animation-duration: 12s;
    }
    
    .sponsor-item {
        width: 200px;
        margin-right: 15px;
    }
    
    .sponsor-card {
        height: 140px;
        padding: 12px 8px;
    }
    
    .sponsor-logo-container {
        width: 70px;
        height: 70px;
        margin-bottom: 8px;
        padding: 8px;
    }
    
    .sponsor-name {
        font-size: 0.8rem;
    }
    
    .sponsor-type {
        font-size: 0.7rem;
    }
}

/* Match Lineup Section */
.match-lineup-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
}

.match-lineup-header {
    margin-bottom: 60px;
}

.match-lineup-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 200, 81, 0.3);
}

.match-lineup-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00C851, #FFD700);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.match-lineup-subtitle {
    font-size: 1.1rem;
    color: #adb5bd;
    font-weight: 400;
    margin: 0;
}

.match-lineup-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 30px 25px;
    border: 2px solid rgba(0, 200, 81, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.match-lineup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 200, 81, 0.05), rgba(255, 215, 0, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.match-lineup-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 200, 81, 0.4);
    box-shadow: 0 20px 40px rgba(0, 200, 81, 0.2);
}

.match-lineup-card:hover::before {
    opacity: 1;
}

.match-date-time {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.match-day {
    font-size: 0.9rem;
    color: #adb5bd;
    font-weight: 500;
    margin-bottom: 5px;
}

.match-time {
    font-size: 1.3rem;
    color: #00C851;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 200, 81, 0.3);
}

.teams-vs-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.team-home, .team-away {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.team-logo-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    margin-bottom: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.match-lineup-card:hover .team-logo-wrapper {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 200, 81, 0.4);
}

.team-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.team-name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
}

.vs-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: #FFD700;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.match-venue {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #adb5bd;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.match-venue i {
    color: #00C851;
    margin-right: 8px;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .match-lineup-card {
        height: 260px;
        padding: 25px 20px;
    }
    
    .team-logo-wrapper {
        width: 55px;
        height: 55px;
    }
    
    .match-time {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .match-lineup-title {
        font-size: 2rem;
    }
    
    .match-lineup-card {
        height: 240px;
        padding: 20px 15px;
    }
    
    .team-logo-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .team-name {
        font-size: 0.9rem;
    }
    
    .match-time {
        font-size: 1.1rem;
    }
    
    .vs-text {
        font-size: 1.1rem;
    }
    
    .match-venue {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .match-lineup-section {
        padding: 60px 0;
    }
    
    .match-lineup-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .match-lineup-card {
        height: 220px;
        padding: 18px 12px;
        border-radius: 15px;
        margin-bottom: 20px;
    }
    
    .match-date-time {
        margin-bottom: 20px;
    }
    
    .match-day {
        font-size: 0.8rem;
    }
    
    .match-time {
        font-size: 1rem;
    }
    
    .teams-vs-container {
        margin-bottom: 20px;
    }
    
    .team-logo-wrapper {
        width: 45px;
        height: 45px;
        margin-bottom: 8px;
    }
    
    .team-name {
        font-size: 0.8rem;
    }
    
    .vs-divider {
        margin: 0 10px;
    }
    
    .vs-text {
        font-size: 1rem;
    }
    
    .match-venue {
        font-size: 0.8rem;
    }
    
    .match-venue i {
        font-size: 0.9rem;
        margin-right: 6px;
    }
}

@media (max-width: 575px) {
    .match-lineup-section {
        padding: 50px 0;
    }
    
    .match-lineup-title {
        font-size: 1.5rem;
    }
    
    .match-lineup-subtitle {
        font-size: 1rem;
    }
    
    .match-lineup-card {
        height: 200px;
        padding: 15px 10px;
    }
    
    .match-date-time {
        margin-bottom: 15px;
    }
    
    .match-day {
        font-size: 0.75rem;
    }
    
    .match-time {
        font-size: 0.95rem;
    }
    
    .teams-vs-container {
        margin-bottom: 15px;
    }
    
    .team-logo-wrapper {
        width: 40px;
        height: 40px;
        margin-bottom: 6px;
    }
    
    .team-name {
        font-size: 0.75rem;
    }
    
    .vs-divider {
        margin: 0 8px;
    }
    
    .vs-text {
        font-size: 0.9rem;
    }
    
    .match-venue {
        font-size: 0.75rem;
    }
    
    .match-venue i {
        font-size: 0.8rem;
        margin-right: 5px;
    }
}

/* General Styling */
body {
    background-color: #121212; /* Dark background */
    color: #f0f0f0;
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
    font-weight: 700;
}

p {
    color: #adb5bd; /* Lighter grey for paragraph text */
}

.btn-danger {
    background-color: #00C851; /* EM Green */
    border-color: #00C851;
    font-weight: 700;
    padding: 10px 25px;
    text-transform: uppercase;
}

.btn-danger:hover {
    background-color: #00A041; /* Darker EM Green */
    border-color: #00A041;
}

.btn-outline-danger {
    border-color: #00C851; /* EM Green */
    color: #00C851;
}
.btn-outline-danger:hover {
    background-color: #00C851;
    color: #fff;
}

.section-divider {
    display: block;
    width: 60px;
    height: 3px;
    background-color: #00C851; /* EM Green */
    margin-top: 10px;
    margin-bottom: 30px;
}

/* 1. Navigation */
.navbar {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}
.navbar-brand {
    font-size: 1.8rem;
    color: #fff;
}
.navbar-brand strong {
    color: #00C851; /* EM Green */
}
.navbar-brand .gold-text {
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700, #FF8C00);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    animation: goldGradient 3s ease-in-out infinite;
}
.nav-link.btn-danger {
    
    padding: 5px 15px; /* Smaller button for nav */
}

/* 2. Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('assets/EM88XKHFUTSAL.jpg') no-repeat center center;
    background-size: cover;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
}
.hero-section .container {
    position: relative; /* To sit on top of the overlay */
    z-index: 2;
}
.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.btn-success {
    background-color: #00C851;
    border-color: #00C851;
    font-weight: 700;
    padding: 10px 30px;
    text-transform: uppercase;
}

.btn-success:hover {
    background-color: #00A041;
    border-color: #00A041;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }
}

/* 2.1 Feed Banner Section */
.feed-banner-section {
    position: relative;
    width: 100%;
    min-height: 472px;
    height: 60vh;
    max-height: 700px;
    background: url('assets/EM88XKHFUTSAL.jpg') no-repeat center center;
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
    margin: 0;
}

.feed-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.feed-banner-section .container {
    position: relative;
    z-index: 2;
}

.feed-banner-content {
    text-align: left;
    max-width: 700px;
    margin: 0;
    padding: 0 50px;
}

.feed-banner-title {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 200, 81, 0.4);
    letter-spacing: 3px;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 200, 81, 0.4);
    }
    50% {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 200, 81, 0.6);
    }
}

.feed-banner-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.4;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9), 0 1px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.feed-banner-description {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.7;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 1px 5px rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

.feed-banner-description strong {
    font-weight: 800;
}

.feed-banner-description .em-logo-em {
    color: #00C851;
}

.feed-banner-description .em-logo-88 {
    color: #FFD700;
}

.feed-banner-tagline {
    font-size: 1.15rem;
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 40px;
    font-style: italic;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 1px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

/* Feed Banner Buttons */
.feed-banner-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 30px;
}

.feed-btn {
    display: inline-block;
    padding: 16px 50px;
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.4s ease;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.feed-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.feed-btn:hover::before {
    width: 300px;
    height: 300px;
}

.feed-btn-join {
    background: linear-gradient(135deg, #dccf14 0%, #b89c00 100%);
    color: #ffffff;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.feed-btn-join:hover {
    background: linear-gradient(135deg, #b9ff17 0%, #25dc14 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.6);
    color: #ffffff;
}

.feed-btn-prediction {
    background: linear-gradient(135deg, #228B22 0%, #1a6b1a 100%);
    color: #ffffff;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.feed-btn-prediction:hover {
    background: linear-gradient(135deg, #32CD32 0%, #228B22 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(34, 139, 34, 0.6);
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 991px) {
    .feed-banner-section {
        min-height: 70vh;
        padding: 100px 0 70px;
        background-size: contain;
    }
    
    .feed-banner-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .feed-banner-subtitle {
        font-size: 1.6rem;
    }
    
    .feed-banner-description {
        font-size: 1.15rem;
    }
    
    .feed-btn {
        padding: 14px 40px;
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .feed-banner-section {
        min-height: auto;
        height: auto;
        width: 100%;
        margin: 0;
        padding: 80px 15px 30px;
        background-size: 100% auto;
        background-position: top center;
        background-repeat: no-repeat;
        display: block;
    }
    
    .feed-banner-content {
        padding: 0 20px;
        max-width: 100%;
        text-align: center;
        position: relative;
        z-index: 2;
    }
    
    .feed-banner-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        letter-spacing: 2px;
        line-height: 1.2;
        color: #FFD700;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.4);
        font-weight: 900;
        text-transform: uppercase;
    }
    
    .feed-banner-subtitle {
        font-size: 1.1rem;
        margin-bottom: 12px;
        line-height: 1.4;
        color: #ffffff;
        text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.9);
    }
    
    .feed-banner-description {
        font-size: 0.95rem;
        margin-bottom: 10px;
        line-height: 1.6;
    }
    
    .feed-banner-tagline {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .feed-banner-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        justify-content: center;
    }
    
    .feed-btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 30px;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 575px) {
    .feed-banner-section {
        min-height: auto;
        height: auto;
        width: 100%;
        margin: 0;
        padding: 80px 10px 20px;
        background-size: 100% auto;
        background-position: top center;
        background-repeat: no-repeat;
        display: block;
    }
    
    .feed-banner-content {
        padding: 0 15px;
        max-width: 100%;
        text-align: center;
        position: relative;
        z-index: 2;
    }
    
    .feed-banner-title {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
        line-height: 1.2;
        color: #FFD700;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 215, 0, 0.4);
        font-weight: 900;
        text-transform: uppercase;
    }
    
    .feed-banner-subtitle {
        font-size: 1rem;
        margin-bottom: 10px;
        line-height: 1.3;
        color: #ffffff;
        text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.9);
    }
    
    .feed-banner-description {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .feed-banner-tagline {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    
    .feed-banner-buttons {
        gap: 12px;
    }
    
    .feed-btn {
        width: 100%;
        max-width: 250px;
        padding: 12px 25px;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    .stats-banner {
        margin-top: 20px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .feed-banner-section {
        min-height: auto;
        height: auto;
        width: 100%;
        margin: 0;
        padding: 80px 10px 15px;
        background-size: 100% auto;
        background-position: top center;
        background-repeat: no-repeat;
        display: block;
    }
    
    .feed-banner-content {
        padding: 0 15px;
        max-width: 100%;
        text-align: center;
        position: relative;
        z-index: 2;
    }
    
    .feed-banner-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
        line-height: 1.3;
        color: #FFD700;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 12px rgba(255, 215, 0, 0.4);
        font-weight: 900;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
    
    .feed-banner-subtitle {
        font-size: 0.95rem;
        margin-bottom: 10px;
        line-height: 1.4;
        color: #ffffff;
        text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.9);
    }
    
    .feed-banner-description {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .feed-banner-tagline {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    
    .feed-banner-buttons {
        gap: 12px;
    }
    
    .feed-btn {
        max-width: 260px;
        padding: 13px 25px;
        font-size: 0.85rem;
    }
    
    /* How-to-Play Section */
    .how-to-play .col-md-4 {
        padding: 25px 15px;
    }
    
    .how-to-play h3 {
        font-size: 1.3rem;
    }
    
    .how-to-play p {
        font-size: 0.95rem;
    }
    
    .step-number {
        font-size: 2.8rem;
    }
    
    /* Stats Banner */
    .stats-banner {
        padding: 40px 0;
        margin-top: 20px;
    }
    
    .stats-banner h2 {
        font-size: 2.8rem;
    }
    
    .stats-banner p {
        font-size: 0.85rem;
    }
}

/* 3. How-to-Play */
.how-to-play {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    display: none;
}

.how-to-play::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00C851, transparent);
}

.how-to-play .col-md-4 {
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.how-to-play .col-md-4:hover {
    transform: translateY(-10px);
}

.how-to-play h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.how-to-play h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00C851, transparent);
    border-radius: 2px;
}

.how-to-play p {
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.step-number {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #00C851 0%, #00A844 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    margin-right: 10px;
    display: inline-block;
    text-shadow: 0 4px 20px rgba(0, 200, 81, 0.3);
    position: relative;
}

.step-number::before {
    content: attr(data-number);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.5;
}

/* 4. Stats Banner */
.stats-banner {
    background: linear-gradient(135deg, #00C851 0%, #00A844 50%, #00C851 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    display: none;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
}

.stats-banner .col-6,
.stats-banner .col-md-3 {
    position: relative;
    padding: 20px;
    transition: transform 0.3s ease;
}

.stats-banner .col-6:hover,
.stats-banner .col-md-3:hover {
    transform: scale(1.1);
}

.stats-banner .col-6::after,
.stats-banner .col-md-3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.stats-banner .col-6:hover::after,
.stats-banner .col-md-3:hover::after {
    width: 60%;
}

.stats-banner h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.stats-banner h2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.stats-banner p {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* 5. About Us */
#about {
    background-color: #1a1a1a;
}
#about img {
    border-radius: 8px;
}

/* UCL Banner Section */
.ucl-banner {
    background-color: #0a0a0a;
    padding: 60px 0;
}

.ucl-card {
    background: linear-gradient(135deg, #1a2332 0%, #1e2838 50%, #1a2332 100%);
    border: 2px solid rgba(14, 165, 233, 0.5);
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ucl-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.8), transparent);
}

.ucl-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.25);
    border-color: rgba(14, 165, 233, 0.7);
}

.ucl-logo-wrapper {
    text-align: center;
    padding: 20px 0;
}

/* UCL friendly visual banner on the left */
.ucl-art {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #0f1720;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.ucl-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/11;
    transform: scale(1);
    transition: transform 0.4s ease;
}
.ucl-art:hover img {
    transform: scale(1.05);
}

.ucl-title { margin-bottom: 20px; }
.ucl-title h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin: 0 0 8px 0;
}
.ucl-title .ucl-subtitle { 
    color: #7eb8e6;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
}

/* UCL logo container (image-based) */
.ucl-logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.ucl-logo-bg {
    position: relative;
    width: 140px;
    height: 140px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 2px 8px rgba(255, 255, 255, 0.85),
        inset 0 -2px 8px rgba(0, 0, 0, 0.08);
    border: 3px solid rgba(14, 165, 233, 0.4); /* Sky blue */
    transition: all 0.3s ease;
    z-index: 2;
}

.ucl-logo-bg:hover {
    transform: scale(1.05);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.3),
        inset 0 2px 12px rgba(255, 255, 255, 0.9),
        inset 0 -2px 12px rgba(0, 0, 0, 0.12);
    border-color: rgba(14, 165, 233, 0.6);
}

.ucl-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.16) 0%, transparent 70%);
    border-radius: 50%;
    animation: gentle-glow 4s ease-in-out infinite;
    z-index: 1;
}

.ucl-logo {
    max-width: 90px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
    z-index: 3;
    position: relative;
}

.ucl-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.25));
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.ucl-logo-wrapper h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ucl-subtitle {
    color: #00C851;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.ucl-content h4 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 18px;
    margin-top: 5px;
}

.ucl-content p {
    color: #b8c5d6;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.ucl-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ucl-features li {
    color: #e8eef5;
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.ucl-features i {
    color: #22c55e;
    margin-right: 12px;
    font-size: 1rem;
    flex-shrink: 0;
}

.ucl-cta {
    background: rgba(0, 0, 0, 0.3);
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ucl-cta h5 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.ucl-cta p {
    color: #FFC107;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Responsive Design for UCL Card */
@media (max-width: 992px) {
    .ucl-logo-wrapper,
    .ucl-content,
    .ucl-cta {
        margin-bottom: 30px;
    }
    
    .ucl-cta {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .ucl-card {
        padding: 30px 20px;
    }
    .ucl-art { margin-bottom: 10px; }
    
    .ucl-logo-wrapper h3 {
        font-size: 1.4rem;
    }
    
    .ucl-content h4 {
        font-size: 1.3rem;
    }
    
    .ucl-features li {
        font-size: 0.95rem;
    }
}

/* European Leagues Section */
.european-leagues {
    background-color: #121212;
    padding: 60px 0;
}

.european-leagues h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-align: center;
}

.european-leagues .section-divider {
    background: linear-gradient(90deg, transparent, #00C851, transparent);
    width: 80px;
    height: 4px;
    margin: 0 auto 40px;
    box-shadow: 0 2px 10px rgba(0, 200, 81, 0.5);
}

/* AFC Banner Section */
.afc-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.afc-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(50, 50, 50, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(50, 50, 50, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.afc-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border: 2px solid rgba(0, 200, 81, 0.3);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 4px 15px rgba(0, 200, 81, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.afc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00C851, transparent);
    border-radius: 20px 20px 0 0;
}

.afc-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 6px 20px rgba(0, 200, 81, 0.25);
    border-color: rgba(0, 200, 81, 0.5);
}

.afc-logo-wrapper {
    text-align: center;
    padding: 25px 0;
    position: relative;
}

.afc-icon {
    font-size: 5rem;
    color: #FFA500;
    margin-bottom: 15px;
    animation: pulse 2s ease-in-out infinite;
}

.afc-logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    padding: 0;
}

.afc-logo-bg {
    position: relative;
    width: 140px;
    height: 140px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 2px 8px rgba(255, 255, 255, 0.8),
        inset 0 -2px 8px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(0, 200, 81, 0.4);
    transition: all 0.3s ease;
    z-index: 2;
}

.afc-logo-bg:hover {
    transform: scale(1.05);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.3),
        inset 0 2px 12px rgba(255, 255, 255, 0.9),
        inset 0 -2px 12px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 200, 81, 0.6);
}

.afc-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 200, 81, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: gentle-glow 4s ease-in-out infinite;
    z-index: 1;
}

.afc-logo {
    max-width: 90px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
    z-index: 3;
    position: relative;
}

.afc-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.25));
}

.afc-title-section {
    position: relative;
}

.afc-title-underline {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #00C851, #00A041, #00C851);
    margin: 12px auto 18px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.afc-title-underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: gentle-shimmer 3s infinite;
}

@keyframes gentle-glow {
    0%, 100% {
        opacity: 0.15;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.25;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes gentle-shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.afc-logo-wrapper h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.afc-subtitle {
    color: #00C851;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.afc-content h4 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.afc-content p {
    color: #bdc3c7;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.afc-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.afc-features li {
    color: #f0f0f0;
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.afc-features i {
    color: #FFA500;
    margin-right: 10px;
    font-size: 1.1rem;
}

.afc-cta {
    background-color: #222;
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid #333;
}

.afc-cta h5 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.afc-cta p {
    color: #FFD700;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Responsive Design for AFC Card */
@media (max-width: 992px) {
    .afc-logo-wrapper,
    .afc-content,
    .afc-cta {
        margin-bottom: 30px;
    }
    
    .afc-cta {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .afc-card {
        padding: 30px 20px;
    }
    
    .afc-icon {
        font-size: 4rem;
    }
    
    .afc-logo-wrapper h3 {
        font-size: 1.4rem;
    }
    
    .afc-content h4 {
        font-size: 1.3rem;
    }
    
    .afc-features li {
        font-size: 0.95rem;
    }
}

/* Cambodia Prime League Section */
.cambodia-league {
    background-color: #1a1a1a;
}

.cambodia-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
    border: 2px solid #DC143C;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.2);
    transition: all 0.3s ease;
}

.cambodia-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(220, 20, 60, 0.3);
}

.cambodia-logo-wrapper {
    text-align: center;
    padding: 20px 0;
}

.cambodia-icon {
    font-size: 5rem;
    color: #DC143C;
    margin-bottom: 15px;
    animation: pulse 2s ease-in-out infinite;
}

.cambodia-logo-wrapper h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cambodia-subtitle {
    color: #DC143C;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.cambodia-content h4 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cambodia-content p {
    color: #adb5bd;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cambodia-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cambodia-features li {
    color: #f0f0f0;
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.cambodia-features i {
    color: #DC143C;
    margin-right: 10px;
    font-size: 1.1rem;
}

.cambodia-cta {
    background-color: #222;
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid #333;
}

.cambodia-cta h5 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cambodia-cta p {
    color: #FFD700;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Svay Rieng FC Focus Section */
.svay-rieng-focus {
    background-color: #121212;
}

.club-card {
    background-color: #222;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
}

.club-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.25);
    border-color: #DC143C;
}

.club-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.club-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.club-info {
    flex: 1;
}

.club-info h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    margin-bottom: 5px;
}

.club-info p {
    color: #DC143C;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.club-content {
    flex-grow: 1;
}

.club-content p {
    color: #adb5bd;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Cambodia Sections */
@media (max-width: 992px) {
    .cambodia-logo-wrapper,
    .cambodia-content,
    .cambodia-cta {
        margin-bottom: 30px;
    }
    
    .cambodia-cta {
        margin-top: 20px;
    }
    
    .club-header {
        margin-bottom: 15px;
    }
    
    .club-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .club-info h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .cambodia-card {
        padding: 30px 20px;
    }
    
    .cambodia-icon {
        font-size: 4rem;
    }
    
    .cambodia-logo-wrapper h3 {
        font-size: 1.4rem;
    }
    
    .cambodia-content h4 {
        font-size: 1.3rem;
    }
    
    .cambodia-features li {
        font-size: 0.95rem;
    }
    
    .club-card {
        padding: 20px;
    }
    
    .club-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-right: 12px;
    }
    
    .club-info h4 {
        font-size: 1.1rem;
    }
    
    .club-info p {
        font-size: 0.85rem;
    }
    
    .club-content p {
        font-size: 0.9rem;
    }
}

/* Cambodia Futsal Section */
.cambodia-futsal {
    background-color: #1a1a1a;
}

.futsal-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
    border: 2px solid #FF6B35;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.futsal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.3);
}

.futsal-logo-wrapper {
    text-align: center;
    padding: 20px 0;
}

.futsal-icon {
    font-size: 5rem;
    color: #FF6B35;
    margin-bottom: 15px;
    animation: pulse 2s ease-in-out infinite;
}

.futsal-logo-wrapper h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.futsal-subtitle {
    color: #FF6B35;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.futsal-content h4 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.futsal-content p {
    color: #adb5bd;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.futsal-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.futsal-features li {
    color: #f0f0f0;
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.futsal-features i {
    color: #FF6B35;
    margin-right: 10px;
    font-size: 1.1rem;
}

.futsal-cta {
    background-color: #222;
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid #333;
}

.futsal-cta h5 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.futsal-cta p {
    color: #FFD700;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Futsal Tournaments Section */
.futsal-tournaments {
    background-color: #121212;
}

.tournament-card {
    background-color: #222;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tournament-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.25);
    border-color: #FF6B35;
}

.tournament-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.tournament-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.tournament-info {
    flex: 1;
}

.tournament-info h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    margin-bottom: 5px;
}

.tournament-info p {
    color: #FF6B35;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tournament-content {
    flex-grow: 1;
}

.tournament-content p {
    color: #adb5bd;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Futsal Sections */
@media (max-width: 992px) {
    .futsal-logo-wrapper,
    .futsal-content,
    .futsal-cta {
        margin-bottom: 30px;
    }
    
    .futsal-cta {
        margin-top: 20px;
    }
    
    .tournament-header {
        margin-bottom: 15px;
    }
    
    .tournament-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .tournament-info h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .futsal-card {
        padding: 30px 20px;
    }
    
    .futsal-icon {
        font-size: 4rem;
    }
    
    .futsal-logo-wrapper h3 {
        font-size: 1.4rem;
    }
    
    .futsal-content h4 {
        font-size: 1.3rem;
    }
    
    .futsal-features li {
        font-size: 0.95rem;
    }
    
    .tournament-card {
        padding: 20px;
    }
    
    .tournament-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-right: 12px;
    }
    
    .tournament-info h4 {
        font-size: 1.1rem;
    }
    
    .tournament-info p {
        font-size: 0.85rem;
    }
    
    .tournament-content p {
        font-size: 0.9rem;
    }
}

/* Cambodia Volleyball Section */
.cambodia-volleyball {
    background-color: #1a1a1a;
}

.volleyball-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
    border: 2px solid #4A90E2;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
}

.volleyball-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(74, 144, 226, 0.3);
}

.volleyball-logo-wrapper {
    text-align: center;
    padding: 20px 0;
}

.volleyball-icon {
    font-size: 5rem;
    color: #4A90E2;
    margin-bottom: 15px;
    animation: pulse 2s ease-in-out infinite;
}

.volleyball-logo-wrapper h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.volleyball-subtitle {
    color: #4A90E2;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.volleyball-content h4 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.volleyball-content p {
    color: #adb5bd;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.volleyball-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.volleyball-features li {
    color: #f0f0f0;
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.volleyball-features i {
    color: #4A90E2;
    margin-right: 10px;
    font-size: 1.1rem;
}

.volleyball-cta {
    background-color: #222;
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid #333;
}

.volleyball-cta h5 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.volleyball-cta p {
    color: #FFD700;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Volleyball Competitions Section */
.volleyball-competitions {
    background-color: #121212;
}

.competition-card {
    background-color: #222;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
}

.competition-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.25);
    border-color: #4A90E2;
}

.competition-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.competition-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.competition-info {
    flex: 1;
}

.competition-info h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    margin-bottom: 5px;
}

.competition-info p {
    color: #4A90E2;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.competition-content {
    flex-grow: 1;
}

.competition-content p {
    color: #adb5bd;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Volleyball Sections */
@media (max-width: 992px) {
    .volleyball-logo-wrapper,
    .volleyball-content,
    .volleyball-cta {
        margin-bottom: 30px;
    }
    
    .volleyball-cta {
        margin-top: 20px;
    }
    
    .competition-header {
        margin-bottom: 15px;
    }
    
    .competition-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .competition-info h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .volleyball-card {
        padding: 30px 20px;
    }
    
    .volleyball-icon {
        font-size: 4rem;
    }
    
    .volleyball-logo-wrapper h3 {
        font-size: 1.4rem;
    }
    
    .volleyball-content h4 {
        font-size: 1.3rem;
    }
    
    .volleyball-features li {
        font-size: 0.95rem;
    }
    
    .competition-card {
        padding: 20px;
    }
    
    .competition-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-right: 12px;
    }
    
    .competition-info h4 {
        font-size: 1.1rem;
    }
    
    .competition-info p {
        font-size: 0.85rem;
    }
    
    .competition-content p {
        font-size: 0.9rem;
    }
}

/* Cambodia Teams Section */
.cambodia-teams {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

/* Enhanced Lucky FC Hero Card */
.lucky-fc-hero-card {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 30%, #228B22 70%, #FFD700 100%);
    border: 3px solid #FFD700;
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 40px rgba(34, 139, 34, 0.4),
        0 5px 15px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.lucky-fc-hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 50px rgba(34, 139, 34, 0.5),
        0 8px 25px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: #32CD32;
}

.lucky-fc-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.lucky-fc-logo-section {
    position: relative;
    z-index: 2;
}

.lucky-fc-logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.lucky-fc-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 2px 10px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.lucky-fc-logo:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.4),
        0 4px 15px rgba(255, 215, 0, 0.5);
}

.lucky-fc-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(255, 215, 0, 0.3);
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.lucky-fc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #228B22;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lucky-fc-badge i {
    color: #FFD700;
    font-size: 1rem;
}

.lucky-fc-content {
    position: relative;
    z-index: 2;
}

.lucky-fc-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    line-height: 1.2;
}

.lucky-fc-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f8f9fa;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.lucky-fc-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.lucky-fc-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.lucky-fc-stat:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.stat-icon i {
    font-size: 1.2rem;
    color: #1a1a1a;
}

.stat-label {
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.lucky-fc-betting-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

.betting-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.odds-container {
    margin-bottom: 25px;
}

.odds-label {
    display: block;
    font-size: 1rem;
    color: #f8f9fa;
    margin-bottom: 5px;
    font-weight: 600;
}

.odds-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(255, 215, 0, 0.4);
    display: block;
}

.lucky-fc-bet-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    padding: 15px 30px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 6px 20px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.lucky-fc-bet-btn:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: #1a1a1a;
    text-decoration: none;
    border-color: #32CD32;
}

.next-match-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.next-match-info i {
    color: #FFD700;
}

/* Enhanced Lucky FC Team Card in Grid */
.lucky-fc-team-card {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 30%, #228B22 70%, #FFD700 100%);
    border: 3px solid #FFD700;
    border-radius: 20px;
    padding: 0;
    height: 100%;
    min-height: 420px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 8px 25px rgba(34, 139, 34, 0.4),
        0 2px 10px rgba(255, 215, 0, 0.3);
}

.lucky-fc-team-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #32CD32;
    box-shadow: 
        0 15px 40px rgba(34, 139, 34, 0.5),
        0 5px 20px rgba(255, 215, 0, 0.4);
}

.lucky-fc-card-header {
    padding: 25px 20px 15px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: 20px 20px 0 0;
    position: relative;
}

.lucky-fc-team-logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.lucky-fc-team-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.lucky-fc-team-card:hover .lucky-fc-team-logo {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 3px 12px rgba(255, 215, 0, 0.5);
}

.lucky-fc-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: lucky-glow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes lucky-glow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.lucky-fc-crown {
    position: absolute;
    top: 10px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    animation: crown-pulse 2s ease-in-out infinite;
}

@keyframes crown-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.lucky-fc-crown i {
    color: #1a1a1a;
    font-size: 1.1rem;
}

.lucky-fc-team-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.lucky-fc-team-name {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.lucky-fc-team-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.group-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.favorite-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.lucky-fc-team-stats {
    margin-bottom: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.lucky-fc-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 15px;
    border-radius: 12px;
    border-left: 3px solid #FFD700;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.lucky-fc-stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.stat-icon-small {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-small.odds-icon {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.stat-icon-small i {
    font-size: 0.9rem;
    color: #ffffff;
}

.stat-icon-small.odds-icon i {
    color: #1a1a1a;
}

.stat-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}

.stat-label-small {
    font-size: 0.75rem;
    color: #f8f9fa;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value-small {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 700;
    margin-top: 2px;
}

.stat-value-small.odds-highlight {
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: 900;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.lucky-fc-team-bet-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    overflow: hidden;
}

.lucky-fc-team-bet-btn:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 6px 20px rgba(255, 215, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: #1a1a1a;
    text-decoration: none;
    border-color: #32CD32;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.lucky-fc-team-bet-btn:hover .btn-glow {
    left: 100%;
}

/* Responsive Design for Lucky FC Cards */
@media (max-width: 1199px) {
    .lucky-fc-hero-card {
        padding: 35px 25px;
    }
    
    .lucky-fc-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .lucky-fc-logo {
        width: 100px;
        height: 100px;
    }
    
    .lucky-fc-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .lucky-fc-hero-card {
        padding: 30px 20px;
    }
    
    .lucky-fc-logo {
        width: 90px;
        height: 90px;
    }
    
    .lucky-fc-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .lucky-fc-heading {
        font-size: 1.7rem;
        margin-top: 20px;
    }
    
    .lucky-fc-description {
        font-size: 1rem;
    }
    
    .lucky-fc-stats-grid {
        margin-top: 20px;
    }
    
    .betting-title {
        font-size: 1.2rem;
    }
    
    .odds-value {
        font-size: 2.2rem;
    }
    
    .lucky-fc-team-card {
        min-height: 400px;
    }
    
    .lucky-fc-team-logo {
        width: 80px;
        height: 80px;
    }
    
    .lucky-fc-team-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .lucky-fc-hero-card {
        padding: 25px 15px;
        border-radius: 20px;
    }
    
    .lucky-fc-logo {
        width: 80px;
        height: 80px;
    }
    
    .lucky-fc-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    
    .lucky-fc-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .lucky-fc-heading {
        font-size: 1.4rem;
        margin-top: 25px;
        margin-bottom: 15px;
    }
    
    .lucky-fc-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .lucky-fc-stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 15px;
    }
    
    .lucky-fc-stat {
        padding: 10px 12px;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
    }
    
    .stat-icon i {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .lucky-fc-betting-card {
        padding: 25px 15px;
        margin-top: 20px;
    }
    
    .betting-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .odds-value {
        font-size: 2rem;
    }
    
    .lucky-fc-bet-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .next-match-info {
        font-size: 0.85rem;
        margin-top: 15px;
    }
    
    /* Team Card Mobile */
    .lucky-fc-team-card {
        min-height: 380px;
        margin-bottom: 20px;
    }
    
    .lucky-fc-card-header {
        padding: 20px 15px 10px 15px;
    }
    
    .lucky-fc-team-logo {
        width: 70px;
        height: 70px;
    }
    
    .lucky-fc-glow-effect {
        width: 100px;
        height: 100px;
    }
    
    .lucky-fc-crown {
        width: 30px;
        height: 30px;
        top: 8px;
        right: 12px;
    }
    
    .lucky-fc-crown i {
        font-size: 1rem;
    }
    
    .lucky-fc-team-info {
        padding: 15px;
    }
    
    .lucky-fc-team-name {
        font-size: 1.2rem;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }
    
    .lucky-fc-team-badges {
        margin-bottom: 15px;
    }
    
    .group-badge,
    .favorite-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    .lucky-fc-stat-item {
        padding: 8px 12px;
        gap: 10px;
    }
    
    .stat-icon-small {
        width: 28px;
        height: 28px;
    }
    
    .stat-icon-small i {
        font-size: 0.8rem;
    }
    
    .stat-label-small {
        font-size: 0.7rem;
    }
    
    .stat-value-small {
        font-size: 0.85rem;
    }
    
    .stat-value-small.odds-highlight {
        font-size: 1rem;
    }
    
    .lucky-fc-team-bet-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .lucky-fc-hero-card {
        padding: 20px 12px;
        border-radius: 15px;
    }
    
    .lucky-fc-logo {
        width: 70px;
        height: 70px;
    }
    
    .lucky-fc-title {
        font-size: 1.6rem;
    }
    
    .lucky-fc-heading {
        font-size: 1.2rem;
    }
    
    .lucky-fc-description {
        font-size: 0.9rem;
    }
    
    .lucky-fc-betting-card {
        padding: 20px 12px;
    }
    
    .odds-value {
        font-size: 1.8rem;
    }
    
    .lucky-fc-bet-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .lucky-fc-team-card {
        min-height: 360px;
        border-radius: 15px;
    }
    
    .lucky-fc-team-logo {
        width: 65px;
        height: 65px;
    }
    
    .lucky-fc-team-name {
        font-size: 1.1rem;
    }
}

/* Lucky FC Team Showcase Section */
.lucky-fc-showcase {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 50px 40px;
    border-radius: 25px;
    border: 2px solid rgba(34, 139, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.lucky-fc-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(34, 139, 34, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.showcase-header {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.showcase-subtitle {
    font-size: 1.2rem;
    color: #32CD32;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.team-photo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    height: 400px;
}

.team-photo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.team-photo-card.home-kit:hover {
    box-shadow: 0 15px 40px rgba(34, 139, 34, 0.4);
}

.team-photo-card.away-kit:hover {
    box-shadow: 0 15px 40px rgba(135, 206, 235, 0.4);
}

.photo-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-photo-card:hover .team-photo {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-photo-card:hover .photo-overlay {
    opacity: 1;
}

.overlay-content {
    width: 100%;
}

.kit-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.kit-description {
    font-size: 1rem;
    color: #f8f9fa;
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.team-stats-mini {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stat-mini i {
    color: #FFD700;
    font-size: 1rem;
}

.stat-mini span {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.kit-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.home-badge {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
    color: #ffffff;
}

.away-badge {
    background: linear-gradient(135deg, #87CEEB 0%, #4169E1 100%);
    color: #ffffff;
}

.team-photo-card:hover .kit-badge {
    transform: scale(1.1);
}

.team-achievement-banner {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 30%, #228B22 70%, #FFD700 100%);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.3);
}

.team-achievement-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    position: relative;
    z-index: 2;
}

.achievement-icon i {
    font-size: 2rem;
    color: #1a1a1a;
}

.achievement-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.achievement-text {
    font-size: 1.1rem;
    color: #f8f9fa;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.bet-quick-action {
    position: relative;
    z-index: 2;
}

.quick-odds {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.quick-bet-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    padding: 12px 25px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.quick-bet-btn:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    color: #1a1a1a;
    text-decoration: none;
}

/* Responsive Design for Team Showcase */
@media (max-width: 1199px) {
    .lucky-fc-showcase {
        padding: 40px 30px;
    }
    
    .showcase-title {
        font-size: 2.2rem;
    }
    
    .team-photo-card {
        height: 380px;
    }
}

@media (max-width: 991px) {
    .lucky-fc-showcase {
        padding: 35px 25px;
    }
    
    .showcase-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .showcase-subtitle {
        font-size: 1.1rem;
    }
    
    .team-photo-card {
        height: 360px;
        margin-bottom: 25px;
    }
    
    .achievement-title {
        font-size: 1.6rem;
    }
    
    .achievement-text {
        font-size: 1rem;
    }
    
    .achievement-icon {
        width: 70px;
        height: 70px;
    }
    
    .achievement-icon i {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .lucky-fc-showcase {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .showcase-header {
        margin-bottom: 30px;
    }
    
    .showcase-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .showcase-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .team-photo-card {
        height: 320px;
        margin-bottom: 20px;
    }
    
    .photo-overlay {
        padding: 20px;
    }
    
    .kit-title {
        font-size: 1.5rem;
    }
    
    .kit-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .team-stats-mini {
        gap: 15px;
    }
    
    .stat-mini {
        padding: 6px 12px;
    }
    
    .stat-mini span {
        font-size: 0.8rem;
    }
    
    .kit-badge {
        top: 15px;
        right: 15px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .team-achievement-banner {
        padding: 25px 20px;
        margin-top: 30px;
    }
    
    .achievement-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .achievement-icon i {
        font-size: 1.5rem;
    }
    
    .achievement-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .achievement-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .quick-odds {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .quick-bet-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .lucky-fc-showcase {
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    .showcase-title {
        font-size: 1.6rem;
    }
    
    .showcase-subtitle {
        font-size: 0.9rem;
    }
    
    .team-photo-card {
        height: 280px;
    }
    
    .photo-overlay {
        padding: 15px;
    }
    
    .kit-title {
        font-size: 1.3rem;
    }
    
    .kit-description {
        font-size: 0.85rem;
    }
    
    .team-stats-mini {
        gap: 10px;
    }
    
    .stat-mini {
        padding: 5px 10px;
    }
    
    .kit-badge {
        top: 12px;
        right: 12px;
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .team-achievement-banner {
        padding: 20px 15px;
    }
    
    .achievement-icon {
        width: 50px;
        height: 50px;
    }
    
    .achievement-icon i {
        font-size: 1.3rem;
    }
    
    .achievement-title {
        font-size: 1.2rem;
    }
    
    .achievement-text {
        font-size: 0.9rem;
    }
    
    .quick-odds {
        font-size: 1.6rem;
    }
    
    .quick-bet-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}

/* Trophy Showcase Section */
.trophy-showcase-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 60px 40px;
    border-radius: 25px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.trophy-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(34, 139, 34, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.trophy-section-title {
    font-size: 3rem;
    font-weight: 900;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.trophy-section-subtitle {
    font-size: 1.3rem;
    color: #32CD32;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    position: relative;
    z-index: 2;
}

.trophy-display-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin: 50px 0;
    position: relative;
    z-index: 2;
}

.main-trophy-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trophy-spotlight {
    position: relative;
    padding: 40px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.main-trophy {
    text-align: center;
    position: relative;
    padding: 40px 30px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 20px;
    box-shadow: 
        0 15px 40px rgba(255, 215, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.main-trophy:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(255, 215, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.trophy-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 30px;
    animation: trophy-glow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes trophy-glow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.trophy-icon {
    font-size: 4rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: block;
}

.main-trophy .trophy-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-trophy .trophy-year {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.trophy-achievement {
    background: rgba(26, 26, 26, 0.2);
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.secondary-trophies {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.secondary-trophy {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.secondary-trophy:hover {
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.secondary-trophy .trophy-icon {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 15px;
}

.secondary-trophy .trophy-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.secondary-trophy .trophy-year {
    font-size: 1rem;
    color: #32CD32;
    font-weight: 600;
}

.achievement-stats-banner {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 30%, #228B22 70%, #FFD700 100%);
    border-radius: 20px;
    padding: 40px 30px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.achievement-stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.achievement-stat .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.achievement-stat .stat-label {
    font-size: 1.1rem;
    color: #f8f9fa;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Media Gallery Section */
.media-gallery-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 60px 40px;
    border-radius: 25px;
    border: 2px solid rgba(34, 139, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.media-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(34, 139, 34, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-section-title {
    font-size: 3rem;
    font-weight: 900;
    color: #32CD32;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.gallery-section-subtitle {
    font-size: 1.3rem;
    color: #FFD700;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    position: relative;
    z-index: 2;
}

.gallery-nav {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.gallery-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(34, 139, 34, 0.3);
    color: #ffffff;
    padding: 12px 25px;
    margin: 0 10px 10px 0;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-nav-btn:hover,
.gallery-nav-btn.active {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
    border-color: #32CD32;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.3);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
}

.media-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 250px;
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.media-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.media-image,
.media-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #ffffff;
    background: rgba(34, 139, 34, 0.8);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s ease;
}

.media-item:hover .video-play-icon {
    background: rgba(34, 139, 34, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: all 0.3s ease;
}

.media-item:hover .media-overlay {
    opacity: 1;
}

.media-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.media-description {
    font-size: 0.95rem;
    color: #f8f9fa;
    line-height: 1.5;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.media-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #32CD32 0%, #228B22 100%);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.media-play-btn:hover {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.4);
}

/* Fan Comments Section */
.fan-comments-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 60px 40px;
    border-radius: 25px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.fan-comments-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(34, 139, 34, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.comments-section-title {
    font-size: 3rem;
    font-weight: 900;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.comments-section-subtitle {
    font-size: 1.3rem;
    color: #32CD32;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    position: relative;
    z-index: 2;
}

.comment-form-card {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border: 2px solid rgba(34, 139, 34, 0.3);
    border-radius: 20px;
    padding: 40px 35px;
    position: relative;
    z-index: 2;
}

.form-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #32CD32;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.form-title i {
    color: #FFD700;
    font-size: 1.4rem;
}

.comment-input,
.comment-textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.comment-input:focus,
.comment-textarea:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #32CD32;
    box-shadow: 0 0 0 0.2rem rgba(50, 205, 50, 0.25);
    color: #ffffff;
}

.comment-input::placeholder,
.comment-textarea::placeholder {
    color: #adb5bd;
}

.submit-comment-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #32CD32 0%, #228B22 100%);
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.3);
}

.submit-comment-btn:hover {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 139, 34, 0.4);
}

.fan-comment-card {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.fan-comment-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.fan-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #32CD32 0%, #228B22 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fan-avatar i {
    font-size: 1.5rem;
    color: #ffffff;
}

.fan-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.comment-rating {
    font-size: 1rem;
    margin-bottom: 3px;
}

.comment-time {
    font-size: 0.85rem;
    color: #adb5bd;
    font-weight: 500;
}

.comment-text {
    font-size: 1rem;
    color: #f8f9fa;
    line-height: 1.6;
    margin-bottom: 15px;
}

.comment-actions {
    display: flex;
    gap: 15px;
}

.comment-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #adb5bd;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.comment-action-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    color: #FFD700;
}

.load-more-comments-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(34, 139, 34, 0.3);
    color: #32CD32;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.load-more-comments-btn:hover {
    background: rgba(34, 139, 34, 0.2);
    border-color: #32CD32;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.3);
}

/* Responsive Design for New Sections */
@media (max-width: 1199px) {
    .trophy-showcase-section,
    .media-gallery-section,
    .fan-comments-section {
        padding: 50px 30px;
    }
    
    .trophy-section-title,
    .gallery-section-title,
    .comments-section-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .trophy-display-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .secondary-trophies {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .trophy-showcase-section,
    .media-gallery-section,
    .fan-comments-section {
        padding: 40px 25px;
    }
    
    .trophy-section-title,
    .gallery-section-title,
    .comments-section-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .trophy-section-subtitle,
    .gallery-section-subtitle,
    .comments-section-subtitle {
        font-size: 1.1rem;
    }
    
    .main-trophy .trophy-icon {
        font-size: 3.5rem;
    }
    
    .main-trophy .trophy-title {
        font-size: 1.6rem;
    }
    
    .secondary-trophy .trophy-icon {
        font-size: 2.2rem;
    }
    
    .achievement-stat .stat-number {
        font-size: 2.5rem;
    }
    
    .media-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .media-item {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .trophy-showcase-section,
    .media-gallery-section,
    .fan-comments-section {
        padding: 35px 20px;
        border-radius: 20px;
    }
    
    .trophy-section-title,
    .gallery-section-title,
    .comments-section-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .trophy-section-subtitle,
    .gallery-section-subtitle,
    .comments-section-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .trophy-display-grid {
        margin: 30px 0;
    }
    
    .main-trophy {
        padding: 30px 25px;
    }
    
    .main-trophy .trophy-icon {
        font-size: 3rem;
    }
    
    .main-trophy .trophy-title {
        font-size: 1.4rem;
    }
    
    .secondary-trophies {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .secondary-trophy {
        padding: 20px 15px;
    }
    
    .secondary-trophy .trophy-icon {
        font-size: 2rem;
    }
    
    .secondary-trophy .trophy-title {
        font-size: 1rem;
    }
    
    .achievement-stats-banner {
        padding: 30px 20px;
    }
    
    .achievement-stat .stat-number {
        font-size: 2.2rem;
    }
    
    .achievement-stat .stat-label {
        font-size: 1rem;
    }
    
    .gallery-nav-btn {
        padding: 10px 20px;
        margin: 0 5px 8px 0;
        font-size: 0.8rem;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .media-item {
        height: 200px;
    }
    
    .video-play-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .media-overlay {
        padding: 20px;
    }
    
    .media-title {
        font-size: 1.2rem;
    }
    
    .media-description {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .media-play-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .comment-form-card {
        padding: 30px 25px;
    }
    
    .form-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    
    .comment-input,
    .comment-textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .submit-comment-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .fan-comment-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .fan-avatar {
        width: 45px;
        height: 45px;
    }
    
    .fan-avatar i {
        font-size: 1.3rem;
    }
    
    .fan-name {
        font-size: 1.1rem;
    }
    
    .comment-text {
        font-size: 0.95rem;
    }
    
    .comment-action-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .load-more-comments-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .trophy-showcase-section,
    .media-gallery-section,
    .fan-comments-section {
        padding: 30px 15px;
        border-radius: 15px;
    }
    
    .trophy-section-title,
    .gallery-section-title,
    .comments-section-title {
        font-size: 1.6rem;
    }
    
    .trophy-section-subtitle,
    .gallery-section-subtitle,
    .comments-section-subtitle {
        font-size: 0.9rem;
    }
    
    .main-trophy {
        padding: 25px 20px;
    }
    
    .main-trophy .trophy-icon {
        font-size: 2.5rem;
    }
    
    .main-trophy .trophy-title {
        font-size: 1.2rem;
    }
    
    .secondary-trophy {
        padding: 15px 12px;
    }
    
    .secondary-trophy .trophy-icon {
        font-size: 1.8rem;
    }
    
    .secondary-trophy .trophy-title {
        font-size: 0.9rem;
    }
    
    .achievement-stats-banner {
        padding: 25px 15px;
    }
    
    .achievement-stat .stat-number {
        font-size: 2rem;
    }
    
    .achievement-stat .stat-label {
        font-size: 0.9rem;
    }
    
    .gallery-nav-btn {
        padding: 8px 15px;
        font-size: 0.75rem;
    }
    
    .media-item {
        height: 180px;
    }
    
    .video-play-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .media-overlay {
        padding: 15px;
    }
    
    .media-title {
        font-size: 1.1rem;
    }
    
    .media-description {
        font-size: 0.85rem;
    }
    
    .comment-form-card {
        padding: 25px 20px;
    }
    
    .form-title {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .comment-input,
    .comment-textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .submit-comment-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
    
    .fan-comment-card {
        padding: 15px;
    }
    
    .fan-avatar {
        width: 40px;
        height: 40px;
    }
    
    .fan-avatar i {
        font-size: 1.2rem;
    }
    
    .fan-name {
        font-size: 1rem;
    }
    
    .comment-text {
        font-size: 0.9rem;
    }
    
    .load-more-comments-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

.featured-team-card {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 50%, #FFD700 100%);
    border: 3px solid #FFD700;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(34, 139, 34, 0.4);
    transition: all 0.3s ease;
}

.featured-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
    border-color: #32CD32;
}

.featured-team-logo {
    padding: 20px;
}

.featured-team-logo i {
    font-size: 5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.featured-team-logo h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.team-badge {
    background: #ffffff;
    color: #228B22;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    border: 2px solid #FFD700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.featured-team-content {
    color: #ffffff;
}

.featured-team-content h4 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.featured-team-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #f5f5f5;
}

.team-stats-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.team-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.team-stat i {
    font-size: 1.5rem;
    color: #FFD700;
}

.team-stat span {
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
}

.featured-team-cta {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.4);
}

.featured-team-cta h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.odds-display {
    font-size: 2rem;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.featured-team-cta .btn-warning {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 2px solid #ffffff;
    color: #1a1a1a;
    font-weight: 800;
    padding: 12px 35px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.featured-team-cta .btn-warning:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
    border-color: #32CD32;
}

/* Team Cards */
.team-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #333;
    border-radius: 15px;
    padding: 0;
    height: 100%;
    min-height: 320px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #DC143C, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.team-card:hover {
    transform: translateY(-8px);
    border-color: #DC143C;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

/* Individual Team Styles */
.team-card.cpp-nam:hover {
    border-color: #32CD32;
    box-shadow: 0 10px 30px rgba(50, 205, 50, 0.4);
}

.team-card.cpp-nam::before {
    background: linear-gradient(90deg, transparent, #32CD32, transparent);
}

.team-card.drg:hover {
    border-color: #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.team-card.drg::before {
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.team-card.tuol-pongro:hover {
    border-color: #888;
    box-shadow: 0 10px 30px rgba(136, 136, 136, 0.4);
}

.team-card.tuol-pongro::before {
    background: linear-gradient(90deg, transparent, #888, transparent);
}

.team-card.mighty-man:hover {
    border-color: #1E90FF;
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.4);
}

.team-card.mighty-man::before {
    background: linear-gradient(90deg, transparent, #1E90FF, transparent);
}

.team-card.c-light:hover {
    border-color: #87CEEB;
    box-shadow: 0 10px 30px rgba(135, 206, 235, 0.4);
}

.team-card.c-light::before {
    background: linear-gradient(90deg, transparent, #87CEEB, transparent);
}

.team-card.bks:hover {
    border-color: #D2691E;
    box-shadow: 0 10px 30px rgba(210, 105, 30, 0.4);
}

.team-card.bks::before {
    background: linear-gradient(90deg, transparent, #D2691E, transparent);
}

.team-card.abingdon:hover {
    border-color: #4169E1;
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.4);
}

.team-card.abingdon::before {
    background: linear-gradient(90deg, transparent, #4169E1, transparent);
}

.team-card.csb:hover {
    border-color: #00BFFF;
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.4);
}

.team-card.csb::before {
    background: linear-gradient(90deg, transparent, #00BFFF, transparent);
}

.team-card-header {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 25px 20px;
    text-align: center;
    border-bottom: 2px solid #333;
}

.team-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.team-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.team-card:hover .team-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.team-card:hover .team-icon::after {
    opacity: 1;
    transform: scale(1.3);
}

.team-icon i {
    font-size: 2.5rem;
    color: #fff;
    transition: transform 0.3s ease;
}

.team-card:hover .team-icon i {
    transform: scale(1.1);
}

.team-card-header h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.team-subtitle {
    color: #DC143C;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

/* Team-specific subtitle colors */
.team-card.cpp-nam .team-subtitle {
    color: #32CD32;
}

.team-card.drg .team-subtitle {
    color: #FFD700;
}

.team-card.tuol-pongro .team-subtitle {
    color: #999;
}

.team-card.mighty-man .team-subtitle {
    color: #1E90FF;
}

.team-card.c-light .team-subtitle {
    color: #87CEEB;
}

.team-card.bks .team-subtitle {
    color: #D2691E;
}

.team-card.abingdon .team-subtitle {
    color: #4169E1;
}

.team-card.csb .team-subtitle {
    color: #00BFFF;
}

.team-card-body {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.team-card-body p {
    color: #adb5bd;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.team-features {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.team-features li {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.team-features li i {
    color: #32CD32;
    margin-right: 8px;
    font-size: 0.8rem;
}

.match-info {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 10px 0;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.team-odds {
    background: linear-gradient(135deg, #DC143C, #FF6347);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-top: 10px;
}

.team-card .btn {
    margin: 0 20px 20px 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.team-card .btn:hover {
    transform: scale(1.05);
}

/* Team-specific button hover effects */
.team-card.cpp-nam .btn:hover {
    background-color: #32CD32;
    border-color: #32CD32;
    color: #fff;
}

.team-card.drg .btn:hover {
    background-color: #FFD700;
    border-color: #FFD700;
    color: #1a1a1a;
}

.team-card.tuol-pongro .btn:hover {
    background-color: #666;
    border-color: #666;
    color: #fff;
}

.team-card.mighty-man .btn:hover {
    background-color: #1E90FF;
    border-color: #1E90FF;
    color: #fff;
}

.team-card.c-light .btn:hover {
    background-color: #87CEEB;
    border-color: #87CEEB;
    color: #1a1a1a;
}

.team-card.bks .btn:hover {
    background-color: #D2691E;
    border-color: #D2691E;
    color: #fff;
}

.team-card.abingdon .btn:hover {
    background-color: #4169E1;
    border-color: #4169E1;
    color: #fff;
}

.team-card.csb .btn:hover {
    background-color: #00BFFF;
    border-color: #00BFFF;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .featured-team-card {
        padding: 30px 20px;
    }
    
    /* Team grid responsive adjustments */
    .team-card {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    /* Mobile: 1 column layout */
    .cambodia-teams .row .col-md-6.col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .team-card {
        margin-bottom: 20px;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    /* Tablet: 2 columns */
    .cambodia-teams .row .col-md-6.col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 991px) {
    .featured-team-logo h3 {
        font-size: 2rem;
    }
    
    .featured-team-content h4 {
        font-size: 1.5rem;
    }
    
    .team-stats-row {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .featured-team-logo i {
        font-size: 3.5rem;
    }
    
    .featured-team-logo h3 {
        font-size: 1.8rem;
    }
    
    .featured-team-content h4 {
        font-size: 1.3rem;
        margin-top: 20px;
    }
    
    .odds-display {
        font-size: 1.5rem;
    }
    
    .team-card-header h4 {
        font-size: 1.1rem;
    }
}

/* New Team Cards with Logos */
.team-card-new {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 0;
    height: 100%;
    min-height: 380px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.team-card-new:hover {
    transform: translateY(-8px);
    border-color: #00C851;
    box-shadow: 0 15px 40px rgba(0, 200, 81, 0.3);
}

.team-card-new.featured-team {
    border-color: #FFD700;
    background: linear-gradient(135deg, #2a2a1a 0%, #3a3a2a 100%);
}

.team-card-new.featured-team:hover {
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.team-logo-container {
    padding: 30px 20px 20px 20px;
    text-align: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 20px 20px 0 0;
    position: relative;
}

.team-logo-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00C851, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card-new:hover .team-logo-container::after {
    opacity: 1;
}

.team-card-new.featured-team .team-logo-container::after {
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.team-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.team-card-new:hover .team-logo-img {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.4));
}

.team-info {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.team-info h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-group {
    color: #00C851;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card-new.featured-team .team-group {
    color: #FFD700;
}

.team-stats {
    margin-bottom: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #00C851;
}

.team-card-new.featured-team .stat-item {
    border-left-color: #FFD700;
}

.stat-label {
    color: #adb5bd;
    font-size: 0.85rem;
    font-weight: 500;
}

.stat-value {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.stat-value.odds {
    color: #00C851;
    font-size: 1.1rem;
    font-weight: 800;
}

.team-card-new.featured-team .stat-value.odds {
    color: #FFD700;
}

.team-card-new .btn {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-width: 2px;
}

.team-card-new .btn:hover {
    transform: scale(1.05);
}

/* Responsive adjustments for new team cards */
@media (max-width: 767px) {
    .team-card-new {
        min-height: 350px;
        margin-bottom: 20px;
    }
    
    .team-logo-img {
        width: 70px;
        height: 70px;
    }
    
    .team-info h4 {
        font-size: 1.2rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .team-card-new {
        min-height: 360px;
    }
}

.league-card {
    background-color: #222;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
}

.league-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 200, 81, 0.25);
    border-color: #00C851;
}

.league-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.league-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.league-info {
    flex: 1;
}

.league-info h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    margin-bottom: 5px;
}

.league-info p {
    color: #00C851;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.league-content {
    flex-grow: 1;
    margin-bottom: 20px;
}

.league-content > p {
    color: #adb5bd;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.league-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.league-features li {
    color: #f0f0f0;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.league-features i {
    color: #00C851;
    margin-right: 8px;
    font-size: 0.9rem;
}

.league-card .btn {
    align-self: flex-start;
}

/* Responsive Design for League Cards */
@media (max-width: 992px) {
    .league-header {
        margin-bottom: 15px;
    }
    
    .league-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .league-info h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .league-card {
        padding: 20px;
    }
    
    .league-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-right: 12px;
    }
    
    .league-info h4 {
        font-size: 1.1rem;
    }
    
    .league-info p {
        font-size: 0.85rem;
    }
    
    .league-content > p {
        font-size: 0.9rem;
    }
    
    .league-features li {
        font-size: 0.85rem;
    }
}

/* 6. Our Games - Blog Grid Style */
#games {
    background-color: #121212;
}
.blog-card {
    background-color: #222;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 200, 81, 0.2); /* EM Green shadow */
    border-color: #00C851;
}
.blog-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.blog-card:hover .blog-image img {
    transform: scale(1.05);
}
.blog-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.blog-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}
.blog-text {
    color: #adb5bd;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}
.blog-content .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Responsive Design for Blog Grid */
@media (max-width: 768px) {
    .blog-image {
        height: 180px;
    }
    .blog-content {
        padding: 15px;
    }
    .blog-title {
        font-size: 1rem;
    }
    .blog-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .blog-image {
        height: 160px;
    }
    .blog-content {
        padding: 12px;
    }
    .blog-title {
        font-size: 0.95rem;
    }
    .blog-text {
        font-size: 0.8rem;
    }
}

/* 7. Blog Section */
#blog {
    background-color: #1a1a1a;
}
.dropdown-container {
    position: relative;
    width: 100%;
}
.dropdown-btn {
    width: 100%;
    background-color: #222;
    border: 1px solid #333;
    color: #fff;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dropdown-btn:hover {
    background-color: #333;
    border-color: #00C851; /* EM Green */
}
.dropdown-btn.active {
    background-color: #00C851; /* EM Green */
    border-color: #00C851;
}
.dropdown-icon {
    transition: transform 0.3s ease;
    color: #00C851; /* EM Green */
}
.dropdown-btn.active .dropdown-icon {
    transform: rotate(180deg);
}
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #222;
    border: 1px solid #333;
    border-top: none;
    border-radius: 0 0 8px 8px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.dropdown-content.show {
    display: block;
}
.dropdown-item {
    padding: 15px 20px;
    border-bottom: 1px solid #333;
    transition: background-color 0.3s ease;
}
.dropdown-item:last-child {
    border-bottom: none;
}
.dropdown-item:hover {
    background-color: #333;
}
.dropdown-item h5 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 700;
}
.dropdown-item p {
    color: #adb5bd;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* 8. Why Choose Us */
#why-us {
    background-color: #1a1a1a;
}
.why-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
}
.why-list .fa-check-circle {
    color: #28a745; /* Green checkmark */
    margin-right: 10px;
}
.feature-box {
    background-color: #222;
    padding: 25px;
    border-radius: 8px;
    height: 100%;
}
.feature-box i {
    font-size: 2.5rem;
    color: #00C851; /* EM Green */
    margin-bottom: 15px;
}

/* 8. Footer */
.footer-section {
    background-color: #000;
}
.cta-box {
    border: 2px solid #555;
    padding: 20px;
    display: inline-block;
}
.cta-box h2 {
    color: #00C851; /* EM Green */
    margin: 0;
    font-size: 2rem;
}
.cta-box p {
    margin: 0;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
}
.cta-box .brand-text {
    color: #00C851; /* EM Green */
    font-weight: 700;
}
.cta-box .gold-text {
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700, #FF8C00);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    animation: goldGradient 3s ease-in-out infinite;
}
.contact-info a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 1.1rem;
}
.contact-info a:hover {
    color: #00C851; /* EM Green */
}
.social-icons a {
    color: #888;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}
.social-icons a:hover {
    color: #00C851; /* EM Green */
}
.footer-hr {
    border-color: #333;
}
.footer-links {
    color: #888;
}
.footer-links a {
    color: #888;
    text-decoration: none;
    margin-right: 15px;
}
.footer-links a:hover {
    color: #fff;
}

/* Gold Gradient Animation */
@keyframes goldGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Careers Page Styles */
.careers-hero {
    background: url('https://via.placeholder.com/1920x1080.png?text=Careers+Hero+Background') no-repeat center center;
    background-size: cover;
}

/* Career Openings Section */
#career-openings {
    background-color: #1a1a1a;
}

.career-card {
    background-color: #222;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 200, 81, 0.15);
    border-color: #00C851;
}

.career-header {
    padding: 20px 20px 15px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.career-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.career-type {
    background-color: #00C851;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.career-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.career-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.career-location,
.career-salary {
    color: #adb5bd;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.career-location i,
.career-salary i {
    color: #00C851;
}

.career-description {
    color: #adb5bd;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.career-requirements {
    margin-bottom: 20px;
}

.career-requirements h6 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.career-requirements ul {
    margin: 0;
    padding-left: 20px;
}

.career-requirements li {
    color: #adb5bd;
    font-size: 0.9rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.career-content .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Career Events Section */
#career-events {
    background-color: #121212;
}

.event-card {
    background-color: #222;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 200, 81, 0.15);
    border-color: #00C851;
}

.event-date {
    background: linear-gradient(135deg, #00C851, #00A041);
    color: #fff;
    padding: 20px;
    text-align: center;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-day {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.event-month {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.event-location,
.event-time {
    color: #adb5bd;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-location i,
.event-time i {
    color: #00C851;
    width: 16px;
}

.event-description {
    color: #adb5bd;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.event-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.event-feature {
    background-color: #333;
    color: #00C851;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.event-content .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Why Work With Us Section */
#why-work-with-us {
    background-color: #1a1a1a;
}

.benefit-box {
    background-color: #222;
    padding: 30px 20px;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 200, 81, 0.15);
    border: 1px solid #00C851;
}

.benefit-box i {
    font-size: 3rem;
    color: #00C851;
    margin-bottom: 20px;
}

.benefit-box h5 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefit-box p {
    color: #adb5bd;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Careers Page */
@media (max-width: 768px) {
    .career-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .career-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        flex-direction: row;
        justify-content: center;
        min-width: auto;
        padding: 15px;
    }
    
    .event-day {
        font-size: 1.5rem;
        margin-right: 10px;
        margin-bottom: 0;
    }
    
    .event-month {
        font-size: 0.8rem;
    }
    
    .event-details {
        flex-direction: column;
        gap: 5px;
    }
    
    .benefit-box {
        padding: 25px 15px;
    }
    
    .benefit-box i {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .career-content {
        padding: 15px;
    }
    
    .career-header {
        padding: 15px 15px 10px;
    }
    
    .event-content {
        padding: 15px;
    }
    
    .event-date {
        padding: 12px;
    }
    
    .event-day {
        font-size: 1.3rem;
    }
    
    .benefit-box {
        padding: 20px 12px;
    }
    
    .benefit-box i {
        font-size: 2rem;
        margin-bottom: 12px;
    }
}

/* ============================================
   ADVERTISEMENT LAYOUT SYSTEM
   ============================================ */

/* Top Advertisement Banner */
.ad-container.ad-top {
    background-color: transparent;
    padding: 0;
    margin-top: 76px; /* Account for fixed navbar */
    border: none;
    width: 100%;
    animation: slideInFromTop 0.8s ease-out;
}

.ad-banner {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ad-banner:hover {
    transform: none;
    transition: all 0.3s ease;
}

.ad-top-banner {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
}

.ad-content {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.ad-label {
    display: none;
}

.ad-placeholder {
    text-align: center;
    color: #adb5bd;
}

.ad-placeholder i {
    font-size: 2rem;
    color: #00C851;
    margin-bottom: 5px;
    opacity: 0.6;
}

.ad-placeholder h4 {
    font-size: 1rem;
    color: #fff;
    margin: 5px 0;
    font-weight: 600;
}

.ad-placeholder h5 {
    font-size: 0.9rem;
    color: #fff;
    margin: 5px 0;
    font-weight: 600;
}

.ad-placeholder p {
    font-size: 0.75rem;
    color: #6c757d;
    margin: 0;
}

.ad-full-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    max-height: 90px;
    position: relative;
}

/* Lightning effect removed */

.ad-sidebar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
}

.ad-close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #adb5bd;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.ad-close-btn:hover {
    background-color: rgba(220, 53, 69, 0.8);
    color: #fff;
    transform: rotate(90deg);
}

.ad-close-btn i {
    font-size: 0.8rem;
}

/* Content Wrapper with Sidebar Ads */
.content-with-ads-wrapper {
    display: flex;
    position: relative;
    max-width: 1440px;
    margin: 40px auto 0;
    padding: 0 24px;
    gap: 24px;
    align-items: flex-start;
    background-color: #121212;
}

/* Main Content Area */
.main-content-area {
    flex: 1;
    min-width: 0; /* Prevent flex item overflow */
    background-color: #121212;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
    overflow: hidden;
}

/* Sidebar Ads */
.ad-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-self: flex-start;
    z-index: 100;
}

.ad-sidebar-left {
    width: 300px;
    min-width: 300px;
    order: -1;
    animation: slideInFromLeft 1s ease-out;
}

.ad-sidebar-right {
    width: 260px;
    min-width: 260px;
    animation: slideInFromRight 1s ease-out;
}

.ad-sidebar-banner {
    width: 100%;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(0, 200, 81, 0.18), transparent 55%),
                radial-gradient(circle at bottom right, rgba(0, 200, 81, 0.12), transparent 55%),
                #111318;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
}

/* Left Sidebar Ad Styling - match compact right-ad layout */
.ad-sidebar-left .ad-sidebar-banner {
    height: 300px;
    width: 160px;
    margin: 0 auto;
}

/* Right Sidebar Ad Styling */
.ad-right-1 {
    height: 300px;
    width: 160px;
    animation: slideInFromRight 1.2s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-right-2 {
    height: 300px;
    width: 160px;
    animation: slideInFromRight 1.4s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-right-1 .ad-sidebar-image,
.ad-right-2 .ad-sidebar-image {
    width: 160px;
    height: 300px;
    object-fit: cover;
}

.ad-vertical {
    padding: 20px;
}

.ad-vertical i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.ad-vertical h5 {
    font-size: 1rem;
    margin: 10px 0 5px;
}

.ad-vertical p {
    font-size: 0.8rem;
}

/* Responsive Design for Ads - Keep Desktop Layout on Mobile */
@media (max-width: 1400px) {
    .ad-sidebar-right {
        width: 300px;
        min-width: 300px;
    }
}

@media (max-width: 1200px) {
    .content-with-ads-wrapper {
        flex-direction: column;
    }
    
    .ad-sidebar-left,
    .ad-sidebar-right {
        display: none;
    }
    
    .ad-sidebar-banner {
        min-height: auto;
        height: auto;
    }
    
    .ad-sidebar-left .ad-sidebar-banner {
        max-width: 300px;
        width: 300px;
        height: auto;
    }
    
    .ad-sidebar-left .ad-sidebar-image {
        width: 100%;
        height: auto;
        max-height: 900px;
        object-fit: contain;
    }
    
    .ad-right-1,
    .ad-right-2 {
        height: auto;
        width: 160px;
        max-width: 160px;
    }
    
    .ad-right-1 .ad-sidebar-image,
    .ad-right-2 .ad-sidebar-image {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .ad-container.ad-top {
        padding: 5px;
        margin-top: 70px;
    }
    
    .ad-top-banner {
        height: auto;
        max-width: 100%;
    }
    
    .ad-full-image {
        max-height: 80px;
    }
    
    .ad-placeholder h4 {
        font-size: 0.85rem;
    }
    
    .ad-placeholder i {
        font-size: 1.5rem;
    }
    
    .ad-sidebar-left,
    .ad-sidebar-right {
        padding: 10px;
        flex-direction: column;
        gap: 10px;
    }
    
    .ad-sidebar-left .ad-sidebar-banner {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    .ad-sidebar-left .ad-sidebar-image {
        width: 100%;
        height: auto;
        max-height: 600px;
        object-fit: contain;
    }
    
    .ad-sidebar-right {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
    
    .ad-right-1,
    .ad-right-2 {
        width: 160px;
        max-width: 160px;
        height: auto;
    }
    
    .ad-right-1 .ad-sidebar-image,
    .ad-right-2 .ad-sidebar-image {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: contain;
    }
}

/* iPhone 14 Pro Max and similar mobile devices */
@media (max-width: 576px) {
    .ad-container.ad-top {
        padding: 0;
        margin-top: 60px;
    }
    
    .ad-top-banner {
        height: auto;
        border-radius: 0;
    }
    
    .ad-full-image {
        max-height: 60px;
        width: 100%;
    }
    
    .ad-placeholder h4 {
        font-size: 0.75rem;
    }
    
    .ad-placeholder p {
        font-size: 0.65rem;
    }
    
    .ad-placeholder i {
        font-size: 1.2rem;
    }
    
    .ad-label {
        font-size: 0.6rem;
        padding: 1px 5px;
    }
    
    .ad-close-btn {
        width: 20px;
        height: 20px;
        top: 5px;
        right: 5px;
    }
    
    .ad-sidebar {
        padding: 10px 5px;
    }
    
    /* Left sidebar ad - full width on mobile */
    .ad-sidebar-left {
        padding: 10px;
    }
    
    .ad-sidebar-left .ad-sidebar-banner {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    .ad-sidebar-left .ad-sidebar-image {
        width: 100%;
        height: auto;
        max-height: 500px;
        object-fit: contain;
    }
    
    /* Right sidebar ads - stack vertically on mobile */
    .ad-sidebar-right {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
    }
    
    .ad-right-1,
    .ad-right-2 {
        width: 100%;
        max-width: 160px;
        height: auto;
        margin: 0 auto;
    }
    
    .ad-right-1 .ad-sidebar-image,
    .ad-right-2 .ad-sidebar-image {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: contain;
    }
}

/* Extra small devices - iPhone SE, etc */
@media (max-width: 430px) {
    .ad-full-image {
        max-height: 50px;
    }
    
    .ad-sidebar-left .ad-sidebar-image {
        max-height: 400px;
    }
    
    .ad-right-1,
    .ad-right-2 {
        max-width: 140px;
    }
    
    .ad-right-1 .ad-sidebar-image,
    .ad-right-2 .ad-sidebar-image {
        max-height: 260px;
    }
}

/* Ad Animation Effects */
@keyframes adPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 200, 81, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 200, 81, 0);
    }
}

.ad-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 200, 81, 0.6), 
        transparent
    );
    animation: adShimmer 3s ease-in-out infinite;
}

@keyframes adShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Sticky Ad Behavior */
.ad-sidebar.sticky {
    position: fixed;
    top: 90px;
}

/* Ad Loading State */
.ad-banner.loading {
    background: linear-gradient(
        90deg,
        #1a1a1a 0%,
        #2a2a2a 50%,
        #1a1a1a 100%
    );
    background-size: 200% 100%;
    animation: adLoading 1.5s ease-in-out infinite;
}

@keyframes adLoading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Slide-in Animations for Ads */
@keyframes slideInFromTop {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Lightning Flash Effect */
@keyframes lightning {
    0%, 100% {
        left: -100%;
        opacity: 0;
    }
    50% {
        left: 100%;
        opacity: 1;
    }
}

/* Border Lightning Glow */
@keyframes borderLightning {
    0%, 100% {
        box-shadow: 
            0 0 5px rgba(0, 200, 81, 0.3),
            0 0 10px rgba(0, 200, 81, 0.2);
    }
    50% {
        box-shadow: 
            0 0 20px rgba(0, 200, 81, 0.8),
            0 0 30px rgba(0, 200, 81, 0.6),
            0 0 40px rgba(0, 200, 81, 0.4),
            inset 0 0 10px rgba(0, 200, 81, 0.2);
    }
}

/* ============================================
   LATEST NEWS SECTION
   ============================================ */

.latest-news-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
}

.news-header {
    background: linear-gradient(135deg, #0a1520 0%, #0d1b2a 50%, #0a1520 100%);
    padding: 25px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-radius: 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    border-left: 5px solid #00C851;
    border-bottom: 2px solid rgba(0, 200, 81, 0.3);
    position: relative;
    overflow: hidden;
}

.news-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 200, 81, 0.05) 50%, transparent 100%);
    pointer-events: none;
}

.news-header h2 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 1;
}

.all-news-link {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 25px;
    border-radius: 4px;
    background: linear-gradient(135deg, #00C851 0%, #00A041 100%);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 200, 81, 0.3);
}

.all-news-link:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #00A041 0%, #008033 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 200, 81, 0.5);
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 650px;
}

.news-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    background: #0a0a0a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 200, 81, 0.4);
    border-color: rgba(0, 200, 81, 0.5);
}

.news-card-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.news-card-small:nth-child(2) {
    grid-column: 2 / 4;
    grid-row: 1;
}

.news-card-small:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

.news-card-small:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
}

.news-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.news-card-large .news-image {
    height: 100%;
}

.news-card-small .news-image {
    height: 100%;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 21, 32, 0.3) 0%, rgba(10, 21, 32, 0.95) 100%);
}

.news-meta {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    z-index: 3;
}

.news-date,
.news-views {
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    backdrop-filter: blur(15px);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.news-badge {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 4;
}

.badge-orange {
    background: #FF6B35;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.5);
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
}

.news-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    z-index: 3;
    color: #ffffff;
}

.news-card-large .news-content h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.news-card-small .news-content h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.news-content p {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin: 0;
    line-height: 1.5;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.news-khmer {
    font-family: 'Khmer OS Siemreap', 'Noto Sans Khmer', sans-serif;
    font-size: 1rem;
}

/* Responsive Design for News Section */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        padding: 0 20px;
    }
    
    .news-card-large,
    .news-card-small:nth-child(2),
    .news-card-small:nth-child(3),
    .news-card-small:nth-child(4) {
        grid-column: 1;
        grid-row: auto;
    }
    
    .news-card-large .news-image {
        height: 400px;
    }
    
    .news-card-small .news-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .news-header {
        padding: 15px 20px;
    }
    
    .news-header h2 {
        font-size: 1.4rem;
    }
    
    .news-card-large .news-content h3 {
        font-size: 1.5rem;
    }
    
    .news-card-small .news-content h4 {
        font-size: 1rem;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 8px;
    }
}

/* ============================================
   NEWS PAGE STYLES
   ============================================ */

.news-page-header {
    position: relative;
    margin-top: 76px;
    min-height: 80px;
    max-height: 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #00a651 0%, #008844 100%);
}

.news-page-header .banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.news-page-header .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.news-page-header .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 166, 81, 0.75) 0%, rgba(0, 166, 81, 0.5) 50%, rgba(0, 136, 68, 0.3) 100%);
    z-index: 2;
}

.news-page-header .banner-content {
    position: relative;
    z-index: 3;
    padding: 10px 0;
}

.news-page-header h1 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: 1px;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.news-page-header .khmer-subtitle {
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 2px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.news-page-header .khmer-subtitle-2 {
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 500;
    margin-bottom: 3px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.news-page-header .registration-text {
    color: #ffffff;
    font-size: 0.65rem;
    margin-bottom: 5px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.news-page-header .em88-brand {
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 3px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

.news-page-header .em88-brand .em88-em {
    color: #00C851;
}

.news-page-header .em88-brand .em88-88 {
    color: #FFD700;
}

.news-page-header .tagline {
    color: #FFD700;
    font-size: 0.65rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.news-page-header .banner-cta {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.news-page-header .btn-lucky-fan {
    background: #dc3545;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 8px 15px;
    border-radius: 5px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
    width: auto;
    min-width: 120px;
}

.news-page-header .btn-lucky-fan:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.6);
}

.news-page-header .btn-prediction {
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 8px 15px;
    border-radius: 5px;
    border: 2px solid #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: auto;
    min-width: 120px;
}

.news-page-header .btn-prediction:hover {
    background: #ffffff;
    color: #00a651;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.all-news-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
}

.news-article-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 200, 81, 0.3);
}

.news-article-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.news-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-article-card:hover .news-article-image img {
    transform: scale(1.1);
}

.news-article-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #adb5bd;
    font-size: 0.9rem;
}

.news-article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-article-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.news-article-content p {
    color: #adb5bd;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.news-article-content .btn {
    align-self: flex-start;
    margin-top: auto;
}

.pagination .page-link {
    background-color: #1a1a1a;
    border-color: rgba(0, 200, 81, 0.4);
    color: #00C851;
}

.pagination .page-link:hover {
    background-color: #00C851;
    border-color: #00C851;
    color: #ffffff;
}

.pagination .page-item.active .page-link {
    background-color: #00C851;
    border-color: #00C851;
}

@media (max-width: 991px) {
    .news-page-header {
        min-height: 60px;
        max-height: 60px;
    }
    
    .news-page-header h1 {
        font-size: 0.9rem;
    }
    
    .news-page-header .em88-brand {
        font-size: 0.7rem;
    }
    
    .news-page-header .tagline {
        font-size: 0.5rem;
    }
}

@media (max-width: 768px) {
    .news-page-header {
        min-height: 30px;
        max-height: 30px;
        text-align: left;
    }
    
    .news-page-header .banner-content {
        padding: 2px 8px;
        display: flex;
        align-items: center;
        height: 100%;
    }
    
    .news-page-header .row {
        width: 100%;
        margin: 0;
        align-items: center;
    }
    
    .news-page-header .col-lg-8 {
        flex: 1;
        padding: 0;
    }
    
    .news-page-header .col-lg-4 {
        flex: 0 0 auto;
        padding: 0;
    }
    
    .news-page-header h1 {
        font-size: 0.6rem;
        margin: 0;
        line-height: 1;
        display: inline;
        margin-right: 8px;
    }
    
    .news-page-header .khmer-subtitle,
    .news-page-header .khmer-subtitle-2,
    .news-page-header .registration-text,
    .news-page-header .tagline {
        display: none;
    }
    
    .news-page-header .em88-brand {
        font-size: 0.5rem;
        margin: 0;
        display: inline;
        margin-left: 5px;
    }
    
    .news-page-header .banner-cta {
        margin: 0;
        gap: 4px;
        flex-direction: row;
        display: inline-flex;
    }
    
    .news-page-header .btn-lucky-fan,
    .news-page-header .btn-prediction {
        font-size: 0.4rem;
        padding: 2px 6px;
        min-width: 40px;
        border-radius: 2px;
        height: 18px;
        line-height: 1;
    }
    
    .news-article-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .news-page-header {
        min-height: 28px;
        max-height: 28px;
    }
    
    .news-page-header .banner-content {
        padding: 2px 6px;
        display: flex;
        align-items: center;
        height: 100%;
    }
    
    .news-page-header h1 {
        font-size: 0.55rem;
        letter-spacing: 0;
        margin: 0;
        line-height: 1;
        display: inline;
        margin-right: 6px;
    }
    
    .news-page-header .khmer-subtitle,
    .news-page-header .khmer-subtitle-2,
    .news-page-header .registration-text,
    .news-page-header .tagline {
        display: none;
    }
    
    .news-page-header .em88-brand {
        font-size: 0.45rem;
        margin: 0;
        display: inline;
        margin-left: 4px;
    }
    
    .news-page-header .banner-cta {
        gap: 3px;
        margin: 0;
        flex-direction: row;
        display: inline-flex;
    }
    
    .news-page-header .btn-lucky-fan,
    .news-page-header .btn-prediction {
        font-size: 0.35rem;
        padding: 2px 4px;
        min-width: 35px;
        border-radius: 2px;
        height: 16px;
        line-height: 1;
    }
}

/* iPhone 14 Pro Max Optimization (430px width) */
@media (max-width: 430px) and (min-width: 390px) {
    .news-page-header {
        min-height: 30px;
        max-height: 30px;
    }
    
    .news-page-header .banner-content {
        padding: 2px 8px;
        display: flex;
        align-items: center;
        height: 100%;
    }
    
    .news-page-header h1 {
        font-size: 0.6rem;
        margin: 0;
        line-height: 1;
        display: inline;
        margin-right: 8px;
    }
    
    .news-page-header .khmer-subtitle,
    .news-page-header .khmer-subtitle-2,
    .news-page-header .registration-text,
    .news-page-header .tagline {
        display: none;
    }
    
    .news-page-header .em88-brand {
        font-size: 0.5rem;
        margin: 0;
        display: inline;
        margin-left: 6px;
    }
    
    .news-page-header .banner-cta {
        gap: 4px;
        margin: 0;
        flex-direction: row;
        display: inline-flex;
    }
    
    .news-page-header .btn-lucky-fan,
    .news-page-header .btn-prediction {
        font-size: 0.4rem;
        padding: 2px 6px;
        min-width: 40px;
        border-radius: 2px;
        height: 18px;
        line-height: 1;
    }
}

/* Sponsors Section */
.sponsors-carousel-wrapper {
    overflow: hidden;
    margin-top: 40px;
    position: relative;
}

.sponsors-carousel {
    display: flex;
    gap: 30px;
    animation: scrollSponsors 20s linear infinite;
    width: fit-content;
}

.sponsors-carousel:hover {
    animation-play-state: paused;
}

@keyframes scrollSponsors {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.sponsor-card {
    background: #3a3a3a;
    border-radius: 15px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    border: 2px solid #4a4a4a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    flex-shrink: 0;
}

.sponsor-card:hover {
    transform: translateY(-10px);
    border-color: #00C851;
    box-shadow: 0 10px 30px rgba(0, 200, 81, 0.3);
}

.sponsor-logo-box {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: #4a4a4a;
    border-radius: 10px;
    padding: 15px;
}

.sponsor-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.sponsor-card:hover .sponsor-logo {
    transform: scale(1.1);
}

.sponsor-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 10px 0 5px 0;
    text-align: center;
}

.sponsor-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #00C851;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .sponsors-carousel {
        gap: 20px;
    }
    
    .sponsor-card {
        padding: 20px 15px;
        min-width: 160px;
    }
    
    .sponsor-logo-box {
        width: 100px;
        height: 100px;
        padding: 10px;
    }
    
    .sponsor-name {
        font-size: 0.95rem;
    }
    
    .sponsor-label {
        font-size: 0.75rem;
    }
}

/* ============================================
   TOURNAMENT HEADER SECTION
   ============================================ */

.tournament-header-section {
    background: #000000;
    padding: 40px 0 30px;
    text-align: center;
}

.tournament-main-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.tournament-divider {
    width: 80px;
    height: 3px;
    background: #00C851;
    margin: 0 auto 20px;
}

.tournament-khmer-text {
    color: #adb5bd;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.tournament-schedule {
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* ============================================
   SPONSORS SECTION V2
   ============================================ */

.sponsors-section-v2 {
    background: #2a2a2a;
    padding: 50px 0;
    margin-top: 0;
}

.sponsors-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.sponsors-divider {
    width: 80px;
    height: 3px;
    background: #00C851;
    margin: 0 auto 50px;
}

.sponsors-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.sponsor-card-v2 {
    background: #3a3a3a;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sponsor-card-v2:hover {
    transform: translateY(-8px);
    border-color: #00C851;
    box-shadow: 0 8px 24px rgba(0, 200, 81, 0.3);
}

.sponsor-logo-container {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logo-v2 {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.sponsor-name-v2 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.sponsor-label-v2 {
    color: #00C851;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Responsive Sponsors Section */
@media (max-width: 992px) {
    .sponsors-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .sponsors-section-v2 {
        padding: 40px 0;
    }
    
    .sponsors-title {
        font-size: 1.5rem;
    }
    
    .sponsors-divider {
        width: 60px;
        margin-bottom: 30px;
    }
    
    .sponsors-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .sponsor-card-v2 {
        padding: 20px 15px;
    }
    
    .sponsor-logo-container {
        height: 100px;
        padding: 15px;
    }
    
    .sponsor-logo-v2 {
        max-height: 70px;
    }
    
    .sponsor-name-v2 {
        font-size: 1rem;
    }
    
    .sponsor-label-v2 {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .sponsors-section-v2 {
        padding: 30px 0;
    }
    
    .sponsors-title {
        font-size: 1.3rem;
    }
    
    .sponsors-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .sponsor-card-v2 {
        padding: 15px 10px;
    }
    
    .sponsor-logo-container {
        height: 80px;
        padding: 10px;
    }
    
    .sponsor-logo-v2 {
        max-height: 60px;
    }
    
    .sponsor-name-v2 {
        font-size: 0.9rem;
    }
}

/* Responsive Tournament Header */
@media (max-width: 768px) {
    .tournament-header-section {
        padding: 30px 20px 20px;
    }
    
    .tournament-main-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        line-height: 1.2;
    }
    
    .tournament-divider {
        width: 60px;
        height: 2px;
        margin: 0 auto 15px;
    }
    
    .tournament-khmer-text {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .tournament-schedule {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .tournament-header-section {
        padding: 25px 15px 15px;
    }
    
    .tournament-main-title {
        font-size: 1.5rem;
    }
    
    .tournament-khmer-text {
        font-size: 0.9rem;
    }
    
    .tournament-schedule {
        font-size: 0.85rem;
    }
}

/* Banner Ad Section Before Tournament */
.banner-ad-section {
    padding: 20px 0;
    background: #121212;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-ad-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-ad-container {
    position: relative;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.banner-ad-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.banner-ad-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    display: block;
}

.banner-ad-overlay {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 10;
}

.banner-ad-label {
    background: rgba(0, 0, 0, 0.75);
    color: #888;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Banner Ad */
@media (max-width: 768px) {
    .banner-ad-section {
        padding: 15px 0;
    }
    
    .banner-ad-image {
        max-height: 150px;
    }
    
    .banner-ad-label {
        font-size: 0.6rem;
        padding: 3px 6px;
    }
}

@media (max-width: 576px) {
    .banner-ad-section {
        padding: 10px 0;
    }
    
    .banner-ad-image {
        max-height: 120px;
    }
}

/* News Section Ad Styling */
.news-section-ad {
    position: absolute;
    top: 0;
    right: -180px;
    z-index: 10;
}

.news-ad-banner {
    width: 160px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(0, 200, 81, 0.18), transparent 55%),
                radial-gradient(circle at bottom right, rgba(0, 200, 81, 0.12), transparent 55%),
                #111318;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
    animation: slideInFromRight 1s ease-out;
}

.news-ad-image {
    width: 160px;
    height: 300px;
    object-fit: cover;
}

/* Update news container to accommodate the ad */
.news-container-v2 {
    position: relative;
    margin-right: 200px;
}

/* Responsive layout improvements after sponsors removal */
@media (max-width: 1200px) {
    .content-with-ads-wrapper {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .main-content-area {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .news-container-v2 {
        margin-right: 0;
    }
    
    .news-section-ad {
        display: none;
    }
}

@media (max-width: 768px) {
    .content-with-ads-wrapper {
        padding: 0 15px;
        margin: 20px auto 0;
    }
    
    .banner-ad-section {
        padding: 10px 0;
    }
}

/* ============================================
   FEATURED MATCHES SECTION
   ============================================ */

.featured-matches-section {
    padding: 60px 0;
    background: #121212;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.matches-header {
    text-align: center;
    margin-bottom: 50px;
}

.matches-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.matches-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00C851, #00A041);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.matches-subtitle {
    font-size: 1.1rem;
    color: #adb5bd;
    margin: 0;
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.match-card {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    border-color: rgba(0, 200, 81, 0.3);
}

.match-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.match-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.match-card:hover .match-image {
    transform: scale(1.05);
}

.match-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.match-status {
    background: rgba(0, 200, 81, 0.9);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.match-score {
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.match-info {
    padding: 25px;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.team-home, .team-away {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    flex: 1;
}

.team-home {
    text-align: left;
}

.team-away {
    text-align: right;
}

.vs {
    font-size: 0.9rem;
    color: #00C851;
    font-weight: 700;
    margin: 0 15px;
}

.match-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.match-round {
    color: #00C851;
    font-weight: 600;
    font-size: 0.9rem;
}

.match-date {
    color: #adb5bd;
    font-size: 0.9rem;
}

/* Responsive Featured Matches */
@media (max-width: 992px) {
    .matches-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .matches-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .featured-matches-section {
        padding: 40px 0;
    }
    
    .matches-header {
        margin-bottom: 30px;
    }
    
    .matches-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .matches-grid {
        gap: 20px;
    }
    
    .match-image-container {
        height: 200px;
    }
    
    .match-info {
        padding: 20px;
    }
    
    .match-teams {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .team-home, .team-away {
        text-align: center;
    }
    
    .vs {
        margin: 0;
    }
}

@media (max-width: 576px) {
    .matches-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .match-card {
        margin: 0 10px;
    }
    
    .matches-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   LATEST NEWS V2 - WHITE BACKGROUND DESIGN
   ============================================ */

.news-container-v2 {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-header-v2 {
    background: #000000;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid #00C851;
}

.news-header-v2 h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.all-news-btn {
    background: #00C851;
    color: #000000;
    padding: 8px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.all-news-btn:hover {
    background: #00A041;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 200, 81, 0.4);
}

.news-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    background: #ffffff;
}

.news-card-v2 {
    position: relative;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.news-card-v2:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.news-link-v2 {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-image-v2 {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card-v2:hover .news-image-v2 img {
    transform: scale(1.08);
}

.news-badges-v2 {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.news-date-badge-v2,
.news-views-badge-v2 {
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(4px);
}

.news-date-badge-v2 i,
.news-views-badge-v2 i {
    font-size: 0.7rem;
}

.news-category-badge-v2 {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.badge-cpl {
    background: #4169E1;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-text-v2 {
    padding: 18px 20px;
    background: #ffffff;
}

.news-title-v2 {
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.8em;
}

.news-desc-v2 {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive Design for News V2 */
@media (max-width: 992px) {
    .news-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-image-v2 {
        height: 180px;
    }
    
    .news-title-v2 {
        font-size: 1rem;
    }
    
    .news-desc-v2 {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    body {
        background: #000000 !important;
    }
    
    .container {
        background: #000000;
    }
    
    .news-container-v2 {
        background: transparent;
        border-radius: 0;
        box-shadow: none;
    }
    
    .news-header-v2 {
        background: transparent;
        padding: 15px 20px;
        border-left: 3px solid #00C851;
    }
    
    .news-header-v2 h2 {
        font-size: 1.1rem;
        color: #ffffff;
        font-weight: 700;
    }
    
    .all-news-btn {
        background: #00C851;
        color: #ffffff;
        padding: 6px 16px;
        border-radius: 6px;
        font-size: 0.75rem;
        font-weight: 700;
    }
    
    .all-news-btn:hover {
        background: #00A041;
        color: #ffffff;
    }
    
    .news-grid-v2 {
        grid-template-columns: 1fr;
        gap: 15px;
        background: transparent;
        padding: 15px 0;
    }
    
    .news-card-v2 {
        background: #ffffff;
        border: none;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    
    .news-card-v2:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    .news-image-v2 {
        height: 200px;
        border-radius: 0;
    }
    
    .news-badges-v2 {
        top: 10px;
        left: 10px;
    }
    
    .news-date-badge-v2,
    .news-views-badge-v2 {
        background: rgba(0, 0, 0, 0.8);
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 0.7rem;
    }
    
    .news-category-badge-v2 {
        bottom: 10px;
        left: 10px;
    }
    
    .badge-cpl {
        background: #4169E1;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 0.65rem;
    }
    
    .news-text-v2 {
        padding: 15px;
        background: #ffffff;
    }
    
    .news-title-v2 {
        font-size: 1rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 8px;
        line-height: 1.4;
    }
    
    .news-desc-v2 {
        font-size: 0.85rem;
        color: #666666;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .news-container-v2 {
        background: #1a1a1a;
        border-radius: 10px;
    }
    
    .news-header-v2 {
        padding: 12px 15px;
    }
    
    .news-header-v2 h2 {
        font-size: 0.95rem;
    }
    
    .all-news-btn {
        padding: 5px 12px;
        font-size: 0.7rem;
    }
    
    .news-grid-v2 {
        padding: 12px;
        gap: 12px;
    }
    
    .news-card-v2 {
        border-radius: 10px;
    }
    
    .news-image-v2 {
        height: 180px;
    }
    
    .news-badges-v2 {
        top: 8px;
        left: 8px;
        gap: 4px;
    }
    
    .news-date-badge-v2,
    .news-views-badge-v2 {
        padding: 3px 7px;
        font-size: 0.65rem;
    }
    
    .news-category-badge-v2 {
        bottom: 8px;
        left: 8px;
        gap: 4px;
    }
    
    .badge-cpl {
        padding: 3px 8px;
        font-size: 0.6rem;
    }
    
    .news-text-v2 {
        padding: 12px;
    }
    
    .news-title-v2 {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .news-desc-v2 {
        font-size: 0.8rem;
    }
}