/* =============================================
   BETKING - Royal Sports Betting Theme CSS
   Version: 1.0
   ============================================= */

/* === CSS Variables === */
:root {
    --royal-blue-dark: #0D47A1;
    --royal-blue: #1565C0;
    --royal-blue-light: #1976D2;
    --royal-blue-lighter: #42A5F5;
    --gold: #FFC107;
    --gold-dark: #FFA000;
    --gold-light: #FFD54F;
    --white: #FFFFFF;
    --off-white: #F5F5F5;
    --gray-light: #E0E0E0;
    --gray: #9E9E9E;
    --gray-dark: #616161;
    --dark: #1A1A2E;
    --dark-lighter: #16213E;
    --text-primary: #212121;
    --text-secondary: #757575;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
    --shadow-gold: 0 4px 16px rgba(255,193,7,0.3);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul, ol {
    list-style: none;
}

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

/* === Crown Title Decoration === */
.crown-title {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.crown-title::before {
    content: '♔';
    display: block;
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 10px;
    animation: crownBounce 2s ease-in-out infinite;
    text-shadow: 0 2px 8px rgba(255,193,7,0.4);
}

.crown-title h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--royal-blue-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.crown-title .section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* === Keyframe Animations === */
@keyframes crownBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes voteFill {
    from { width: 0; }
    to { width: var(--bar-width); }
}

@keyframes goldShimmer {
    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 fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

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

@keyframes liveBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

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

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* === Header === */
.site-header {
    background: linear-gradient(135deg, var(--royal-blue-dark) 0%, var(--royal-blue) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo-crown {
    font-size: 28px;
    color: var(--gold);
    text-shadow: 0 2px 8px rgba(255,193,7,0.5);
    animation: crownBounce 3s ease-in-out infinite;
}

.header-time {
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 500;
}

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

.header-btn-group .btn-login {
    padding: 8px 20px;
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: var(--transition);
}

.header-btn-group .btn-login:hover {
    background: var(--gold);
    color: var(--royal-blue-dark);
}

.header-btn-group .btn-register {
    padding: 8px 20px;
    background: var(--gold);
    color: var(--royal-blue-dark);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    transition: var(--transition);
}

.header-btn-group .btn-register:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    box-shadow: var(--shadow-gold);
}

.header-btn-group .btn-demo {
    padding: 8px 20px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: var(--transition);
}

.header-btn-group .btn-demo:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

/* === Navigation === */
.main-navigation {
    background: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,193,7,0.2);
}

.nav-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 18px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--gold);
    background: rgba(255,193,7,0.1);
    border-bottom-color: var(--gold);
}

.nav-link i {
    margin-right: 5px;
    color: var(--gold);
}

/* === Notification Bar === */
.notification-bar {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    overflow: hidden;
    padding: 8px 0;
}

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

.notification-content span {
    font-size: 13px;
    font-weight: 600;
    color: var(--royal-blue-dark);
}

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

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

.announcement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, var(--royal-blue-dark), var(--dark-lighter));
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    max-width: 500px;
    width: 90%;
    border: 2px solid var(--gold);
    box-shadow: 0 0 40px rgba(255,193,7,0.3);
    animation: fadeInUp 0.4s ease;
}

.announcement-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.announcement-header-icon .crown-icon {
    font-size: 50px;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255,193,7,0.5);
}

.announcement-title {
    text-align: center;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,193,7,0.2);
    transition: var(--transition);
    color: var(--white);
}

.announcement-item:hover {
    background: rgba(255,193,7,0.15);
    border-color: var(--gold);
    transform: translateX(5px);
}

.announcement-badge {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    min-width: 50px;
    text-align: center;
}

.announcement-badge.hot {
    background: #F44336;
    color: var(--white);
}

.announcement-badge.new {
    background: #4CAF50;
    color: var(--white);
}

.announcement-badge.info {
    background: var(--royal-blue-light);
    color: var(--white);
}

.announcement-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.4;
}

.announcement-item i {
    color: var(--gold);
    font-size: 12px;
}

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: var(--gold);
    color: var(--royal-blue-dark);
    font-weight: 700;
    font-size: 16px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    transition: var(--transition);
}

