/* =============================================
   POKERKING Theme - Main Stylesheet
   Poker Table Theme with Card Flip Animations
   ============================================= */

/* === CSS Variables === */
:root {
    --pk-green: #004D40;
    --pk-green-light: #00695C;
    --pk-green-dark: #002F28;
    --pk-red: #C62828;
    --pk-red-light: #E53935;
    --pk-gold: #FFD700;
    --pk-gold-dark: #B8860B;
    --pk-black: #0A0A0A;
    --pk-black-light: #1A1A1A;
    --pk-white: #FFFFFF;
    --pk-gray: #2A2A2A;
    --pk-gray-light: #3A3A3A;
    --pk-text: #E0E0E0;
    --pk-text-muted: #999999;
    --pk-felt: #00695C;
    --pk-felt-dark: #004D40;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Roboto', sans-serif;
    --shadow-gold: 0 0 15px rgba(255, 215, 0, 0.3);
    --shadow-green: 0 0 20px rgba(0, 77, 64, 0.5);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--pk-black);
    color: var(--pk-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* === Typography === */
.poker-gold-text {
    color: var(--pk-gold);
    font-family: var(--font-heading);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.poker-white-text {
    color: var(--pk-white);
    font-family: var(--font-heading);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    color: var(--pk-text-muted);
    font-size: 16px;
    margin-bottom: 40px;
}

/* === Announcement Modal === */
.announcement-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    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.8);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, var(--pk-green-dark), var(--pk-black-light));
    border: 2px solid var(--pk-gold);
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    z-index: 1;
    box-shadow: var(--shadow-gold);
}

.announcement-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    color: var(--pk-gold);
    cursor: pointer;
    background: none;
    border: none;
    z-index: 2;
}

.announcement-close:hover {
    color: var(--pk-white);
}

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

.announcement-header-icon i {
    font-size: 40px;
    color: var(--pk-gold);
}

.announcement-title {
    text-align: center;
    font-family: var(--font-heading);
    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(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 8px;
    transition: var(--transition);
}

.announcement-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--pk-gold);
    transform: translateX(5px);
}

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

.announcement-badge.hot {
    background: var(--pk-red);
    color: white;
}

.announcement-badge.new {
    background: var(--pk-gold);
    color: var(--pk-black);
}

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

.announcement-text {
    flex: 1;
    font-size: 13px;
    color: var(--pk-text);
}

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

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

.announcement-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--pk-gold), var(--pk-gold-dark));
    color: var(--pk-black);
    padding: 12px 40px;
    border-radius: 25px;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    transition: var(--transition);
}

.announcement-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

/* === Header === */
.site-header {
    background: linear-gradient(180deg, var(--pk-green-dark) 0%, var(--pk-black) 100%);
    border-bottom: 2px solid var(--pk-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.header-time {
    color: var(--pk-gold);
    font-family: var(--font-body);
    font-size: 13px;
}

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

.btn-login {
    padding: 8px 20px;
    border: 1px solid var(--pk-gold);
    color: var(--pk-gold);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-login:hover {
    background: var(--pk-gold);
    color: var(--pk-black);
}

.btn-register {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--pk-gold), var(--pk-gold-dark));
    color: var(--pk-black);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-register:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.btn-demo {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--pk-green-light);
    color: var(--pk-green-light);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-demo:hover {
    background: var(--pk-green-light);
    color: var(--pk-white);
}

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

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

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: var(--pk-text);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-item.current-menu-item .nav-link {
    color: var(--pk-gold);
    background: rgba(255, 215, 0, 0.05);
}

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

.has-dropdown .nav-link::after {
    content: ' ▾';
    font-size: 10px;
}

.nav-item.has-dropdown .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--pk-black-light);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 5px;
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.nav-item.has-dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu .nav-link {
    padding: 10px 20px;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.05);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--pk-gold);
    color: var(--pk-gold);
    padding: 8px 12px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
}

/* === Notification Bar === */
.notification-bar {
    background: linear-gradient(90deg, var(--pk-green-dark), var(--pk-green), var(--pk-green-dark));
    padding: 8px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

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

.notification-content span {
    font-size: 12px;
    color: var(--pk-gold);
    flex-shrink: 0;
}

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

/* === Poker Hero Section === */
.poker-hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: -15px -15px 40px;
    padding: 60px 15px;
}

.poker-table-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.poker-table-ellipse {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, var(--pk-felt) 0%, var(--pk-felt-dark) 60%, var(--pk-green-dark) 100%);
    border: 3px solid var(--pk-gold);
    box-shadow:
        0 0 30px rgba(255, 215, 0, 0.2),
        inset 0 0 60px rgba(0, 0, 0, 0.4),
        0 20px 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.felt-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
    opacity: 0.5;
}

