/* ============================================
   MOBOBET THEME - main.css (moban-127)
   Mobile Champion Theme with Trophy Display
   Colors: #6A1B9A (Purple), #FFD700 (Gold), #1A1A1A (Black)
   Fonts: Righteous + Urbanist
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Urbanist', sans-serif;
    background: #1A1A1A;
    color: #E8E0F0;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Righteous', cursive;
    font-weight: 400;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: #FFD700;
    transition: all 0.3s ease;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

img {
    max-width: 100%;
    height: auto;
}

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

.gold-text {
    color: #FFD700;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.purple-text {
    color: #6A1B9A;
    background: linear-gradient(90deg, #6A1B9A, #9C27B0, #6A1B9A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === KEYFRAME ANIMATIONS === */

/* 1. trophyLift - Trophy rising animation with glow */
@keyframes trophyLift {
    0% {
        transform: translateY(60px) scale(0.8) rotateX(15deg);
        opacity: 0;
        filter: brightness(0.5);
    }
    30% {
        transform: translateY(20px) scale(0.95) rotateX(5deg);
        opacity: 0.6;
        filter: brightness(0.8);
    }
    60% {
        transform: translateY(-10px) scale(1.05) rotateX(-3deg);
        opacity: 0.9;
        filter: brightness(1.2);
    }
    80% {
        transform: translateY(5px) scale(1.02) rotateX(1deg);
        opacity: 1;
        filter: brightness(1.1);
    }
    100% {
        transform: translateY(0) scale(1) rotateX(0);
        opacity: 1;
        filter: brightness(1);
    }
}

/* 2. champGlow - Champion golden glow pulse */
@keyframes champGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.2), 0 0 30px rgba(106, 27, 154, 0.15);
        filter: brightness(1);
    }
    25% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.4), 0 0 50px rgba(106, 27, 154, 0.25), 0 0 80px rgba(255, 215, 0, 0.1);
        filter: brightness(1.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6), 0 0 80px rgba(106, 27, 154, 0.35), 0 0 120px rgba(255, 215, 0, 0.15);
        filter: brightness(1.25);
    }
    75% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.5), 0 0 60px rgba(106, 27, 154, 0.3), 0 0 100px rgba(255, 215, 0, 0.12);
        filter: brightness(1.15);
    }
}

/* 3. medalSpin - Medal spinning with shimmer */
@keyframes medalSpin {
    0% {
        transform: rotateY(0deg) scale(1);
        filter: brightness(1) saturate(1);
    }
    20% {
        transform: rotateY(72deg) scale(1.05);
        filter: brightness(1.2) saturate(1.2);
    }
    40% {
        transform: rotateY(144deg) scale(1.1);
        filter: brightness(1.4) saturate(1.4);
    }
    60% {
        transform: rotateY(216deg) scale(1.08);
        filter: brightness(1.3) saturate(1.3);
    }
    80% {
        transform: rotateY(288deg) scale(1.03);
        filter: brightness(1.1) saturate(1.1);
    }
    100% {
        transform: rotateY(360deg) scale(1);
        filter: brightness(1) saturate(1);
    }
}