.announcement-cta:hover {
    background: var(--gold-dark);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

/* === Mobile Menu Toggle === */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* === Hero Section === */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--royal-blue-dark) 0%, var(--dark-lighter) 50%, var(--royal-blue) 100%);
    padding: 100px 0 120px;
    overflow: hidden;
    text-align: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90" opacity="0.03">♔</text></svg>') repeat;
    background-size: 150px;
    opacity: 0.3;
}

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

.hero-crown-icon {
    font-size: 80px;
    color: var(--gold);
    text-shadow: 0 4px 20px rgba(255,193,7,0.5);
    animation: crownBounce 3s ease-in-out infinite;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gold-light);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 2px 10px rgba(255,193,7,0.3);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-royal-primary {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--royal-blue-dark);
    font-weight: 700;
    font-size: 16px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
}

.btn-royal-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,193,7,0.5);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-royal-secondary {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255,255,255,0.5);
    transition: var(--transition);
    cursor: pointer;
}

.btn-royal-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(255,193,7,0.1);
    transform: translateY(-3px);
}

.hero-wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--off-white);
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

/* === Live Matches Section === */
.live-matches-kings {
    padding: 80px 0;
    background: var(--white);
}

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

.match-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 2px solid var(--gray-light);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.match-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-5px);
}

.match-card.live {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(255,193,7,0.2);
}

.match-league {
    font-size: 12px;
    font-weight: 600;
    color: var(--royal-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.match-league i {
    color: var(--gold);
    margin-right: 5px;
}

.match-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 12px;
    background: #F44336;
    color: var(--white);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: liveBlink 1s ease-in-out infinite;
}

.match-time {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-weight: 500;
}

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

.team {
    text-align: center;
    flex: 1;
}

.team-logo {
    width: 40px;
    height: 40px;
    margin: 0 auto 8px;
    background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.team-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.match-score {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
}

.score-home, .score-away {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--royal-blue-dark);
}

.score-divider {
    font-size: 18px;
    color: var(--gray);
    font-weight: 300;
}

.match-odds {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.odds-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    background: linear-gradient(135deg, var(--royal-blue-dark), var(--royal-blue));
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.odds-btn span:first-child {
    font-size: 11px;
    opacity: 0.7;
    margin-bottom: 2px;
}

.odds-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
}

.odds-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    transform: translateY(-2px);
}

.odds-btn:hover .odds-value {
    color: var(--royal-blue-dark);
}

.odds-btn:hover span:first-child {
    color: var(--royal-blue-dark);
    opacity: 1;
}

/* === Crown Rankings Section === */
.crown-rankings {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--off-white), var(--white));
}

