/* PokerDom Casino - Ultra-Fast Optimized CSS */
/* No external dependencies, mobile-first, lightweight */

/* CSS Variables for PokerDom Green Theme */
:root {
    --primary-green: #00D84F;
    --dark-green: #00B33D;
    --light-green: #33E06B;
    --accent-green: #00FF5C;
    --neon-green: #39FF14;
    
    --bg-primary: #0D1117;
    --bg-secondary: #161B22;
    --bg-tertiary: #21262D;
    --bg-card: #1C2128;
    
    --text-primary: #E6EDF3;
    --text-secondary: #7D8590;
    --text-white: #FFFFFF;
    --text-dark: #0D1117;
    
    --gold: #FFD700;
    --orange: #FF9F43;
    
    --shadow-card: 0 2px 10px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(0, 216, 79, 0.6);
    
    --transition: 0.3s ease;
}

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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
}

/* PokerDom Container */
.pokerdom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* PokerDom Header */
.pokerdom-header {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border-bottom: 2px solid var(--primary-green);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.pokerdom-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

/* PokerDom Logo */
.pokerdom-logo {
    display: flex;
    align-items: center;
}

.pokerdom-logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        0 0 10px var(--neon-green),
        0 0 20px var(--neon-green),
        0 0 30px var(--neon-green);
    animation: pokerdomLogoGlow 2s ease-in-out infinite;
}

@keyframes pokerdomLogoGlow {
    0%, 100% { 
        text-shadow: 
            0 0 10px var(--neon-green),
            0 0 20px var(--neon-green),
            0 0 30px var(--neon-green);
    }
    50% { 
        text-shadow: 
            0 0 20px var(--neon-green),
            0 0 30px var(--neon-green),
            0 0 40px var(--neon-green);
    }
}

/* PokerDom Navigation */
.pokerdom-nav-list {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
}

.pokerdom-nav-link {
    display: block;
    padding: 10px 15px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition);
    font-size: 14px;
}

.pokerdom-nav-link:hover {
    background: rgba(0, 216, 79, 0.1);
    color: var(--primary-green);
    box-shadow: 0 2px 8px rgba(0, 216, 79, 0.4);
}

/* PokerDom Auth Buttons */
.pokerdom-auth-buttons {
    display: flex;
    gap: 8px;
}

/* PokerDom Buttons */
.pokerdom-btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1.4;
}

.pokerdom-btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 216, 79, 0.4);
}

.pokerdom-btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--primary-green) 100%);
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

.pokerdom-btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.pokerdom-btn-secondary:hover {
    background: var(--primary-green);
    color: var(--text-dark);
}

.pokerdom-btn-login {
    background: rgba(0, 216, 79, 0.1);
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
}

.pokerdom-btn-register {
    background: var(--primary-green);
    color: var(--text-dark);
}

.pokerdom-btn-bonus {
    background: linear-gradient(45deg, var(--gold) 0%, var(--orange) 100%);
    color: var(--text-dark);
}

.pokerdom-btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--bg-tertiary);
}

.pokerdom-btn-outline:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

/* PokerDom Hero Section */
.pokerdom-hero {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.pokerdom-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 216, 79, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.pokerdom-hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.pokerdom-hero-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text-white);
}

.pokerdom-hero-subtitle {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-green);
    margin-top: 8px;
}

.pokerdom-hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.pokerdom-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.pokerdom-hero-actions .pokerdom-btn {
    padding: 14px 24px;
    font-size: 16px;
}

.pokerdom-hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
}

.pokerdom-hero-features li {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
}

/* PokerDom Poker Cards Animation */
.pokerdom-poker-cards {
    position: relative;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.pokerdom-card {
    font-size: 48px;
    animation: pokerdomCardFloat 3s ease-in-out infinite;
}

.pokerdom-card-1 { animation-delay: 0s; }
.pokerdom-card-2 { animation-delay: 0.5s; }
.pokerdom-card-3 { animation-delay: 1s; }

@keyframes pokerdomCardFloat {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

/* PokerDom Section Styles */
section {
    padding: 60px 0;
}

.pokerdom-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.pokerdom-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
    position: relative;
}

.pokerdom-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-green);
    margin: 15px auto;
    border-radius: 2px;
}