.table-gold-trim {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Scattered cards on table */
.scattered-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.scattered-card {
    position: absolute;
    width: 50px;
    height: 70px;
    background: white;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--pk-black);
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    opacity: 0.6;
}

.scattered-card .card-suit {
    font-size: 16px;
}

.scattered-card .card-suit.red {
    color: var(--pk-red);
}

.scattered-card .card-val {
    font-size: 12px;
}

.sc-1 { top: 25%; left: 20%; transform: rotate(-15deg); }
.sc-2 { top: 35%; left: 35%; transform: rotate(8deg); }
.sc-3 { top: 20%; right: 25%; transform: rotate(-5deg); }
.sc-4 { top: 55%; left: 45%; transform: rotate(20deg); }
.sc-5 { top: 45%; right: 30%; transform: rotate(-12deg); }

/* Poker chips decoration */
.poker-chips-deco {
    position: absolute;
    bottom: 20%;
    right: 15%;
    display: flex;
    gap: 5px;
}

.chip {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 3px dashed rgba(255, 255, 255, 0.5);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.chip-gold {
    background: linear-gradient(135deg, var(--pk-gold), var(--pk-gold-dark));
}

.chip-red {
    background: linear-gradient(135deg, var(--pk-red), #8B0000);
}

.chip-black {
    background: linear-gradient(135deg, #333, #111);
}

/* Hero content */
.poker-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
}

.poker-hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.poker-hero-desc {
    font-size: 18px;
    color: var(--pk-text);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Hero stats */
.poker-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--pk-gold);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--pk-text-muted);
    margin-top: 5px;
    text-transform: uppercase;
}

/* Hero CTA */
.poker-hero-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-poker-primary {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--pk-gold), var(--pk-gold-dark));
    color: var(--pk-black);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    border-radius: 30px;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-poker-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-poker-secondary {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: var(--pk-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    border-radius: 30px;
    letter-spacing: 1px;
    border: 2px solid var(--pk-gold);
    transition: var(--transition);
    cursor: pointer;
}

.btn-poker-secondary:hover {
    background: var(--pk-gold);
    color: var(--pk-black);
    transform: translateY(-3px);
}

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

/* === Card Flip Showcase === */
.card-flip-showcase {
    padding: 60px 0;
    text-align: center;
}

.card-flip-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    perspective: 1000px;
    margin-top: 20px;
}

.flip-card {
    width: 180px;
    height: 260px;
    cursor: pointer;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.flip-card.flipped .card-inner {
    transform: rotateY(180deg);
}

.flip-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
}

/* Card front face */
.card-front {
    background: white;
    border: 2px solid #DDD;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotateY(180deg);
}

.card-face {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pk-black);
}

.card-face.red-face .card-center-suit,
.card-face.red-face .card-suit-small {
    color: var(--pk-red);
}