.rankings-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.rank-tab {
    padding: 10px 25px;
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.rank-tab.active,
.rank-tab:hover {
    background: var(--royal-blue-dark);
    color: var(--white);
    border-color: var(--royal-blue-dark);
}

.rankings-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.rankings-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.rankings-table thead th {
    padding: 15px 12px;
    background: linear-gradient(135deg, var(--royal-blue-dark), var(--royal-blue));
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.5px;
}

.rankings-table tbody td {
    padding: 12px;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid var(--gray-light);
}

.rank-row.gold {
    background: linear-gradient(90deg, rgba(255,193,7,0.12), rgba(255,193,7,0.05));
}

.rank-row.silver {
    background: linear-gradient(90deg, rgba(192,192,192,0.15), rgba(192,192,192,0.05));
}

.rank-row.bronze {
    background: linear-gradient(90deg, rgba(205,127,50,0.12), rgba(205,127,50,0.05));
}

.rank-pos {
    font-weight: 700;
    font-size: 15px;
}

.crown-badge {
    font-size: 16px;
    margin-right: 3px;
}

.crown-gold { color: #FFD700; }
.crown-silver { color: #C0C0C0; }
.crown-bronze { color: #CD7F32; }

.rank-team {
    text-align: left !important;
    font-weight: 600;
}

.rank-team i {
    color: var(--royal-blue);
    margin-right: 8px;
}

.rank-points {
    font-weight: 700;
    font-size: 18px;
    color: var(--royal-blue-dark);
    font-family: var(--font-heading);
}

/* === Prediction Voting Section === */
.prediction-voting {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--royal-blue-dark), var(--dark-lighter));
}

.prediction-voting .crown-title::before {
    color: var(--gold);
}

.prediction-voting .crown-title h2 {
    color: var(--white);
}

.prediction-voting .crown-title .section-desc {
    color: rgba(255,255,255,0.7);
}

.voting-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.voting-card {
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 25px;
    border: 1px solid rgba(255,193,7,0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.voting-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255,193,7,0.15);
}

.voting-league {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.voting-league i {
    margin-right: 5px;
}

.voting-matchup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.voting-team {
    text-align: center;
    flex: 1;
}

.voting-team-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--royal-blue-dark);
    font-size: 22px;
}

.voting-team span {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.voting-vs {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    padding: 0 15px;
    text-shadow: 0 2px 8px rgba(255,193,7,0.3);
}

.voting-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.vote-btn {
    padding: 12px 8px;
    border: 2px solid rgba(255,193,7,0.3);
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-family: inherit;
}

.vote-btn:hover {
    border-color: var(--gold);
    background: rgba(255,193,7,0.15);
}

.vote-btn.voted {
    border-color: var(--gold);
    background: rgba(255,193,7,0.25);
    box-shadow: 0 0 10px rgba(255,193,7,0.2);
}

.vote-label {
    display: block;
    font-size: 11px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.vote-pct {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}

.voting-bars {
    margin-bottom: 15px;
}

.vote-bar-row {
    height: 24px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    margin-bottom: 6px;
    overflow: hidden;
}

.vote-bar {
    height: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    transition: width 1s ease;
    position: relative;
}

.vote-bar span {
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
}

.home-bar {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}

.draw-bar {
    background: linear-gradient(90deg, var(--royal-blue-light), var(--royal-blue-lighter));
}

.away-bar {
    background: linear-gradient(90deg, #E91E63, #F48FB1);
}

.voting-total {
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.voting-total i {
    margin-right: 5px;
    color: var(--gold);
}

/* === Featured Sports Section === */
.royal-sports {
    padding: 80px 0;
    background: var(--white);
}

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

.sport-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 35px 25px;
    text-align: center;
    border: 2px solid var(--gray-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sport-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-8px);
}

.sport-crown-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 20px;
    color: var(--gold);
    opacity: 0.5;
}

.sport-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--royal-blue-dark), var(--royal-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--gold);
    box-shadow: 0 4px 15px rgba(13,71,161,0.3);
    transition: var(--transition);
}

.sport-card:hover .sport-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(13,71,161,0.4);
}

.sport-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--royal-blue-dark);
    margin-bottom: 10px;
}

.sport-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.sport-link {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--royal-blue-dark);
    font-weight: 700;
    font-size: 13px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.sport-link:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

/* === League Standings Section === */
.league-standings {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--off-white), var(--white));
}

.standings-swiper {
    padding-bottom: 50px;
}

.standings-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 25px;
    border: 2px solid var(--gray-light);
    box-shadow: var(--shadow-sm);
}

.standings-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
}

.standings-league-icon {
    font-size: 24px;
    color: var(--gold);
}

.standings-header h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--royal-blue-dark);
    flex: 1;
}

.standings-season {
    font-size: 12px;
    color: var(--text-secondary);
    background: var(--off-white);
    padding: 4px 12px;
    border-radius: 20px;
}

.standings-mini-table {
    width: 100%;
    border-collapse: collapse;
}

.standings-mini-table thead th {
    padding: 10px 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    border-bottom: 1px solid var(--gray-light);
}

.standings-mini-table tbody td {
    padding: 10px 8px;
    font-size: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.standings-mini-table tbody tr:first-child td {
    color: var(--gold-dark);
    font-weight: 700;
}

.standings-mini-table tbody tr:nth-child(2) td {
    color: #757575;
    font-weight: 600;
}

.standings-mini-table tbody tr:nth-child(3) td {
    color: #CD7F32;
    font-weight: 600;
}

.standings-mini-table .pts {
    font-weight: 700;
    color: var(--royal-blue-dark);
    font-family: var(--font-heading);
    font-size: 16px;
}

/* === VIP Promotions Section === */
.vip-promos {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark), var(--dark-lighter));
}