/* 4. mobileWin - Victory celebration animation */
@keyframes mobileWin {
    0% {
        transform: scale(0.5) rotate(-10deg);
        opacity: 0;
    }
    20% {
        transform: scale(1.15) rotate(3deg);
        opacity: 0.7;
    }
    40% {
        transform: scale(0.95) rotate(-2deg);
        opacity: 0.9;
    }
    60% {
        transform: scale(1.08) rotate(1.5deg);
        opacity: 1;
    }
    80% {
        transform: scale(0.98) rotate(-0.5deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

@keyframes purplePulse {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes confettiFall {
    0% {
        transform: translateY(-10px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes victoryBanner {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }
    50% {
        transform: scaleX(1.05);
        opacity: 0.9;
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes glowRing {
    0%, 100% {
        box-shadow: 0 0 10px rgba(106, 27, 154, 0.3), inset 0 0 10px rgba(255, 215, 0, 0.1);
    }
    50% {
        box-shadow: 0 0 25px rgba(106, 27, 154, 0.6), inset 0 0 25px rgba(255, 215, 0, 0.2);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes starBurst {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.3) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 0.8;
    }
}

@keyframes borderGlow {
    0%, 100% {
        border-color: rgba(106, 27, 154, 0.3);
    }
    50% {
        border-color: rgba(255, 215, 0, 0.6);
    }
}

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.announcement-modal.active {
    display: flex;
}

.announcement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #1A1A1A, #2D1B3D);
    border: 2px solid #6A1B9A;
    border-radius: 16px;
    padding: 30px;
    max-width: 480px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 10001;
    animation: mobileWin 0.6s ease-out;
    box-shadow: 0 0 40px rgba(106, 27, 154, 0.4), 0 0 80px rgba(255, 215, 0, 0.1);
}

.announcement-close {
    position: absolute;
    top: 12px;
    right: 15px;
    background: none;
    border: none;
    color: #FFD700;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.announcement-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.announcement-header-icon {
    text-align: center;
    margin-bottom: 15px;
}

.announcement-header-icon i {
    font-size: 48px;
    color: #FFD700;
    animation: trophyLift 1s ease-out;
}

.announcement-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(106, 27, 154, 0.15);
    border: 1px solid rgba(106, 27, 154, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.announcement-item:hover {
    background: rgba(106, 27, 154, 0.3);
    border-color: #FFD700;
    transform: translateX(5px);
}

.announcement-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
}

.announcement-badge.hot {
    background: linear-gradient(135deg, #FF4444, #FF6B35);
    color: #fff;
}

.announcement-badge.new {
    background: linear-gradient(135deg, #6A1B9A, #9C27B0);
    color: #fff;
}

.announcement-badge.info {
    background: linear-gradient(135deg, #1565C0, #42A5F5);
    color: #fff;
}

.announcement-text {
    flex: 1;
    font-size: 13px;
    color: #E8E0F0;
}

.announcement-item i.fa-chevron-right {
    color: #6A1B9A;
    font-size: 12px;
}

.announcement-footer {
    text-align: center;
}

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1A1A1A;
    font-family: 'Righteous', cursive;
    font-size: 16px;
    border-radius: 30px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    animation: champGlow 3s infinite;
}

.announcement-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    color: #1A1A1A;
}

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #0D0D0D, #1A1A1A);
    border-bottom: 2px solid rgba(106, 27, 154, 0.4);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.header-time {
    font-family: 'Urbanist', sans-serif;
    font-size: 13px;
    color: #9C27B0;
    letter-spacing: 1px;
    font-weight: 500;
}

.header-btn-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-login {
    padding: 8px 20px;
    background: transparent;
    border: 2px solid #6A1B9A;
    color: #FFD700;
    font-family: 'Righteous', cursive;
    font-size: 13px;
    border-radius: 25px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #6A1B9A;
    color: #fff;
    box-shadow: 0 0 15px rgba(106, 27, 154, 0.4);
}

.btn-register {
    padding: 8px 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1A1A1A;
    font-family: 'Righteous', cursive;
    font-size: 13px;
    border-radius: 25px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    color: #1A1A1A;
}

.btn-demo {
    padding: 8px 20px;
    background: linear-gradient(135deg, #6A1B9A, #9C27B0);
    color: #fff;
    font-family: 'Righteous', cursive;
    font-size: 13px;
    border-radius: 25px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
}

.btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(106, 27, 154, 0.4);
    color: #fff;
}

/* === NAVIGATION === */
.main-navigation {
    background: linear-gradient(90deg, #0D0D0D, #1A1A1A, #0D0D0D);
    border-top: 1px solid rgba(106, 27, 154, 0.2);
    border-bottom: 1px solid rgba(106, 27, 154, 0.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #E8E0F0;
    font-family: 'Righteous', cursive;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-link:hover {
    color: #FFD700;
    background: rgba(106, 27, 154, 0.15);
    border-bottom-color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.nav-link i {
    margin-right: 5px;
    font-size: 12px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFD700;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #6A1B9A, #9C27B0, #6A1B9A);
    background-size: 200% 100%;
    animation: purplePulse 5s ease infinite;
    overflow: hidden;
    height: 35px;
}

.notification-content {
    display: flex;
    gap: 60px;
    animation: scrollNotification 30s linear infinite;
    white-space: nowrap;
    padding: 8px 0;
}

.notification-content span {
    font-size: 12px;
    color: #FFD700;
    font-weight: 500;
    letter-spacing: 0.5px;
}

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

/* === HERO SECTION - CHAMPION ARENA === */
.mobobet-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 30%, #2D1B3D 60%, #1A1A1A 100%);
    padding: 60px 20px;
}

.hero-trophy-display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    opacity: 0.12;
    z-index: 1;
}

.trophy-main-icon {
    font-size: 180px;
    color: #FFD700;
    animation: trophyLift 2s ease-out forwards, champGlow 4s 2s infinite;
    display: block;
    text-align: center;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.4));
}

.hero-confetti {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    width: 8px;
    height: 8px;
    opacity: 0.6;
}

.confetti-piece:nth-child(1) {
    background: #FFD700;
    left: 10%;
    top: -10px;
    animation: confettiFall 4s linear infinite;
    animation-delay: 0s;
}

.confetti-piece:nth-child(2) {
    background: #6A1B9A;
    left: 25%;
    top: -10px;
    width: 6px;
    height: 12px;
    animation: confettiFall 5s linear infinite;
    animation-delay: 1s;
}

.confetti-piece:nth-child(3) {
    background: #FFD700;
    left: 40%;
    top: -10px;
    animation: confettiFall 3.5s linear infinite;
    animation-delay: 0.5s;
}

.confetti-piece:nth-child(4) {
    background: #9C27B0;
    left: 55%;
    top: -10px;
    width: 10px;
    height: 6px;
    animation: confettiFall 4.5s linear infinite;
    animation-delay: 2s;
}

.confetti-piece:nth-child(5) {
    background: #FFD700;
    left: 70%;
    top: -10px;
    animation: confettiFall 3s linear infinite;
    animation-delay: 1.5s;
}

.confetti-piece:nth-child(6) {
    background: #6A1B9A;
    left: 85%;
    top: -10px;
    width: 5px;
    height: 10px;
    animation: confettiFall 5.5s linear infinite;
    animation-delay: 3s;
}

.hero-inner-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
}

.hero-main-title {
    margin-bottom: 20px;
}

.hero-brand {
    display: block;
    font-family: 'Righteous', cursive;
    font-size: 64px;
    letter-spacing: 8px;
    color: #FFD700;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite, trophyLift 1.5s ease-out;
    text-shadow: none;
}

.hero-divider-line {
    display: block;
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #6A1B9A, #FFD700, #6A1B9A, transparent);
    margin: 15px auto;
    animation: victoryBanner 1s ease-out 0.5s both;
}

.hero-tagline {
    display: block;
    font-family: 'Righteous', cursive;
    font-size: 22px;
    letter-spacing: 5px;
    color: #E8E0F0;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-description {
    font-size: 16px;
    color: #C8B8D8;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: 'Righteous', cursive;
    font-size: 32px;
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.hero-stat-label {
    display: block;
    font-size: 12px;
    color: #9C27B0;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 600;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.btn-gold-primary {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1A1A1A;
    font-family: 'Righteous', cursive;
    font-size: 16px;
    border-radius: 30px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    animation: champGlow 3s infinite;
    border: none;
    cursor: pointer;
}

.btn-gold-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    color: #1A1A1A;
}

.btn-outline-gold {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    font-family: 'Righteous', cursive;
    font-size: 16px;
    border-radius: 30px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline-gold:hover {
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
    color: #FFD700;
}

.btn-outline-purple {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    border: 2px solid #6A1B9A;
    color: #9C27B0;
    font-family: 'Righteous', cursive;
    font-size: 16px;
    border-radius: 30px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline-purple:hover {
    background: rgba(106, 27, 154, 0.15);
    box-shadow: 0 0 20px rgba(106, 27, 154, 0.3);
    transform: translateY(-3px);
    color: #9C27B0;
}

/* === CHAMPION GAMES SECTION === */
.champion-games {
    padding: 60px 0;
    position: relative;
    background: linear-gradient(180deg, #1A1A1A, #1F1025, #1A1A1A);
}

.section-title {
    text-align: center;
    font-size: 28px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-title i {
    margin-right: 10px;
    font-size: 24px;
}

.section-subtitle {
    text-align: center;
    color: #9C27B0;
    font-size: 14px;
    margin-bottom: 40px;
    letter-spacing: 1px;
    font-weight: 400;
}

.champion-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 0 15px;
}

.champion-game-card {
    position: relative;
    background: linear-gradient(135deg, #1A1A1A, #2D1B3D);
    border: 1px solid rgba(106, 27, 154, 0.3);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    display: block;
}

.champion-game-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.champion-game-card:hover {
    border-color: #FFD700;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(106, 27, 154, 0.3), 0 0 20px rgba(255, 215, 0, 0.1);
}

.champion-game-card:hover::before {
    opacity: 1;
}

.champion-game-card:hover .champion-game-icon {
    animation: medalSpin 1.5s ease-in-out;
}

.champion-game-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(106, 27, 154, 0.1), transparent 70%);
    pointer-events: none;
}

.champion-game-icon {
    font-size: 48px;
    color: #FFD700;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.champion-game-rating {
    margin-bottom: 10px;
}

.champion-game-rating i {
    color: #FFD700;
    font-size: 12px;
}

.champion-game-card h3 {
    font-size: 18px;
    color: #FFD700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.champion-game-card p {
    font-size: 13px;
    color: #B8A8C8;
    line-height: 1.6;
    margin-bottom: 12px;
}

.champion-game-players {
    font-size: 12px;
    color: #9C27B0;
    font-weight: 600;
}

.champion-game-players i {
    margin-right: 5px;
}

/* === TROPHY GRID SECTION === */
.trophy-grid-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #1A1A1A, #0D0D0D);
    position: relative;
}

.trophy-grid-map {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trophy-grid-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.trophy-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    background: linear-gradient(135deg, #1A1A1A, #2D1B3D);
    border: 1px solid rgba(106, 27, 154, 0.25);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.trophy-grid-node:hover {
    border-color: #FFD700;
    background: linear-gradient(135deg, #2D1B3D, #3D2B4D);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(106, 27, 154, 0.25);
}

.trophy-grid-node:hover .trophy-node-icon {
    animation: medalSpin 1s ease-in-out;
}

.trophy-node-icon {
    font-size: 32px;
    color: #FFD700;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.2));
}

.trophy-node-label {
    font-family: 'Righteous', cursive;
    font-size: 13px;
    color: #E8E0F0;
    letter-spacing: 1px;
    text-align: center;
}

/* === CHAMPION FEATURES SECTION === */
.champion-features {
    padding: 60px 0;
    background: linear-gradient(180deg, #1A1A1A, #1F1025, #1A1A1A);
}

.champion-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.champion-feature-card {
    background: linear-gradient(135deg, #1A1A1A, #2D1B3D);
    border: 1px solid rgba(106, 27, 154, 0.3);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.champion-feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #6A1B9A, #FFD700, #6A1B9A);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.champion-feature-card:hover {
    border-color: #FFD700;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(106, 27, 154, 0.3);
}

.champion-feature-card:hover::after {
    transform: scaleX(1);
}

.champion-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6A1B9A, #9C27B0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: glowRing 3s infinite;
}

.champion-feature-icon i {
    font-size: 28px;
    color: #FFD700;
}

.champion-feature-card h3 {
    font-size: 16px;
    color: #FFD700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.champion-feature-card p {
    font-size: 13px;
    color: #B8A8C8;
    line-height: 1.7;
}

/* === CHAMPION STATS SECTION === */
.champion-stats {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.champion-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2D1B3D, #1A1A1A, #0D0D0D);
    z-index: 0;
}

.purple-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(106, 27, 154, 0.1), transparent, rgba(255, 215, 0, 0.05));
}

.champion-stats .section-title,
.champion-stats .section-subtitle {
    position: relative;
    z-index: 2;
}

.champion-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

.champion-stat-card {
    background: linear-gradient(135deg, #1A1A1A, #2D1B3D);
    border: 1px solid rgba(106, 27, 154, 0.3);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.champion-stat-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    animation: champGlow 2s infinite;
}

.stat-trophy-decoration {
    margin-bottom: 15px;
}

.stat-trophy-decoration i {
    font-size: 24px;
    color: #6A1B9A;
    opacity: 0.6;
}

.stat-trophy-decoration.bottom {
    margin-top: 15px;
    margin-bottom: 0;
}

.stat-number {
    font-family: 'Righteous', cursive;
    font-size: 36px;
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: #B8A8C8;
    letter-spacing: 1px;
    font-weight: 500;
}

/* === CHAMPION PROMOTIONS === */
.champion-promos {
    padding: 60px 0;
    background: linear-gradient(180deg, #1A1A1A, #1F1025, #1A1A1A);
}

.champion-promos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.champion-promo-card {
    position: relative;
    background: linear-gradient(135deg, #1A1A1A, #2D1B3D);
    border: 1px solid rgba(106, 27, 154, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.champion-promo-card:hover {
    border-color: #FFD700;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(106, 27, 154, 0.3), 0 0 30px rgba(255, 215, 0, 0.1);
}

.promo-trophy-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(106, 27, 154, 0.15), transparent 60%);
    pointer-events: none;
}

.champion-promo-inner {
    position: relative;
    padding: 30px 25px;
    z-index: 2;
}

.promo-icon {
    margin-bottom: 15px;
}

.promo-icon i {
    font-size: 36px;
    color: #FFD700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.champion-promo-inner h3 {
    font-size: 18px;
    color: #FFD700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.champion-promo-inner p {
    font-size: 13px;
    color: #B8A8C8;
    line-height: 1.7;
    margin-bottom: 15px;
}

.promo-timer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #9C27B0;
}

.promo-badge {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.promo-badge.hot {
    background: linear-gradient(135deg, #FF4444, #FF6B35);
    color: #fff;
}

.promo-badge.new {
    background: linear-gradient(135deg, #6A1B9A, #9C27B0);
    color: #fff;
}

.promo-badge.vip {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1A1A1A;
}

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1A1A1A;
    font-family: 'Righteous', cursive;
    font-size: 14px;
    border-radius: 25px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    color: #1A1A1A;
}

/* === FOOTER CTA SECTION === */
.footer-cta-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-cta-champfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2D1B3D, #1A1A1A, #0D0D0D);
    z-index: 0;
}

.footer-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-trophy-decoration {
    margin-bottom: 25px;
}

.cta-trophy-diamond {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation: trophyLift 2s ease-out, medalSpin 6s 2s infinite;
}

.footer-cta-inner h2 {
    font-size: 32px;
    color: #FFD700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.footer-cta-inner p {
    font-size: 16px;
    color: #C8B8D8;
    line-height: 1.8;
    margin-bottom: 25px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-feature {
    font-size: 14px;
    color: #9C27B0;
    font-weight: 600;
}

.cta-feature i {
    color: #FFD700;
    margin-right: 8px;
}

.cta-main-btn {
    font-size: 18px;
    padding: 16px 50px;
}

/* === NEWS SECTION === */
.home-news-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #1A1A1A, #0D0D0D);
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.article-card {
    background: linear-gradient(135deg, #1A1A1A, #2D1B3D);
    border: 1px solid rgba(106, 27, 154, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
}

.article-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(106, 27, 154, 0.25);
}

.article-card-thumb {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-card-thumb img {
    transform: scale(1.08);
}

.article-card-title {
    padding: 15px 15px 8px;
}

.article-card-title span,
.article-card-title a {
    font-family: 'Righteous', cursive;
    font-size: 15px;
    color: #E8E0F0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.article-card:hover .article-card-title span,
.article-card:hover .article-card-title a {
    color: #FFD700;
}

.article-card-meta {
    padding: 0 15px;
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #9C27B0;
    margin-bottom: 8px;
}

.article-card-meta i {
    margin-right: 5px;
}

.article-card-excerpt {
    padding: 0 15px 15px;
    font-size: 13px;
    color: #B8A8C8;
    line-height: 1.6;
}

.article-card-more {
    display: block;
    padding: 12px 15px;
    border-top: 1px solid rgba(106, 27, 154, 0.15);
    font-family: 'Righteous', cursive;
    font-size: 12px;
    color: #FFD700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.article-card-more:hover {
    background: rgba(106, 27, 154, 0.1);
    padding-left: 20px;
    color: #FFD700;
}

.article-card-more i {
    margin-left: 5px;
    font-size: 10px;
}

.home-news-placeholder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.view-more-btn {
    display: inline-block;
    text-align: center;
    padding: 12px 35px;
    border: 2px solid #6A1B9A;
    border-radius: 30px;
    font-family: 'Righteous', cursive;
    font-size: 14px;
    letter-spacing: 2px;
    color: #FFD700;
    transition: all 0.3s ease;
    margin: 0 auto;
    text-align: center;
}

.gold-view-more {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.view-more-btn:hover {
    background: #6A1B9A;
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(106, 27, 154, 0.3);
    color: #FFD700;
}

.view-more-btn i {
    margin-left: 8px;
    font-size: 12px;
}

/* === BREADCRUMB === */
.breadcrumb {
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #9C27B0;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #FFD700;
}

.breadcrumb span {
    color: #666;
}

/* === CONTENT AREA === */
.content-area {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 30px;
    padding: 20px 0 60px;
}

.main-content {
    min-width: 0;
}

/* === ARTICLE GRID (Blog/Category) === */
.article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #9C27B0;
    font-size: 16px;
}

/* === PAGINATION === */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 0;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1A1A1A;
    border: 1px solid rgba(106, 27, 154, 0.3);
    border-radius: 8px;
    color: #E8E0F0;
    font-family: 'Righteous', cursive;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: linear-gradient(135deg, #6A1B9A, #9C27B0);
    border-color: #FFD700;
    color: #FFD700;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, #1A1A1A, #2D1B3D);
    border: 1px solid rgba(106, 27, 154, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.article-header {
    margin-bottom: 25px;
}

.article-title {
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #9C27B0;
}

.article-meta i {
    margin-right: 5px;
}

.article-featured-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
}

.article-featured-img img {
    width: 100%;
    height: auto;
}

.article-content {
    font-size: 15px;
    line-height: 1.9;
    color: #E8E0F0;
}

.article-content p {
    margin-bottom: 18px;
}

.article-content h2,
.article-content h3 {
    color: #FFD700;
    margin: 25px 0 12px;
}

.article-content a {
    color: #9C27B0;
    text-decoration: underline;
}

.article-content img {
    border-radius: 8px;
    margin: 15px 0;
}

.article-content blockquote {
    border-left: 4px solid #6A1B9A;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(106, 27, 154, 0.1);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #C8B8D8;
}

.article-content ul,
.article-content ol {
    padding-left: 25px;
    margin-bottom: 18px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(106, 27, 154, 0.15);
    margin-top: 25px;
}

.article-tags i {
    color: #FFD700;
}

.article-tags span {
    padding: 4px 12px;
    background: rgba(106, 27, 154, 0.15);
    border: 1px solid rgba(106, 27, 154, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: #9C27B0;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(106, 27, 154, 0.15);
}

.article-nav a {
    color: #9C27B0;
    font-size: 14px;
}

.article-nav a:hover {
    color: #FFD700;
}

/* === RELATED POSTS === */
.related-posts {
    margin-bottom: 30px;
}

.related-posts-title {
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(106, 27, 154, 0.3);
}

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

.related-item {
    display: block;
    background: linear-gradient(135deg, #1A1A1A, #2D1B3D);
    border: 1px solid rgba(106, 27, 154, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-item:hover {
    border-color: #FFD700;
    transform: translateY(-3px);
}

.related-item-thumb {
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.related-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-item:hover .related-item-thumb img {
    transform: scale(1.05);
}

.related-item-title {
    padding: 10px;
    font-size: 12px;
    color: #E8E0F0;
    line-height: 1.4;
}

.related-item:hover .related-item-title {
    color: #FFD700;
}

/* === CATEGORY HEADER === */
.category-header {
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px solid rgba(106, 27, 154, 0.2);
    margin-bottom: 30px;
}

.category-title {
    font-size: 28px;
    letter-spacing: 3px;
}

.category-title i {
    margin-right: 10px;
}

.category-desc {
    color: #B8A8C8;
    font-size: 14px;
    margin-top: 10px;
}

/* === PROVIDER TABS === */
.provider-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
    justify-content: center;
}

.provider-tab {
    padding: 8px 20px;
    background: rgba(106, 27, 154, 0.1);
    border: 1px solid rgba(106, 27, 154, 0.3);
    border-radius: 25px;
    color: #E8E0F0;
    font-family: 'Righteous', cursive;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.provider-tab:hover {
    border-color: #9C27B0;
    background: rgba(106, 27, 154, 0.2);
}

.provider-tab.active {
    background: linear-gradient(135deg, #6A1B9A, #9C27B0);
    border-color: #FFD700;
    color: #FFD700;
}

/* === PAGE === */
.page-article {
    background: linear-gradient(135deg, #1A1A1A, #2D1B3D);
    border: 1px solid rgba(106, 27, 154, 0.2);
    border-radius: 16px;
    padding: 30px;
}

.page-title {
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-featured-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
}

.page-content {
    font-size: 15px;
    line-height: 1.9;
    color: #E8E0F0;
}

.page-content p {
    margin-bottom: 18px;
}

/* === 404 PAGE === */
.error-page {
    text-align: center;
    padding: 80px 20px;
}

.error-trophy {
    margin-bottom: 20px;
}

.error-trophy-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation: trophyLift 2s ease infinite;
}

.error-code {
    font-size: 80px;
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    margin-bottom: 10px;
}

.error-title {
    font-size: 24px;
    color: #E8E0F0;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.error-desc {
    font-size: 15px;
    color: #B8A8C8;
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* === SIDEBAR === */
.floating-sidebar {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #6A1B9A, #9C27B0);
    border-radius: 50%;
    color: #FFD700;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(106, 27, 154, 0.5);
    color: #FFD700;
}

.sidebar-btn-facebook {
    background: linear-gradient(135deg, #1877F2, #42A5F5);
}

.sidebar-btn-telegram {
    background: linear-gradient(135deg, #0088CC, #29B6F6);
}

.sidebar-label {
    display: none;
    position: absolute;
    right: 55px;
    background: #1A1A1A;
    border: 1px solid #6A1B9A;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: #FFD700;
    white-space: nowrap;
    pointer-events: none;
}

.sidebar-btn:hover .sidebar-label {
    display: block;
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #0D0D0D, #1A1A1A);
    border-top: 2px solid rgba(106, 27, 154, 0.4);
    padding: 50px 0 30px;
}

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

.footer-col h4 {
    font-size: 15px;
    color: #FFD700;
    letter-spacing: 2px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(106, 27, 154, 0.3);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #B8A8C8;
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #FFD700;
    padding-left: 5px;
}

.footer-brand-logo {
    margin-bottom: 15px;
}

.footer-brand-logo img {
    height: 45px;
}

.footer-brand-text {
    font-size: 13px;
    color: #B8A8C8;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-18plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF4444, #CC0000);
    border-radius: 50%;
    color: #fff;
    font-family: 'Righteous', cursive;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-social-links {
    display: flex;
    gap: 10px;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(106, 27, 154, 0.2);
    border: 1px solid rgba(106, 27, 154, 0.4);
    border-radius: 50%;
    color: #FFD700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: #6A1B9A;
    border-color: #FFD700;
    transform: translateY(-3px);
    color: #FFD700;
}

/* === LICENSE BAR === */
.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(106, 27, 154, 0.2);
    border-bottom: 1px solid rgba(106, 27, 154, 0.2);
    margin-bottom: 20px;
}

.footer-license-bar h4 {
    font-size: 14px;
    color: #9C27B0;
    letter-spacing: 2px;
    margin-bottom: 15px;
    border: none;
    padding: 0;
}

.license-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    background: rgba(106, 27, 154, 0.1);
    border: 1px solid rgba(106, 27, 154, 0.25);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.license-item:hover {
    border-color: #FFD700;
    transform: translateY(-3px);
}

.license-item i {
    font-size: 22px;
    color: #FFD700;
}

.license-item span {
    font-size: 11px;
    color: #B8A8C8;
    font-weight: 600;
    letter-spacing: 1px;
}

/* === FOOTER BOTTOM === */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-copyright {
    font-size: 13px;
    color: #666;
    letter-spacing: 1px;
}

.footer-disclaimer {
    text-align: center;
    padding: 20px 15px;
    font-size: 13px;
    color: #999;
    line-height: 1.8;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

/* === MOBILE WIN CARD EFFECT === */
.mobile-win-effect {
    animation: mobileWin 0.8s ease-out;
}

.trophy-lift-effect {
    animation: trophyLift 1s ease-out;
}

.medal-spin-effect {
    animation: medalSpin 1.2s ease-in-out;
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.text-gold { color: #FFD700; }
.text-purple { color: #6A1B9A; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #6A1B9A, #9C27B0);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #9C27B0, #FFD700);
}

/* === SELECTION === */
::selection {
    background: #6A1B9A;
    color: #FFD700;
}

/* === FOCUS STATES === */
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #6A1B9A;
    outline-offset: 2px;
}

/* === LOADING STATE === */
.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(106, 27, 154, 0.3);
    border-top-color: #FFD700;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* === CHAMPION BADGE === */
.champion-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #6A1B9A, #9C27B0);
    border: 1px solid #FFD700;
    border-radius: 25px;
    font-family: 'Righteous', cursive;
    font-size: 12px;
    color: #FFD700;
    letter-spacing: 1px;
}

.champion-badge i {
    font-size: 14px;
    animation: medalSpin 3s infinite;
}

/* === VICTORY DIVIDER === */
.victory-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
}

.victory-divider::before,
.victory-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #6A1B9A, transparent);
}

.victory-divider i {
    color: #FFD700;
    font-size: 18px;
    animation: trophyLift 2s infinite;
}

/* === TROPHY SHOWCASE === */
.trophy-showcase {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 30px 0;
    flex-wrap: wrap;
}

.trophy-showcase-item {
    text-align: center;
    padding: 20px;
}

.trophy-showcase-item i {
    font-size: 48px;
    color: #FFD700;
    display: block;
    margin-bottom: 10px;
    animation: floatUp 3s ease infinite;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.3));
}

.trophy-showcase-item:nth-child(2) i {
    animation-delay: 0.5s;
}

.trophy-showcase-item:nth-child(3) i {
    animation-delay: 1s;
}

.trophy-showcase-item span {
    font-family: 'Righteous', cursive;
    font-size: 13px;
    color: #9C27B0;
    letter-spacing: 1px;
}

/* === WINNING TICKER === */
.winning-ticker {
    background: linear-gradient(90deg, #0D0D0D, #1A1A1A, #0D0D0D);
    border-top: 1px solid rgba(106, 27, 154, 0.2);
    border-bottom: 1px solid rgba(106, 27, 154, 0.2);
    padding: 10px 0;
    overflow: hidden;
}

.winning-ticker-content {
    display: flex;
    gap: 40px;
    animation: scrollNotification 25s linear infinite;
    white-space: nowrap;
}

.winning-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #B8A8C8;
}

.winning-ticker-item i {
    color: #FFD700;
}

.winning-ticker-item .winner-name {
    color: #FFD700;
    font-weight: 600;
}

.winning-ticker-item .winner-amount {
    color: #9C27B0;
    font-weight: 700;
}