.card-corner {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.card-corner.top-left {
    top: 10px;
    left: 10px;
}

.card-corner.bottom-right {
    bottom: 10px;
    right: 10px;
    transform: rotate(180deg);
}

.card-value {
    font-family: var(--font-heading);
    font-size: 20px;
}

.card-suit-small {
    font-size: 14px;
}

.card-center-suit {
    font-size: 80px;
}

/* Card back */
.card-back {
    background: linear-gradient(135deg, var(--pk-red), #8B0000);
    border: 2px solid var(--pk-gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-back-pattern {
    position: relative;
    width: 85%;
    height: 90%;
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 5px,
        rgba(255, 215, 0, 0.1) 5px,
        rgba(255, 215, 0, 0.1) 10px
    );
}

.card-back-diamond {
    position: absolute;
    width: 60%;
    height: 40%;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transform: rotate(45deg);
}

.card-back-logo {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--pk-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    z-index: 1;
}

/* Card flip auto animation */
@keyframes cardFlip {
    0% { transform: rotateY(0); }
    100% { transform: rotateY(180deg); }
}

.flip-card.animate .card-inner {
    animation: cardFlip 0.8s ease forwards;
}

/* === Poker Categories === */
.poker-categories {
    padding: 60px 0;
}

.poker-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.poker-category-card {
    background: linear-gradient(135deg, var(--pk-black-light), var(--pk-gray));
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.poker-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--pk-gold), var(--pk-gold-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.poker-category-card:hover::before {
    transform: scaleX(1);
}

.poker-category-card:hover {
    border-color: var(--pk-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), var(--shadow-gold);
}

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

.suit-icon {
    font-size: 36px;
    margin: 0 5px;
    color: var(--pk-white);
}

.suit-icon.red {
    color: var(--pk-red);
}

.poker-category-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--pk-gold);
    margin-bottom: 10px;
}

.poker-category-card p {
    font-size: 14px;
    color: var(--pk-text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
}

.category-players {
    font-size: 12px;
    color: var(--pk-green-light);
    background: rgba(0, 105, 92, 0.2);
    padding: 5px 12px;
    border-radius: 15px;
}

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

/* === Hand Rankings === */
.hand-rankings {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(0, 77, 64, 0.1), transparent);
}

.hand-rankings-chart {
    max-width: 900px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hand-rank-item {
    display: grid;
    grid-template-columns: 250px 200px 1fr;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.hand-rank-item:hover {
    border-color: var(--pk-gold);
    background: rgba(0, 77, 64, 0.1);
    transform: translateX(5px);
}

.hand-rank-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hand-rank-number {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--pk-gold), var(--pk-gold-dark));
    color: var(--pk-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.hand-rank-name {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--pk-gold);
    font-weight: 600;
}

.hand-rank-desc {
    font-size: 11px;
    color: var(--pk-text-muted);
    display: none;
}

.hand-rank-cards {
    display: flex;
    gap: 4px;
}

.mini-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 50px;
    background: white;
    color: var(--pk-black);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.mini-card.red {
    color: var(--pk-red);
}

.hand-rank-bar {
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.rank-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--pk-gold), var(--pk-gold-dark));
    border-radius: 10px;
    position: relative;
    min-width: 40px;
    transition: width 1s ease;
}

.rank-bar-fill span {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: var(--pk-gold);
    white-space: nowrap;
}

/* === Live Tables === */
.live-tables {
    padding: 60px 0;
}

.live-tables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.live-table-card {
    background: linear-gradient(135deg, var(--pk-black-light), var(--pk-gray));
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 15px;
    padding: 25px;
    transition: var(--transition);
    position: relative;
}

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

.table-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.table-status.live {
    background: rgba(198, 40, 40, 0.2);
    color: var(--pk-red-light);
    border: 1px solid var(--pk-red);
}

.table-status.live i {
    font-size: 8px;
    animation: pulse 1.5s infinite;
    margin-right: 3px;
}

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

.table-info h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--pk-gold);
    margin-bottom: 10px;
    padding-right: 60px;
}

.table-details {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.table-details span {
    font-size: 13px;
    color: var(--pk-text-muted);
}

.table-details i {
    color: var(--pk-gold);
    margin-right: 5px;
}

.table-pot {
    margin-bottom: 15px;
}

.pot-label {
    display: block;
    font-size: 11px;
    color: var(--pk-text-muted);
    text-transform: uppercase;
}

.pot-value {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--pk-gold);
    font-weight: 700;
}

.table-seats {
    display: flex;
    gap: 6px;
}

.seat {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.seat.occupied {
    background: var(--pk-green-light);
    box-shadow: 0 0 5px rgba(0, 105, 92, 0.5);
}

.seat.empty {
    background: transparent;
    border: 2px dashed rgba(255, 215, 0, 0.3);
}

/* === Tournaments === */
.poker-tournaments {
    padding: 60px 0;
}

.tournaments-swiper {
    margin-top: 30px;
    padding-bottom: 50px;
}

.tournament-card {
    background: linear-gradient(135deg, var(--pk-black-light), var(--pk-gray));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tournament-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--pk-gold), var(--pk-red), var(--pk-gold));
}

.tournament-badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--pk-red);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 15px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.tournament-badge.new {
    background: var(--pk-green-light);
}

.tournament-badge.hot {
    background: var(--pk-red);
}

.tournament-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--pk-gold);
    margin-bottom: 20px;
}

.tournament-details {
    text-align: left;
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.08);
}

.detail-label {
    color: var(--pk-text-muted);
    font-size: 14px;
}

.detail-value {
    color: var(--pk-text);
    font-weight: 600;
    font-size: 14px;
}

.detail-value.gold {
    color: var(--pk-gold);
    font-family: var(--font-heading);
}

.detail-value.free {
    color: var(--pk-green-light);
    font-weight: 700;
}