.vip-promos .crown-title::before {
    color: var(--gold);
}

.vip-promos .crown-title h2 {
    color: var(--white);
}

.vip-promos .crown-title .section-desc {
    color: rgba(255,255,255,0.7);
}

.vip-tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.vip-tier-card {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    position: relative;
}

.vip-tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.vip-tier-card.featured {
    border-color: var(--gold);
    background: rgba(255,193,7,0.08);
    transform: scale(1.05);
}

.vip-tier-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.vip-tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 20px;
    background: var(--gold);
    color: var(--royal-blue-dark);
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
}

.vip-tier-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.tier-bronze .vip-tier-icon { color: #CD7F32; }
.tier-silver .vip-tier-icon { color: #C0C0C0; }
.tier-gold .vip-tier-icon { color: var(--gold); }
.tier-diamond .vip-tier-icon { color: #E0F7FA; }

.vip-tier-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.vip-tier-requirement {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.vip-benefits {
    text-align: left;
    margin-bottom: 25px;
}

.vip-benefits li {
    padding: 6px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 8px;
}

.vip-benefits li i {
    color: var(--gold);
    font-size: 11px;
}

.vip-cta {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 700;
    font-size: 13px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    transition: var(--transition);
}

.vip-cta:hover {
    background: var(--gold);
    color: var(--royal-blue-dark);
    box-shadow: var(--shadow-gold);
}

/* === News Section === */
.news-section {
    padding: 80px 0;
    background: var(--white);
}

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

.news-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.news-thumb {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--royal-blue-dark), var(--royal-blue));
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.news-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: rgba(255,255,255,0.3);
}

.news-info {
    padding: 20px;
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.news-meta span {
    font-size: 12px;
    color: var(--text-secondary);
}

.news-meta i {
    margin-right: 4px;
    color: var(--gold);
}

.news-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--royal-blue-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-title a:hover {
    color: var(--gold-dark);
}

.news-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.5;
}

.news-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--royal-blue);
    transition: var(--transition);
}

.news-readmore:hover {
    color: var(--gold-dark);
    gap: 10px;
}

.news-more-btn {
    text-align: center;
}

/* === Footer CTA Section === */
.footer-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--royal-blue-dark), var(--dark-lighter), var(--royal-blue));
    position: relative;
    text-align: center;
    overflow: hidden;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90" opacity="0.03">♔</text></svg>') repeat;
    background-size: 120px;
    opacity: 0.2;
}

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

.cta-crown {
    font-size: 60px;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(255,193,7,0.4);
    animation: crownBounce 3s ease-in-out infinite;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
}

.cta-content p strong {
    color: var(--gold);
    font-size: 22px;
}

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