.pokerdom-section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

/* PokerDom Games Section */
.pokerdom-games {
    background: var(--bg-secondary);
}

.pokerdom-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.pokerdom-game-category {
    background: var(--bg-card);
    border: 1px solid var(--bg-tertiary);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.pokerdom-game-category:hover {
    transform: translateY(-4px);
    border-color: var(--primary-green);
    box-shadow: 0 4px 20px rgba(0, 216, 79, 0.3);
}

.pokerdom-game-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.pokerdom-game-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.pokerdom-game-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.pokerdom-game-link {
    display: inline-block;
    background: rgba(0, 216, 79, 0.1);
    color: var(--primary-green);
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-green);
    transition: var(--transition);
    font-size: 14px;
}

.pokerdom-game-link:hover {
    background: var(--primary-green);
    color: var(--text-dark);
}

/* PokerDom Bonuses Section */
.pokerdom-bonuses {
    background: var(--bg-primary);
}

.pokerdom-bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.pokerdom-bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-tertiary);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pokerdom-bonus-featured {
    border-color: var(--primary-green);
    box-shadow: 0 4px 20px rgba(0, 216, 79, 0.3);
}

.pokerdom-bonus-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gold);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 12px;
}

.pokerdom-bonus-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.pokerdom-bonus-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.pokerdom-bonus-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

/* PokerDom Features Section */
.pokerdom-features {
    background: var(--bg-secondary);
}

.pokerdom-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.pokerdom-feature-item {
    text-align: center;
}

.pokerdom-feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.pokerdom-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.pokerdom-feature-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* PokerDom FAQ Section */
.pokerdom-faq {
    background: var(--bg-primary);
}

.pokerdom-faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.pokerdom-faq-item {
    background: var(--bg-card);
    border: 1px solid var(--bg-tertiary);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.pokerdom-faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-white);
    list-style: none;
    position: relative;
    transition: var(--transition);
}

.pokerdom-faq-question:hover {
    background: var(--bg-hover);
    color: var(--primary-green);
}

.pokerdom-faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--primary-green);
    transition: var(--transition);
}

.pokerdom-faq-item[open] .pokerdom-faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.pokerdom-faq-answer {
    padding: 0 20px 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* PokerDom Footer */
.pokerdom-footer {
    background: var(--bg-tertiary);
    border-top: 2px solid var(--primary-green);
    padding: 40px 0 20px;
}

.pokerdom-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.pokerdom-footer-logo .pokerdom-logo-text {
    font-size: 20px;
    margin-bottom: 15px;
}

.pokerdom-footer-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.pokerdom-footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.pokerdom-footer-links {
    list-style: none;
}

.pokerdom-footer-links li {
    margin-bottom: 8px;
}

.pokerdom-footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.pokerdom-footer-links a:hover {
    color: var(--primary-green);
}

.pokerdom-footer-legal {
    border-top: 1px solid var(--bg-tertiary);
    padding-top: 20px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
}

.pokerdom-footer-legal-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
}

.pokerdom-footer-legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.pokerdom-footer-legal-links a:hover {
    color: var(--primary-green);
}

.pokerdom-footer-warning {
    margin-top: 15px;
    color: var(--orange);
    font-weight: 600;
}

