/* ============================================
   TEXASBET THEME - main.css (moban-99)
   Texas Hold'em Poker Theme
   Colors: #2E7D32 (Green), #5D4037 (Brown),
           #FFD700 (Gold), #FFF8E1 (Cream)
   ============================================ */

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Heebo', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

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

a:hover {
    color: #FFF8E1;
    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;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes chipStack {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    25% {
        transform: translateY(-5px) rotate(2deg);
        box-shadow: 0 8px 16px rgba(255, 215, 0, 0.2);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
        box-shadow: 0 12px 24px rgba(255, 215, 0, 0.3);
    }
    75% {
        transform: translateY(-5px) rotate(-2deg);
        box-shadow: 0 8px 16px rgba(255, 215, 0, 0.2);
    }
}

@keyframes cardDeal {
    0% {
        opacity: 0;
        transform: translateX(100px) rotateY(90deg) scale(0.5);
    }
    50% {
        opacity: 0.7;
        transform: translateX(20px) rotateY(30deg) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotateY(0deg) scale(1);
    }
}

@keyframes feltGlow {
    0%, 100% {
        box-shadow: inset 0 0 50px rgba(46, 125, 50, 0.2), 0 0 20px rgba(46, 125, 50, 0.1);
    }
    50% {
        box-shadow: inset 0 0 80px rgba(46, 125, 50, 0.4), 0 0 40px rgba(46, 125, 50, 0.2);
    }
}

@keyframes potGrow {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }
    25% {
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.9), 0 0 50px rgba(255, 215, 0, 0.4);
    }
    75% {
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
    }
}

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

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

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

@keyframes counterGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(46, 125, 50, 0.3);
    }
}

@keyframes chipSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes cardFlip {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(90deg); }
    100% { transform: rotateY(0deg); }
}

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #2E7D32, #FFD700, #2E7D32) 1;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(46, 125, 50, 0.5));
    transition: all 0.3s ease;
}

.logo img:hover {
    filter: drop-shadow(0 0 15px rgba(46, 125, 50, 0.8));
    transform: scale(1.05);
}

.header-time {
    font-family: 'Heebo', sans-serif;
    color: #FFD700;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
}

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

.btn-login {
    padding: 8px 18px;
    border: 1px solid #FFD700;
    color: #FFD700;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #FFD700;
    color: #1a1a1a;
}

.btn-register {
    padding: 8px 18px;
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: none;
}

.btn-register:hover {
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    box-shadow: 0 0 15px rgba(46, 125, 50, 0.5);
    color: #fff;
}

.btn-demo {
    padding: 8px 18px;
    border: 1px solid #FFD700;
    color: #FFD700;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    background: #FFD700;
    color: #1a1a1a;
}

/* === NAVIGATION === */
.main-navigation {
    background: #1e1e1e;
    border-top: 1px solid rgba(46, 125, 50, 0.2);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #E8E8F0;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #FFD700;
    background: rgba(46, 125, 50, 0.1);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-link i {
    margin-right: 5px;
    color: #2E7D32;
}

.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, rgba(46, 125, 50, 0.2), rgba(93, 64, 55, 0.2), rgba(46, 125, 50, 0.2));
    overflow: hidden;
    padding: 8px 0;
    border-top: 1px solid rgba(46, 125, 50, 0.3);
}

.notification-content {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: notificationScroll 30s linear infinite;
    color: #FFD700;
    font-size: 13px;
}

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

.announcement-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 2px solid;
    border-image: linear-gradient(90deg, #2E7D32, #FFD700, #2E7D32) 1;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    animation: fadeInUp 0.5s ease;
}

.announcement-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #FFD700;
    font-size: 28px;
    cursor: pointer;
}

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