.cta-features span {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-features i {
    color: var(--gold);
}

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

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

/* === Footer === */
.site-footer {
    background: linear-gradient(135deg, var(--dark) 0%, var(--royal-blue-dark) 100%);
    padding: 60px 0 0;
    color: var(--white);
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

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

.footer-crown {
    font-size: 24px;
    color: var(--gold);
}

.footer-brand-text {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-18plus {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid #F44336;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #F44336;
    margin-bottom: 15px;
}

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

.footer-social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social-links a:hover {
    background: var(--gold);
    color: var(--royal-blue-dark);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a::before {
    content: '›';
    color: var(--gold);
    font-size: 16px;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-license-bar {
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-license-bar h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.license-item {
    text-align: center;
}

.license-item i {
    font-size: 28px;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.license-item span {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

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

.sidebar-btn {
    width: 50px;
    height: 50px;
    background: var(--royal-blue-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-md);
}

.sidebar-btn:hover {
    background: var(--gold);
    color: var(--royal-blue-dark);
    transform: scale(1.1);
}

.sidebar-btn-facebook { background: #1877F2; }
.sidebar-btn-telegram { background: #0088CC; }

.sidebar-label {
    display: none;
}

.sidebar-btn[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    background: var(--dark);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

/* === Breadcrumb === */
.breadcrumb {
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--royal-blue);
}

.breadcrumb a:hover {
    color: var(--gold-dark);
}

.breadcrumb span {
    color: var(--gray);
}

/* === Content Area === */
.content-area {
    display: flex;
    gap: 30px;
    padding: 20px 0 60px;
}

.main-content {
    flex: 1;
}

/* === Article Grid === */
.article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.article-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.article-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--gold);
}

.article-card-thumb {
    height: 200px;
    overflow: hidden;
}

.article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.article-card-title {
    padding: 15px 15px 8px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--royal-blue-dark);
    line-height: 1.4;
}

.article-card-title a:hover {
    color: var(--gold-dark);
}

.article-card-meta {
    padding: 0 15px;
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--text-secondary);
}

.article-card-meta i {
    margin-right: 4px;
    color: var(--gold);
}

.article-card-excerpt {
    padding: 10px 15px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.article-card-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 15px 15px;
    font-size: 13px;
    font-weight: 600;
    color: var(--royal-blue);
    transition: var(--transition);
}

.article-card-more:hover {
    color: var(--gold-dark);
    gap: 10px;
}

/* === Pagination === */
.pagination {
    padding: 30px 0;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--royal-blue-dark);
    color: var(--white);
    border-color: var(--royal-blue-dark);
}

/* === Category Header === */
.category-header {
    padding: 30px;
    background: linear-gradient(135deg, var(--royal-blue-dark), var(--royal-blue));
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--white);
    letter-spacing: 1px;
}

.category-title i {
    color: var(--gold);
    margin-right: 10px;
}

.category-desc {
    color: rgba(255,255,255,0.7);
    margin-top: 10px;
    font-size: 15px;
}

/* === Single Article === */
.single-article {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
}

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

.article-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--royal-blue-dark);
    line-height: 1.3;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-secondary);
}

.article-meta i {
    margin-right: 5px;
    color: var(--gold);
}

.article-featured-img {
    margin-bottom: 25px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
}

.article-content h2,
.article-content h3,
.article-content h4 {
    font-family: var(--font-heading);
    color: var(--royal-blue-dark);
    margin: 25px 0 15px;
}

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

.article-content a {
    color: var(--royal-blue);
}

.article-content a:hover {
    color: var(--gold-dark);
}

.article-content img {
    border-radius: var(--radius-sm);
    margin: 15px 0;
}

.article-content blockquote {
    border-left: 4px solid var(--gold);
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(255,193,7,0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
}

.article-tags {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.article-tags i {
    color: var(--gold);
}

.article-tags span {
    display: inline-block;
    padding: 5px 15px;
    background: var(--off-white);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.article-tags span:hover {
    background: var(--royal-blue-dark);
    color: var(--white);
}

.article-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.article-nav a {
    color: var(--royal-blue);
    font-weight: 600;
    font-size: 14px;
}

.article-nav a:hover {
    color: var(--gold-dark);
}

/* === Related Posts === */
.related-posts {
    margin-top: 40px;
}

.related-posts-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--royal-blue-dark);
    margin-bottom: 25px;
}

.related-posts-title i {
    color: var(--gold);
    margin-right: 8px;
}

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

.related-item {
    display: block;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.related-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--gold);
}

.related-item-thumb {
    height: 120px;
    overflow: hidden;
}

.related-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-item-title {
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--royal-blue-dark);
    line-height: 1.4;
}

/* === Page Article === */
.page-article {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
}

.page-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--royal-blue-dark);
    margin-bottom: 20px;
}

.page-featured-img {
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.page-content {
    font-size: 16px;
    line-height: 1.8;
}

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

/* === No Posts === */
.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: var(--text-secondary);
    font-size: 16px;
}

/* === Swiper Pagination === */
.swiper-pagination-bullet {
    background: var(--gray);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--gold);
    opacity: 1;
}

/* === Utility Classes === */
.text-gold { color: var(--gold); }
.text-royal { color: var(--royal-blue-dark); }
.bg-royal { background: var(--royal-blue-dark); }
.bg-gold { background: var(--gold); }