.btn-tournament {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(135deg, var(--pk-gold), var(--pk-gold-dark));
    color: var(--pk-black);
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 25px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-tournament:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

/* Tournaments swiper styling */
.tournaments-swiper .swiper-slide {
    height: auto;
}

.tournaments-swiper .swiper-button-prev,
.tournaments-swiper .swiper-button-next {
    color: var(--pk-gold);
}

.tournaments-swiper .swiper-pagination-bullet {
    background: var(--pk-gold);
}

.tournaments-swiper .swiper-pagination-bullet-active {
    background: var(--pk-gold);
}

/* === Promotions === */
.poker-promos {
    padding: 60px 0;
}

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

.promo-card {
    background: linear-gradient(135deg, var(--pk-black-light), var(--pk-gray));
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.promo-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--pk-gold), var(--pk-gold-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.promo-card:hover {
    border-color: var(--pk-gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), var(--shadow-gold);
}

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

.promo-icon i {
    font-size: 48px;
    color: var(--pk-gold);
}

.promo-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--pk-gold);
    margin-bottom: 12px;
}

.promo-card p {
    font-size: 14px;
    color: var(--pk-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pk-gold);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.promo-cta:hover {
    gap: 12px;
}

/* === Footer CTA === */
.footer-cta {
    padding: 80px 0;
    margin-top: 20px;
    background: linear-gradient(180deg, rgba(0, 77, 64, 0.15), rgba(0, 0, 0, 0.3));
    position: relative;
    overflow: hidden;
}

.footer-cta-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-cta h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.footer-cta p {
    font-size: 18px;
    color: var(--pk-text);
    margin-bottom: 30px;
}

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

.cta-trust-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cta-trust-badges span {
    font-size: 13px;
    color: var(--pk-text-muted);
}

.cta-trust-badges i {
    color: var(--pk-green-light);
    margin-right: 5px;
}

/* CTA chips decoration */
.cta-chips-deco {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-chip {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px dashed rgba(255, 215, 0, 0.2);
    opacity: 0.5;
    animation: chipBounce 3s ease-in-out infinite;
}

.cta-chip.c1 { background: rgba(255, 215, 0, 0.2); top: 10%; left: 5%; animation-delay: 0s; }
.cta-chip.c2 { background: rgba(198, 40, 40, 0.2); top: 30%; right: 8%; animation-delay: 0.5s; }
.cta-chip.c3 { background: rgba(0, 105, 92, 0.2); bottom: 20%; left: 12%; animation-delay: 1s; }
.cta-chip.c4 { background: rgba(255, 215, 0, 0.15); bottom: 15%; right: 15%; animation-delay: 1.5s; }
.cta-chip.c5 { background: rgba(198, 40, 40, 0.15); top: 50%; left: 50%; animation-delay: 2s; }

@keyframes chipBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

/* === Footer === */
.site-footer {
    background: linear-gradient(180deg, var(--pk-black), var(--pk-green-dark));
    border-top: 2px solid var(--pk-gold);
    padding: 60px 0 0;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

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

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

.footer-brand-text {
    font-size: 13px;
    color: var(--pk-text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

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

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

.footer-social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pk-gold);
    transition: var(--transition);
}

.footer-social-links a:hover {
    background: var(--pk-gold);
    color: var(--pk-black);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--pk-gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

.footer-col ul li a {
    font-size: 13px;
    color: var(--pk-text-muted);
    transition: var(--transition);
}

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

/* Footer license bar */
.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    margin-bottom: 25px;
}

.footer-license-bar h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--pk-gold);
    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: var(--pk-gold);
}

.license-item span {
    font-size: 11px;
    color: var(--pk-text-muted);
}

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

.footer-copyright {
    font-size: 13px;
    color: var(--pk-text-muted);
    margin-bottom: 5px;
}

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

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

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

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

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

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--pk-text-muted);
}

/* === Category Header === */
.category-header {
    padding: 25px 0;
    text-align: center;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 32px;
    letter-spacing: 2px;
}

.category-desc {
    color: var(--pk-text-muted);
    margin-top: 10px;
    font-size: 15px;
}

/* === Provider Tabs === */
.provider-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.provider-tab {
    padding: 8px 20px;
    background: var(--pk-gray);
    border: 1px solid rgba(255, 215, 0, 0.15);
    color: var(--pk-text-muted);
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    transition: var(--transition);
}

.provider-tab:hover,
.provider-tab.active {
    background: linear-gradient(135deg, var(--pk-gold), var(--pk-gold-dark));
    color: var(--pk-black);
    border-color: var(--pk-gold);
    font-weight: 600;
}

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

.article-card {
    background: var(--pk-black-light);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

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

.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;
}