.announcement-header-icon i {
    font-size: 48px;
    color: #FFD700;
    animation: chipStack 2s ease infinite;
}

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

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(46, 125, 50, 0.1);
    border: 1px solid rgba(46, 125, 50, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.announcement-item:hover {
    background: rgba(46, 125, 50, 0.2);
    border-color: #2E7D32;
    transform: translateX(5px);
}

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

.announcement-badge.hot {
    background: #c62828;
    color: #fff;
}

.announcement-badge.new {
    background: #2E7D32;
    color: #fff;
}

.announcement-badge.info {
    background: #5D4037;
    color: #fff;
}

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

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

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    color: #fff;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    animation: feltGlow 2s ease infinite;
}

.announcement-cta:hover {
    color: #fff;
    transform: scale(1.05);
}

/* === HERO SECTION === */
.texasbet-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    margin-bottom: 40px;
    animation: feltGlow 4s ease infinite;
}

.poker-felt-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #1B5E20 100%);
    z-index: 0;
}

.felt-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(0,0,0,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.felt-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: potGrow 5s ease infinite;
}

.chip-stack-decoration {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.chip {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px dashed rgba(255, 255, 255, 0.5);
    animation: chipStack 3s ease infinite;
}

.chip-red { background: linear-gradient(135deg, #c62828, #b71c1c); animation-delay: 0s; }
.chip-blue { background: linear-gradient(135deg, #1565C0, #0D47A1); animation-delay: 0.3s; }
.chip-gold { background: linear-gradient(135deg, #FFD700, #FFA000); animation-delay: 0.6s; }
.chip-green { background: linear-gradient(135deg, #2E7D32, #1B5E20); animation-delay: 0.9s; }

.cards-fan-decoration {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.card {
    width: 60px;
    height: 85px;
    background: #fff;
    border-radius: 6px;
    position: absolute;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: cardDeal 1.5s ease forwards;
}

.card-ace-spades {
    background: linear-gradient(135deg, #fff 60%, #f5f5f5);
    transform: rotate(-15deg);
    right: 40px;
    top: -40px;
}

.card-king-hearts {
    background: linear-gradient(135deg, #fff 60%, #ffebee);
    transform: rotate(0deg);
    right: 20px;
    top: -30px;
    animation-delay: 0.3s;
}

.card-queen-diamonds {
    background: linear-gradient(135deg, #fff 60%, #e3f2fd);
    transform: rotate(15deg);
    right: 0;
    top: -20px;
    animation-delay: 0.6s;
}

.hero-inner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40px 30px;
    max-width: 750px;
}

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

.hero-brand {
    display: block;
    font-family: 'Heebo', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: 8px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: potGrow 3s ease infinite;
}

.hero-divider-line {
    display: block;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 15px auto;
}

.hero-tagline {
    display: block;
    font-family: 'Heebo', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #FFF8E1;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 16px;
    color: rgba(255, 248, 225, 0.9);
    margin-bottom: 25px;
    line-height: 1.8;
}

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

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

.hero-stat-number {
    display: block;
    font-family: 'Heebo', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.hero-stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 248, 225, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-gold-primary {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #FFD700, #FFA000);
    color: #1a1a1a;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-gold-primary:hover {
    background: linear-gradient(135deg, #FFA000, #FFD700);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    color: #1a1a1a;
    transform: translateY(-2px);
}

.btn-outline-gold {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid #FFD700;
    color: #FFD700;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-gold:hover {
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    color: #FFD700;
}

/* === SECTION TITLES === */
.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title i {
    margin-right: 10px;
    color: #2E7D32;
}

.section-subtitle {
    text-align: center;
    font-size: 15px;
    color: rgba(255, 248, 225, 0.7);
    margin-bottom: 40px;
}

/* === POKER FEATURED GAMES === */
.poker-featured-games {
    padding: 60px 0;
    position: relative;
}

.poker-featured-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.poker-game-card {
    position: relative;
    background: linear-gradient(135deg, #2d2d2d 0%, #1e1e1e 100%);
    border: 1px solid rgba(46, 125, 50, 0.3);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    display: block;
}

.poker-game-card:hover {
    border-color: #FFD700;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.2), 0 0 20px rgba(255, 215, 0, 0.1);
}

.poker-game-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.poker-game-card:hover .poker-game-card-glow {
    opacity: 1;
}

.poker-game-icon {
    margin-bottom: 15px;
}

.poker-game-icon i {
    font-size: 36px;
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.poker-game-rating {
    margin-bottom: 12px;
}

.poker-game-rating i {
    color: #FFD700;
    font-size: 12px;
    margin: 0 1px;
}

.poker-game-card h3 {
    font-size: 18px;
    color: #FFF8E1;
    margin-bottom: 10px;
    font-weight: 600;
}

.poker-game-card p {
    font-size: 13px;
    color: rgba(255, 248, 225, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.poker-game-players {
    font-size: 12px;
    color: #2E7D32;
    font-weight: 600;
}

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

/* === CARD GRID SECTION === */
.card-grid-section {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(46, 125, 50, 0.05) 50%, transparent 100%);
}

.card-grid-map {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.card-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 15px;
    background: linear-gradient(135deg, #2d2d2d 0%, #1e1e1e 100%);
    border: 1px solid rgba(46, 125, 50, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.card-grid-node:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.15);
}

.card-node-icon {
    margin-bottom: 10px;
}

.card-node-icon i {
    font-size: 28px;
    color: #2E7D32;
}

.card-node-label {
    font-size: 14px;
    font-weight: 600;
    color: #FFF8E1;
}

/* === POKER FEATURES === */
.poker-features {
    padding: 60px 0;
    position: relative;
}

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

.poker-feature-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1e1e1e 100%);
    border: 1px solid rgba(46, 125, 50, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.poker-feature-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.15);
}

.poker-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.2), rgba(46, 125, 50, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(46, 125, 50, 0.3);
    transition: all 0.3s ease;
}

.poker-feature-card:hover .poker-feature-icon {
    border-color: #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.05));
}

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

.poker-feature-card h3 {
    font-size: 16px;
    color: #FFF8E1;
    margin-bottom: 12px;
    font-weight: 600;
}

.poker-feature-card p {
    font-size: 13px;
    color: rgba(255, 248, 225, 0.7);
    line-height: 1.6;
}

/* === POKER STATS === */
.poker-stats {
    padding: 80px 0;
    position: relative;
    text-align: center;
}

.poker-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #1B5E20 100%);
    z-index: -1;
}

.felt-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.poker-stats .section-title {
    position: relative;
    z-index: 1;
}

.poker-stats .section-subtitle {
    position: relative;
    z-index: 1;
}

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

.poker-stat-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.poker-stat-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.stat-chip-decoration {
    color: rgba(255, 215, 0, 0.3);
    font-size: 16px;
    margin-bottom: 10px;
}

.stat-chip-decoration.bottom {
    margin-bottom: 0;
    margin-top: 10px;
}

.stat-number {
    font-family: 'Heebo', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 8px;
    animation: counterGlow 3s ease infinite;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 248, 225, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === POKER PROMOS === */
.poker-promos {
    padding: 60px 0;
    position: relative;
}

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

.poker-promo-card {
    position: relative;
    background: linear-gradient(135deg, #2d2d2d 0%, #1e1e1e 100%);
    border: 1px solid rgba(46, 125, 50, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.poker-promo-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.2);
}

.promo-felt-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(46, 125, 50, 0.1) 0%, transparent 70%);
}

.poker-promo-inner {
    position: relative;
    padding: 30px 20px;
    text-align: center;
}

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

.promo-icon i {
    font-size: 36px;
    color: #FFD700;
}

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

.poker-promo-inner p {
    font-size: 13px;
    color: rgba(255, 248, 225, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.promo-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    color: rgba(255, 248, 225, 0.6);
}

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

.promo-badge.hot { background: #c62828; color: #fff; }
.promo-badge.new { background: #2E7D32; color: #fff; }
.promo-badge.vip { background: #FFD700; color: #1a1a1a; }

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-promo:hover {
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    box-shadow: 0 0 15px rgba(46, 125, 50, 0.5);
    color: #fff;
}

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

.footer-cta-feltfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #1B5E20 100%);
    z-index: -1;
}

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

.cta-poker-decoration {
    margin-bottom: 20px;
}

.cta-poker-chips {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFD700, #FFA000);
    border-radius: 50%;
    border: 4px dashed rgba(255, 255, 255, 0.5);
    animation: chipStack 3s ease infinite;
}

.footer-cta-inner h2 {
    font-size: 32px;
    color: #FFD700;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.footer-cta-inner p {
    font-size: 16px;
    color: rgba(255, 248, 225, 0.8);
    margin-bottom: 25px;
    line-height: 1.8;
}

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

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

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

.cta-main-btn {
    animation: potGrow 3s ease infinite;
}

/* === NEWS SECTION === */
.home-news-section {
    padding: 60px 0;
}

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

.article-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1e1e1e 100%);
    border: 1px solid rgba(46, 125, 50, 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(46, 125, 50, 0.15);
}

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

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

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

.article-card-title {
    padding: 15px 15px 8px;
    font-size: 15px;
    font-weight: 600;
    color: #FFF8E1;
    line-height: 1.4;
}

.article-card-title a {
    color: #FFF8E1;
}

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

.article-card-meta {
    padding: 0 15px;
    font-size: 12px;
    color: rgba(255, 248, 225, 0.5);
    margin-bottom: 8px;
}

.article-card-meta i {
    margin-right: 4px;
    color: #2E7D32;
}

.article-card-excerpt {
    padding: 0 15px 15px;
    font-size: 13px;
    color: rgba(255, 248, 225, 0.6);
    line-height: 1.6;
}

.article-card-more {
    display: inline-block;
    padding: 0 15px 15px;
    font-size: 13px;
    color: #FFD700;
    font-weight: 600;
}

.article-card-more:hover {
    color: #FFA000;
}

.view-more-btn {
    display: block;
    text-align: center;
    padding: 12px 30px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    max-width: 200px;
    margin: 0 auto;
}

.gold-view-more {
    color: #FFD700;
}

.view-more-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
}

.view-more-btn i {
    margin-left: 5px;
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #1e1e1e 0%, #141414 100%);
    border-top: 2px solid;
    border-image: linear-gradient(90deg, #2E7D32, #FFD700, #2E7D32) 1;
    padding: 50px 0 30px;
}

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

.footer-col h4 {
    font-family: 'Heebo', sans-serif;
    font-size: 16px;
    color: #FFD700;
    margin-bottom: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255, 248, 225, 0.7);
    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;
    filter: drop-shadow(0 0 8px rgba(46, 125, 50, 0.5));
}

.footer-brand-text {
    font-size: 13px;
    color: rgba(255, 248, 225, 0.6);
    line-height: 1.8;
    margin-bottom: 15px;
}

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

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

.footer-social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(46, 125, 50, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 248, 225, 0.7);
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-social-links a:hover {
    background: #2E7D32;
    border-color: #2E7D32;
    color: #fff;
}

/* Footer License Bar */
.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(46, 125, 50, 0.2);
    border-bottom: 1px solid rgba(46, 125, 50, 0.2);
    margin-bottom: 20px;
}

.footer-license-bar h4 {
    font-size: 14px;
    color: #FFD700;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

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

.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.license-item i {
    font-size: 24px;
    color: #2E7D32;
}

.license-item span {
    font-size: 11px;
    color: rgba(255, 248, 225, 0.6);
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 248, 225, 0.5);
    letter-spacing: 1px;
}

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

.sidebar-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    position: relative;
}

.sidebar-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.5);
    color: #fff;
}

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

.sidebar-btn-telegram {
    background: linear-gradient(135deg, #0088cc, #005f8c);
}

.sidebar-label {
    display: none;
    position: absolute;
    right: 60px;
    background: #1a1a1a;
    color: #FFF8E1;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    border: 1px solid rgba(46, 125, 50, 0.3);
}

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

/* === BREADCRUMB === */
.breadcrumb {
    padding: 15px 0;
    font-size: 13px;
    color: rgba(255, 248, 225, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #2E7D32;
    font-weight: 500;
}

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

.breadcrumb span {
    color: rgba(255, 248, 225, 0.5);
}

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

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

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

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 248, 225, 0.5);
    font-size: 16px;
}

/* === CATEGORY HEADER === */
.category-header {
    text-align: center;
    padding: 30px 0;
}

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

.category-title i {
    color: #2E7D32;
}

.category-desc {
    font-size: 14px;
    color: rgba(255, 248, 225, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

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

.provider-tab {
    padding: 8px 18px;
    background: rgba(46, 125, 50, 0.1);
    border: 1px solid rgba(46, 125, 50, 0.3);
    border-radius: 20px;
    color: rgba(255, 248, 225, 0.7);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Mulish', sans-serif;
}

.provider-tab:hover {
    border-color: #FFD700;
    color: #FFD700;
}

.provider-tab.active {
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    border-color: #2E7D32;
    color: #fff;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, #2d2d2d 0%, #1e1e1e 100%);
    border: 1px solid rgba(46, 125, 50, 0.2);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

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

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

.article-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255, 248, 225, 0.5);
}

.article-meta i {
    margin-right: 4px;
    color: #2E7D32;
}

.article-meta a {
    color: #2E7D32;
}

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

.article-featured-img img {
    width: 100%;
    border-radius: 10px;
}

.article-content {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 248, 225, 0.85);
}

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

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

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

.article-content a {
    color: #2E7D32;
    text-decoration: underline;
}

.article-content blockquote {
    border-left: 4px solid #2E7D32;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

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

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

/* Article Tags */
.article-tags {
    padding: 20px 0;
    border-top: 1px solid rgba(46, 125, 50, 0.2);
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

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

.article-tags span {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(46, 125, 50, 0.1);
    border: 1px solid rgba(46, 125, 50, 0.3);
    border-radius: 15px;
    font-size: 12px;
    color: rgba(255, 248, 225, 0.7);
}

.article-tags span a {
    color: rgba(255, 248, 225, 0.7);
}

/* Article Navigation */
.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(46, 125, 50, 0.2);
}

.article-nav-prev,
.article-nav-next {
    max-width: 45%;
}

.article-nav a {
    color: #FFD700;
    font-size: 14px;
    font-weight: 500;
}

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

.article-nav i {
    color: #2E7D32;
    margin: 0 5px;
}

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

.related-posts-title {
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

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

.related-item {
    background: linear-gradient(135deg, #2d2d2d 0%, #1e1e1e 100%);
    border: 1px solid rgba(46, 125, 50, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
}

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

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

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

.related-item-title {
    padding: 12px;
    font-size: 13px;
    color: #FFF8E1;
    font-weight: 600;
    line-height: 1.4;
}

/* === PAGE ARTICLE === */
.page-article {
    background: linear-gradient(135deg, #2d2d2d 0%, #1e1e1e 100%);
    border: 1px solid rgba(46, 125, 50, 0.2);
    border-radius: 12px;
    padding: 30px;
}

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

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

.page-featured-img img {
    width: 100%;
    border-radius: 10px;
}

.page-content {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 248, 225, 0.85);
}

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

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

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

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

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(46, 125, 50, 0.1);
    border: 1px solid rgba(46, 125, 50, 0.3);
    color: rgba(255, 248, 225, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    border-color: #2E7D32;
    color: #fff;
}

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

.error-poker-chip {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #FFD700, #FFA000);
    border-radius: 50%;
    border: 5px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: chipStack 3s ease infinite;
}

.error-chip-inner {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    border-radius: 50%;
}

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

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

.error-desc {
    font-size: 15px;
    color: rgba(255, 248, 225, 0.6);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* === HOME NEWS PLACEHOLDER === */
.home-news-placeholder {
    display: contents;
}