/* PokerDom Mobile Optimizations */
@media (max-width: 768px) {
    .pokerdom-container {
        padding: 0 10px;
    }
    
    .pokerdom-header-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .pokerdom-nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2px;
    }
    
    .pokerdom-nav-link {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .pokerdom-auth-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .pokerdom-hero {
        padding: 40px 0;
        text-align: center;
    }
    
    .pokerdom-hero-title {
        font-size: 28px;
    }
    
    .pokerdom-hero-subtitle {
        font-size: 16px;
    }
    
    .pokerdom-hero-actions {
        justify-content: center;
    }
    
    .pokerdom-hero-features {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 40px 0;
    }
    
    .pokerdom-section-title {
        font-size: 24px;
    }
    
    .pokerdom-games-grid,
    .pokerdom-bonus-cards,
    .pokerdom-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pokerdom-footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .pokerdom-footer-legal-links {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .pokerdom-logo-text {
        font-size: 20px;
    }
    
    .pokerdom-hero-title {
        font-size: 24px;
    }
    
    .pokerdom-section-title {
        font-size: 20px;
    }
    
    .pokerdom-btn {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .pokerdom-game-category,
    .pokerdom-bonus-card {
        padding: 20px 15px;
    }
}

/* PokerDom Performance optimizations */
* {
    -webkit-tap-highlight-color: transparent;
}

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

/* Reduce animations on slower devices */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* PokerDom Tables */
.pokerdom-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin: 20px 0;
}

.pokerdom-table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
}

.pokerdom-table-responsive .pokerdom-table {
    min-width: 600px;
    margin: 0;
}

.pokerdom-table th,
.pokerdom-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--bg-tertiary);
}

.pokerdom-table th {
    background: var(--bg-secondary);
    color: var(--primary-green);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.pokerdom-table td {
    color: var(--text-primary);
    font-size: 14px;
}

.pokerdom-table tr:hover {
    background: rgba(0, 216, 79, 0.05);
}

.pokerdom-table tr:last-child td {
    border-bottom: none;
}

/* PokerDom Table Variants */
.pokerdom-table-striped tbody tr:nth-child(even) {
    background: rgba(0, 216, 79, 0.03);
}

.pokerdom-table-bordered {
    border: 1px solid var(--bg-tertiary);
}

.pokerdom-table-bordered th,
.pokerdom-table-bordered td {
    border: 1px solid var(--bg-tertiary);
}

.pokerdom-table-dark {
    background: var(--bg-primary);
}

.pokerdom-table-dark th {
    background: var(--bg-tertiary);
    color: var(--text-white);
}

.pokerdom-table-dark td {
    color: var(--text-secondary);
}

.pokerdom-table-success {
    background: rgba(0, 216, 79, 0.1);
    border: 1px solid var(--primary-green);
}

.pokerdom-table-success th {
    background: var(--primary-green);
    color: var(--text-dark);
}

/* PokerDom Lists */
.pokerdom-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pokerdom-list-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-tertiary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pokerdom-list-item:last-child {
    border-bottom: none;
}

.pokerdom-list-icon {
    color: var(--primary-green);
    font-size: 16px;
    min-width: 20px;
}

.pokerdom-list-content {
    flex: 1;
}

.pokerdom-list-title {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
}

.pokerdom-list-description {
    color: var(--text-secondary);
    font-size: 14px;
}

/* PokerDom List Variants */
.pokerdom-list-bordered {
    border: 1px solid var(--bg-tertiary);
    border-radius: 8px;
    background: var(--bg-card);
}

.pokerdom-list-bordered .pokerdom-list-item {
    padding: 15px 20px;
}

.pokerdom-list-hover .pokerdom-list-item:hover {
    background: rgba(0, 216, 79, 0.05);
    cursor: pointer;
}

.pokerdom-list-spaced .pokerdom-list-item {
    padding: 20px 0;
}

/* PokerDom Ordered/Unordered Lists */
.pokerdom-list-numbered {
    counter-reset: pokerdom-counter;
    list-style: none;
    padding: 0;
}

.pokerdom-list-numbered li {
    counter-increment: pokerdom-counter;
    position: relative;
    padding: 8px 0 8px 40px;
    margin-bottom: 8px;
}

.pokerdom-list-numbered li::before {
    content: counter(pokerdom-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--primary-green);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
}

.pokerdom-list-bulleted {
    list-style: none;
    padding: 0;
}

.pokerdom-list-bulleted li {
    position: relative;
    padding: 8px 0 8px 30px;
    margin-bottom: 8px;
}

.pokerdom-list-bulleted li::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-green);
    font-size: 16px;
}

.pokerdom-list-checkmark {
    list-style: none;
    padding: 0;
}