.article-card-title a {
    font-size: 15px;
    font-weight: 600;
    color: var(--pk-text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

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

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

.article-card-excerpt {
    padding: 10px 15px;
    font-size: 13px;
    color: var(--pk-text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.article-card-more:hover {
    gap: 10px;
}

/* === Pagination === */
.pagination {
    margin-top: 30px;
    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;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    color: var(--pk-text);
    font-size: 14px;
    transition: var(--transition);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--pk-gold);
    color: var(--pk-black);
    border-color: var(--pk-gold);
}

/* === Single Article === */
.single-article {
    background: var(--pk-black-light);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.article-title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--pk-gold);
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: var(--pk-text-muted);
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    margin-bottom: 20px;
}

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

.article-meta a {
    color: var(--pk-gold);
}

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

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

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

.article-content h2,
.article-content h3,
.article-content h4 {
    font-family: var(--font-heading);
    color: var(--pk-gold);
    margin: 25px 0 10px;
}

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

.article-content a {
    color: var(--pk-gold);
    text-decoration: underline;
}

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

.article-content blockquote {
    border-left: 3px solid var(--pk-gold);
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(255, 215, 0, 0.05);
    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: 5px;
}

/* Article tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    margin-top: 20px;
}

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

.article-tags a {
    padding: 4px 12px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    font-size: 12px;
    color: var(--pk-gold);
    transition: var(--transition);
}

.article-tags a:hover {
    background: var(--pk-gold);
    color: var(--pk-black);
}

/* Article navigation */
.article-nav {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    margin-top: 20px;
}

.article-nav a {
    color: var(--pk-gold);
    font-size: 14px;
}

.article-nav a:hover {
    text-decoration: underline;
}

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

.related-posts-title {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

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

.related-item {
    background: var(--pk-black-light);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.related-item:hover {
    border-color: var(--pk-gold);
    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: 10px;
    font-size: 13px;
    color: var(--pk-text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* === Page Article === */
.page-article {
    background: var(--pk-black-light);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 30px;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--pk-gold);
    margin-bottom: 20px;
}

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

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

.page-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--pk-text);
}

.page-content h2,
.page-content h3 {
    font-family: var(--font-heading);
    color: var(--pk-gold);
    margin: 20px 0 10px;
}

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

.page-content a {
    color: var(--pk-gold);
}

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

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--pk-green-dark);
    color: var(--pk-gold);
    font-size: 18px;
    border-left: 2px solid var(--pk-gold);
    transition: var(--transition);
    position: relative;
}

.sidebar-btn:hover {
    width: 180px;
    background: var(--pk-green);
}

.sidebar-label {
    display: none;
    margin-left: 10px;
    font-size: 12px;
    white-space: nowrap;
    color: var(--pk-white);
}

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

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

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

/* === No Posts === */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.no-posts p {
    font-size: 18px;
    color: var(--pk-text-muted);
}

/* === View More Button === */
.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    padding: 12px 30px;
    border: 1px solid var(--pk-gold);
    color: var(--pk-gold);
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.view-more-btn:hover {
    background: var(--pk-gold);
    color: var(--pk-black);
}

/* === Animations === */
@keyframes feltGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(0, 105, 92, 0.3); }
    50% { box-shadow: 0 0 50px rgba(0, 105, 92, 0.5); }
}

@keyframes cardShuffle {
    0% { transform: translateX(0) rotate(0); }
    25% { transform: translateX(-5px) rotate(-2deg); }
    50% { transform: translateX(5px) rotate(2deg); }
    75% { transform: translateX(-3px) rotate(-1deg); }
    100% { transform: translateX(0) rotate(0); }
}

@keyframes cardFlipAnim {
    0% { transform: rotateY(0); }
    100% { transform: rotateY(180deg); }
}

/* === Scroll Animations === */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Home News Section (from reference) === */
.home-news-section {
    padding: 40px 0;
}

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

.home-news-placeholder {
    display: contents;
}

.neon-view-more {
    text-align: center;
    display: block;
    margin: 25px auto 0;
    width: fit-content;
}

/* === Additional Utility Styles === */
.text-gold { color: var(--pk-gold); }
.text-red { color: var(--pk-red); }
.text-green { color: var(--pk-green-light); }
.bg-dark { background: var(--pk-black); }
.bg-felt { background: var(--pk-felt-dark); }

/* Gold divider */
.gold-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--pk-gold), transparent);
    margin: 40px 0;
}

/* Poker felt background for sections */
.poker-felt-bg {
    background: radial-gradient(ellipse at center, var(--pk-felt) 0%, var(--pk-felt-dark) 70%);
    position: relative;
}

.poker-felt-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.02) 2px, rgba(0,0,0,0.02) 4px);
    pointer-events: none;
}