.pokerdom-list-checkmark li {
    position: relative;
    padding: 8px 0 8px 30px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.pokerdom-list-checkmark li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-green);
    font-weight: 600;
    font-size: 16px;
}

/* PokerDom Definition Lists */
.pokerdom-definition-list {
    margin: 20px 0;
}

.pokerdom-definition-term {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 5px;
    padding: 8px 12px;
    background: var(--bg-secondary);
    border-left: 3px solid var(--primary-green);
}

.pokerdom-definition-description {
    color: var(--text-secondary);
    margin-bottom: 15px;
    padding: 8px 12px;
    background: var(--bg-card);
    border-left: 3px solid var(--bg-tertiary);
}

/* PokerDom Utility Classes */
.pokerdom-text-center { text-align: center; }
.pokerdom-text-left { text-align: left; }
.pokerdom-text-right { text-align: right; }

.pokerdom-text-primary { color: var(--text-primary); }
.pokerdom-text-secondary { color: var(--text-secondary); }
.pokerdom-text-white { color: var(--text-white); }
.pokerdom-text-green { color: var(--primary-green); }
.pokerdom-text-gold { color: var(--gold); }

.pokerdom-bg-primary { background: var(--bg-primary); }
.pokerdom-bg-secondary { background: var(--bg-secondary); }
.pokerdom-bg-tertiary { background: var(--bg-tertiary); }
.pokerdom-bg-card { background: var(--bg-card); }
.pokerdom-bg-green { background: var(--primary-green); }

.pokerdom-border { border: 1px solid var(--bg-tertiary); }
.pokerdom-border-green { border: 1px solid var(--primary-green); }
.pokerdom-border-radius { border-radius: 8px; }
.pokerdom-border-radius-large { border-radius: 12px; }

.pokerdom-shadow { box-shadow: var(--shadow-card); }
.pokerdom-shadow-glow { box-shadow: var(--shadow-glow); }

.pokerdom-margin-0 { margin: 0; }
.pokerdom-margin-small { margin: 10px; }
.pokerdom-margin-medium { margin: 20px; }
.pokerdom-margin-large { margin: 40px; }

.pokerdom-padding-0 { padding: 0; }
.pokerdom-padding-small { padding: 10px; }
.pokerdom-padding-medium { padding: 20px; }
.pokerdom-padding-large { padding: 40px; }

.pokerdom-flex { display: flex; }
.pokerdom-flex-column { flex-direction: column; }
.pokerdom-flex-center { justify-content: center; align-items: center; }
.pokerdom-flex-between { justify-content: space-between; }
.pokerdom-flex-wrap { flex-wrap: wrap; }

.pokerdom-grid { display: grid; }
.pokerdom-grid-2 { grid-template-columns: repeat(2, 1fr); }
.pokerdom-grid-3 { grid-template-columns: repeat(3, 1fr); }
.pokerdom-grid-4 { grid-template-columns: repeat(4, 1fr); }
.pokerdom-gap-small { gap: 10px; }
.pokerdom-gap-medium { gap: 20px; }
.pokerdom-gap-large { gap: 40px; }

.pokerdom-hidden { display: none; }
.pokerdom-visible { display: block; }

/* PokerDom Mobile Table/List Optimizations */
@media (max-width: 768px) {
    .pokerdom-table-responsive {
        margin: 10px 0;
    }
    
    .pokerdom-table th,
    .pokerdom-table td {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .pokerdom-list-item {
        padding: 10px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .pokerdom-list-bordered .pokerdom-list-item {
        padding: 12px 15px;
    }
    
    .pokerdom-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .pokerdom-grid-3 { grid-template-columns: 1fr; }
    .pokerdom-grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .pokerdom-table th,
    .pokerdom-table td {
        padding: 6px 8px;
        font-size: 12px;
    }
    
    .pokerdom-list-numbered li,
    .pokerdom-list-bulleted li,
    .pokerdom-list-checkmark li {
        padding-left: 25px;
    }
    
    .pokerdom-list-numbered li::before {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-green: #00FF00;
        --text-primary: #FFFFFF;
        --bg-primary: #000000;
    }
}