/* Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    /* Hand2Note balanced color palette - trust, reliability, professionalism, growth */
    /* Teal/Cyan - perfect balance between blue (trust) and green (growth) */
    --primary-color: #0D9488;
    --primary-dark: #0F766E;
    --primary-light: #14B8A6;
    --primary-hover: #0F766E;
    --primary-bg: #E6FFFA;
    --primary-bg-dark: #134E4A;
    
    /* Accent colors */
    --accent-color: #0891B2;
    --accent-light: #06B6D4;
    
    /* Text colors */
    --text-dark: #0F172A;
    --text-gray: #475569;
    --text-light: #64748B;
    --text-white: #FFFFFF;
    
    /* Backgrounds - professional and clean */
    --bg-white: #FFFFFF;
    --bg-light: #F0FDFA;
    --bg-lighter: #E6FFFA;
    --bg-section: #F0FDFA;
    
    /* Borders */
    --border-color: #CCFBF1;
    --border-light: #E6FFFA;
    
    /* Shadows - subtle and professional */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 4px 12px rgba(13, 148, 136, 0.2);
}

:root[data-theme="dark"] {
    color-scheme: dark;
    --primary-color: #22C6AE;
    --primary-dark: #159A88;
    --primary-light: #6EE7CF;
    --primary-hover: #1BAA98;
    --primary-bg: #123530;
    --primary-bg-dark: #0E2A26;
    --accent-color: #1FB39D;
    --accent-light: #4FD1BF;
    --text-dark: #E7ECE9;
    --text-gray: #C6D0CC;
    --text-light: #93A39C;
    --text-white: #FFFFFF;
    --bg-white: #0E1416;
    --bg-light: #151E21;
    --bg-lighter: #1B272B;
    --bg-section: #151E21;
    --border-color: #26363B;
    --border-light: #1E2C31;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.45);
    --shadow-xl: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-primary: 0 4px 12px rgba(34, 198, 174, 0.24);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Header */
.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo a.reseller-badge {
    color: var(--primary-color) !important;
}

.logo h1,
.logo .logo-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.reseller-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-color) !important;
    background: rgba(20, 184, 166, 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    letter-spacing: 0.02em;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

/* Hero Section */
.hero {
    background: var(--primary-bg-dark);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-sm);
    font-weight: 600;
}

.btn-primary:hover {
    box-shadow: var(--shadow-primary);
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease, border-bottom-color 0.2s ease;
    border-bottom: 2px solid transparent;
}

.section-title a:hover {
    color: var(--primary-hover);
    border-bottom-color: var(--primary-color);
}

.section-subtitle {
    display: inline;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-gray);
    font-style: italic;
    opacity: 0.7;
    margin-left: 0.3rem;
}

.section-description {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-description a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-bottom-color 0.2s ease;
}

.section-description a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-color);
    line-height: 1.8;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
    border-color: var(--primary-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.card-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: var(--primary-dark);
}

/* Study Section */
.study-section {
    background: var(--bg-light);
}

/* Purchase Section */
.purchase-section {
    background: linear-gradient(135deg, #1e5245 0%, #2d7a6e 30%, #276b6b 60%, #1f4f64 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.purchase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(20, 184, 166, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(13, 148, 136, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.purchase-section .section-title,
.purchase-section .section-description {
    color: white;
    position: relative;
    z-index: 1;
}

.purchase-section .section-title {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.purchase-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 3rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    cursor: default;
    position: relative;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
    opacity: 0.9;
}

.benefit-item:hover .benefit-icon svg {
    opacity: 1;
}

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.promo-code-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.promo-code {
    /* font-family: 'Courier New', monospace; */
    /* font-weight: 600; */
    font-size: 1rem;
    letter-spacing: 0.04em;
    color: white;
    cursor: pointer;
    user-select: all;
    padding: 0.15rem 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    transition: background 0.2s ease;
}

.promo-code:hover {
    background: rgba(255, 255, 255, 0.15);
}

.promo-code-copy {
    background: none !important;
    border: none;
    padding: 0;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    opacity: 1;
}

.promo-code-copy:hover {
    color: rgba(255, 255, 255, 1);
    background: none !important;
    opacity: 1;
}

.promo-code-copy svg {
    width: 16px;
    height: 16px;
    pointer-events: none;
}

/* HUD Section */
.hud-section {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature p {
    color: var(--text-gray);
    line-height: 1.7;
}

.cta-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.promo-reminder {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.promo-reminder svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.7);
}

.promo-reminder strong {
    font-weight: 600;
    letter-spacing: 0.05em;
    color: white;
}

.purchase-section .btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.purchase-section .btn-primary:hover {
    background: var(--bg-light);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* FreeBetRange Section */

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    padding: 1rem 0;
    font-size: 1.1rem;
    line-height: 1.8;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Getting Started Section */
.getting-started-section {
    background: var(--bg-white);
}

/* Why Purchase Section */
.why-purchase-section {
    background: var(--bg-light);
}

.features-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-large {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-large h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-large p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Asian Apps Section */
.asian-apps-section {
    background: var(--bg-white);
}

.apps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
}

.app-item {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.app-item:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* PokerStars Section */
.pokerstars-section {
    background: var(--bg-light);
    color: var(--text-dark);
}

.pokerstars-section .section-title,
.pokerstars-section .section-description {
    color: var(--text-dark);
}

.pokerstars-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pokerstars-section .feature h4,
.pokerstars-section .feature p {
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: #1F2937;
    color: #E5E7EB;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(13, 148, 136, 0.2);
}

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

.footer-section .footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 1rem;
    color: #9CA3AF;
    font-size: 14px;
}

.footer-bottom p a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom p a:hover {
    color: var(--primary-light);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* ============================================
   Themed Sections - Shared Structure
   ============================================ */

/* Base: position context, overflow, container z-index */
.features-section,
.hud-store-section,
.poker-guide-section {
    position: relative;
    overflow: hidden;
}

.features-section .container,
.hud-store-section .container,
.poker-guide-section .container {
    position: relative;
    z-index: 1;
}

/* Top accent line (::after) - shared structure */
.features-section::after,
.hud-store-section::after,
.poker-guide-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
}

/* Teal sections - shared gradient + radial accents + line color */
.features-section {
    background: linear-gradient(180deg, #F0FDFA 0%, #FFFFFF 100%);
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(13, 148, 136, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 10%, rgba(8, 145, 178, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.features-section::after {
    background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.2), transparent);
}

@media (min-width: 769px) {
    .features-section {
        padding-bottom: 40px;
    }
}

/* HUD Store section - muted red/burgundy accent */
.hud-store-section {
    background: linear-gradient(180deg, #FBF3F3 0%, #FFFFFF 100%);
}

.hud-store-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(190, 58, 58, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 10%, rgba(161, 48, 48, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hud-store-section::after {
    background: linear-gradient(90deg, transparent, rgba(190, 58, 58, 0.2), transparent);
}

.hud-store-section .section-title {
    background: linear-gradient(135deg, var(--text-dark) 0%, #8B2D2D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hud-store-section .section-title a {
    -webkit-text-fill-color: #BE3A3A;
}

.hud-store-section .section-title a:hover {
    -webkit-text-fill-color: #A13030;
}

/* Features Section with Tabs */

.tabs-container {
    margin-top: 3rem;
}

.tabs-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 2px solid var(--border-color);
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent !important;
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 0 !important;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray);
    transition: color 0.3s ease;
    font-family: inherit;
    margin-bottom: -2px;
    position: relative;
}

.tab-btn:hover {
    color: var(--primary-color);
    background: transparent !important;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: transparent !important;
}

.tabs-content {
    position: relative;
    min-height: 400px;
}

.tab-pane {
    display: none;
    /* Content remains in DOM for SEO - Google can index it */
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.tab-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.tab-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tab-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.tab-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.tab-text a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-color);
}

.tab-text .feature-list {
    list-style: none;
}

.tab-text .feature-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1rem;
}

.tab-text .feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.tab-screenshot {
    display: flex;
    flex-direction: column;
}

.tab-screenshot figure {
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.tab-screenshot figure img {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.screenshot-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.tab-screenshot figcaption {
    margin-top: 0.6rem;
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.4;
    opacity: 0.7;
}

.screenshot-placeholder {
    width: 100%;
    min-height: 400px;
    aspect-ratio: 16/10;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 1.5rem;
    font-weight: 600;
}

/* Guides Section */
.guides-section {
    background: var(--bg-white);
}

/* Guides Hero - first section on homepage */
.guides-hero {
    background: linear-gradient(180deg, #F0FDFA 0%, #FFFFFF 100%);
    padding-top: 60px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.guides-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(13, 148, 136, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 10%, rgba(8, 145, 178, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.guides-hero .section-title {
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.guides-hero .section-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 650px;
    position: relative;
}

.guides-hero .guide-article-card {
    background: var(--bg-white);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.guides-hero .guide-article-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.guides-hero .cta-center {
    margin-top: 2.5rem;
}

.guides-hero .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
    padding: 18px 44px;
    font-size: 1.1rem;
}

.guides-hero .btn-primary:hover {
    box-shadow: 0 6px 24px rgba(13, 148, 136, 0.4);
    transform: translateY(-2px);
}

.guides-content {
    width: 100%;
}

/* Guides Carousel */
.guides-carousel-wrapper {
    position: relative;
    margin: 3rem 0;
}

.guides-carousel-container {
    overflow: hidden;
    margin: 0 2.75rem;
    padding: 8px 0;
    margin-top: -8px;
    margin-bottom: -8px;
    touch-action: pan-y pinch-zoom;
}

.guides-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
    will-change: transform;
}

.guide-article-card {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 340px;
    max-width: 100%;
    background: var(--bg-light);
    border: 1px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.guide-article-link {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.guide-article-card:hover {
    background: var(--bg-white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-primary);
    transform: translateY(-2px);
}

.guide-article-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--bg-white);
    position: relative;
}

.guide-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-article-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 148, 136, 0.1);
    color: var(--primary-color);
}

.guide-article-image-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

.guide-article-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.guide-article-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.guide-article-excerpt {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.guide-article-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
}

.guide-article-date {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    line-height: 1.2;
}

.guide-article-date.article-date::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
    flex-shrink: 0;
}

.guide-article-date.article-updated::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='23 4 23 10 17 10'%3E%3C/polyline%3E%3Cpath d='M20.49 15a9 9 0 1 1-2.12-9.36L23 10'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
    flex-shrink: 0;
}

.guide-article-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    z-index: 2;
}

.guide-article-card:hover .guide-article-arrow {
    opacity: 1;
    transform: scale(1);
}

.guide-article-arrow svg {
    width: 18px;
    height: 18px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border: 1.5px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    z-index: 10;
    color: var(--primary-color) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    padding: 0;
    box-sizing: border-box;
}

.carousel-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
    transform: translateY(-50%);
}

.carousel-btn:active {
    transform: translateY(-50%);
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.3);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-btn svg {
    width: 16px;
    height: 16px;
    display: block;
    flex-shrink: 0;
    color: inherit;
}

.carousel-btn svg polyline,
.carousel-btn svg line,
.carousel-btn svg path {
    stroke: var(--primary-color) !important;
    stroke-width: 2.5 !important;
    fill: none !important;
    vector-effect: non-scaling-stroke;
}

.carousel-btn:hover svg polyline,
.carousel-btn:hover svg line,
.carousel-btn:hover svg path {
    stroke: white !important;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Load More Button - as card */
.guide-load-more-card {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 340px;
    max-width: 100%;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.guides-load-more-btn {
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-load-more-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 2rem;
    width: 100%;
    height: 100%;
}

.guide-load-more-content svg {
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.guide-load-more-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.guide-load-more-card:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-primary);
    transform: translateY(-2px);
}

.guide-load-more-card:hover .guide-load-more-content svg,
.guide-load-more-card:hover .guide-load-more-text {
    color: white;
}

.guides-load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.guides-load-more-btn:disabled .guide-load-more-content svg,
.guides-load-more-btn:disabled .guide-load-more-text {
    color: var(--text-light);
}

/* Training Section */
.training-section {
    background: var(--bg-white);
}

.course-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
}

.course-card:hover {
    box-shadow: var(--shadow-primary);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.course-card-image {
    width: 100%;
    height: 210px;
    overflow: hidden;
    background: var(--bg-light);
}

.course-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.course-card-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.course-card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    display: inline-block;
}

/* HUD Store Section */
.hud-store-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem auto 0;
    color: var(--text-gray);
    font-size: 0.9rem;
    max-width: 795px;
    justify-content: center;
}

.hud-store-note svg {
    flex-shrink: 0;
    color: var(--text-light);
}

.hud-store-note a {
    color: #BE3A3A;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.hud-store-note a:hover {
    color: #A13030;
    border-bottom-color: #BE3A3A;
}

.hud-store-section .btn-primary {
    background: #BE3A3A;
    box-shadow: 0 1px 3px rgba(190, 58, 58, 0.2);
}

.hud-store-section .btn-primary:hover {
    background: #A13030;
    box-shadow: 0 4px 14px rgba(190, 58, 58, 0.35);
}

.hud-category-card .card-arrow {
    background: linear-gradient(135deg, #BE3A3A, #D45454);
}

/* HUD Store Carousel - red theme overrides */
.hud-store-section .carousel-btn {
    border-color: #BE3A3A;
    color: #BE3A3A !important;
}

.hud-store-section .carousel-btn:hover {
    background: #BE3A3A;
    border-color: #BE3A3A;
    box-shadow: 0 4px 12px rgba(190, 58, 58, 0.3);
}

.hud-store-section .carousel-btn:active {
    box-shadow: 0 2px 8px rgba(190, 58, 58, 0.3);
}

.hud-store-section .carousel-btn svg polyline,
.hud-store-section .carousel-btn svg line,
.hud-store-section .carousel-btn svg path {
    stroke: #BE3A3A !important;
}

.hud-store-section .carousel-btn:hover svg polyline,
.hud-store-section .carousel-btn:hover svg line,
.hud-store-section .carousel-btn:hover svg path {
    stroke: white !important;
}

/* HUD Store Carousel */
.hud-store-carousel-wrapper {
    position: relative;
    margin: 3rem 0;
}

.hud-store-carousel-container {
    overflow: hidden;
    margin: 0 2.75rem;
    padding: 8px 0;
    margin-top: -8px;
    margin-bottom: -8px;
    touch-action: pan-y pinch-zoom;
}

.hud-store-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
    will-change: transform;
}

.hud-category-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    border: 1px solid #F0D4D4;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 280px;
    max-width: 100%;
    position: relative;
}

.hud-category-card:hover {
    background: var(--bg-white);
    border-color: #BE3A3A;
    box-shadow: 0 6px 18px rgba(190, 58, 58, 0.1);
    transform: translateY(-2px);
}

.hud-category-image {
    width: 100%;
    height: 90px;
    margin: 0 auto 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    background: #FBF3F3;
}

.hud-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hud-category-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.hud-category-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}


/* Free HUD Section */
.free-hud-section {
    background: var(--bg-white);
    color: var(--text-dark);
}

.free-hud-section .section-description {
    color: var(--text-gray);
}

.free-hud-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

a.free-hud-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.free-hud-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
}

.free-hud-card:hover {
    box-shadow: var(--shadow-primary);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.free-hud-card:hover .card-arrow {
    opacity: 1;
    transform: scale(1);
}

.free-hud-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(13, 148, 136, 0.1);
    border-radius: 12px;
    color: var(--primary-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.free-hud-card:hover .free-hud-icon {
    background: rgba(13, 148, 136, 0.15);
}

.free-hud-icon svg {
    width: 24px;
    height: 24px;
}

.free-hud-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.free-hud-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.free-hud-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    flex: 1;
}

.free-hud-section .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.3);
    padding: 18px 44px;
    font-size: 1.1rem;
}

.free-hud-section .btn-primary:hover {
    box-shadow: 0 6px 24px rgba(13, 148, 136, 0.4);
    transform: translateY(-2px);
}

/* Rooms Section */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.room-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    display: block;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-card:nth-child(1)::before {
    /* PokerStars - dark crimson */
    background: linear-gradient(90deg, #9B1B30, #C42B3E);
}

.room-card:nth-child(2)::before {
    /* GGPoker - черный */
    background: linear-gradient(90deg, #1F2937, #374151);
}

.room-card:nth-child(3)::before {
    /* CoinPoker - красный другой оттенок */
    background: linear-gradient(90deg, #DC2626, #F87171);
}

.room-card:nth-child(4)::before {
    /* PPPoker - зеленый */
    background: linear-gradient(90deg, #10B981, #34D399);
}

.room-card:nth-child(5)::before {
    /* PokerBros - dark blue */
    background: linear-gradient(90deg, #1E3A5F, #2D5A8E);
}

.room-card:nth-child(6)::before {
    /* Asian apps - азиатский стиль (золотой/янтарный) */
    background: linear-gradient(90deg, #D97706, #F59E0B);
}

.room-card:hover::before {
    opacity: 1;
}

.room-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: #CBD5E1;
    transform: translateY(-2px);
}

.room-card:nth-child(1):hover { border-color: #9B1B30; box-shadow: 0 4px 16px rgba(155, 27, 48, 0.12); }
.room-card:nth-child(2):hover { border-color: #374151; box-shadow: 0 4px 16px rgba(31, 41, 55, 0.12); }
.room-card:nth-child(3):hover { border-color: #DC2626; box-shadow: 0 4px 16px rgba(220, 38, 38, 0.12); }
.room-card:nth-child(4):hover { border-color: #10B981; box-shadow: 0 4px 16px rgba(16, 185, 129, 0.12); }
.room-card:nth-child(5):hover { border-color: #1E3A5F; box-shadow: 0 4px 16px rgba(30, 58, 95, 0.12); }
.room-card:nth-child(6):hover { border-color: #D97706; box-shadow: 0 4px 16px rgba(217, 119, 6, 0.12); }

.room-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.room-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Room icon badges */

.room-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    transition: background-color 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.room-icon svg {
    display: block;
}

/* PokerStars - dark crimson */
.room-icon-pokerstars {
    background: rgba(155, 27, 48, 0.1);
    color: #9B1B30;
}

.room-card:nth-child(1):hover .room-icon-pokerstars {
    background: rgba(155, 27, 48, 0.15);
}

/* GGPoker - dark */
.room-icon-ggpoker {
    background: rgba(31, 41, 55, 0.1);
    color: #1F2937;
}

.room-card:nth-child(2):hover .room-icon-ggpoker {
    background: rgba(31, 41, 55, 0.15);
}

/* CoinPoker - red */
.room-icon-coinpoker {
    background: rgba(220, 38, 38, 0.1);
    color: #DC2626;
}

.room-card:nth-child(3):hover .room-icon-coinpoker {
    background: rgba(220, 38, 38, 0.15);
}

/* PPPoker - green */
.room-icon-pppoker {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.room-card:nth-child(4):hover .room-icon-pppoker {
    background: rgba(16, 185, 129, 0.15);
}

/* PokerBros - dark blue */
.room-icon-pokerbros {
    background: rgba(30, 58, 95, 0.1);
    color: #1E3A5F;
}

.room-card:nth-child(5):hover .room-icon-pokerbros {
    background: rgba(30, 58, 95, 0.15);
}

/* Asian Apps - amber */
.room-icon-asian {
    background: rgba(217, 119, 6, 0.1);
    color: #D97706;
}

.room-card:nth-child(6):hover .room-icon-asian {
    background: rgba(217, 119, 6, 0.15);
}

/* Software subsection title accent (within Poker Guide) */
.poker-guide-software .subsection-title a {
    color: #6B6AA0;
}

.poker-guide-software .subsection-title a:hover {
    color: #55548A;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.software-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(79, 70, 229, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 1px 3px rgba(79, 70, 229, 0.04);
    display: flex;
    flex-direction: column;
}

.software-card:hover {
    box-shadow: 0 4px 16px rgba(100, 100, 180, 0.12);
    border-color: #9B9BC8;
    transform: translateY(-2px);
}

.software-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #F5F5FF;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.software-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.software-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.software-card h3,
.software-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.software-card p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
    flex: 1;
}

.software-card-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.software-card-buttons .btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.software-card-buttons .btn-secondary {
    background: var(--bg-white);
    color: #6B6AA0;
    border: 1.5px solid #B8B8D9;
}

.software-card-buttons .btn-secondary:hover {
    background: rgba(107, 106, 160, 0.04);
    border-color: #8585B2;
    color: #55548A;
    box-shadow: 0 2px 8px rgba(107, 106, 160, 0.1);
}


/* Poker Guide Section - Warm amber complement to the teal theme */
.poker-guide-section {
    background: linear-gradient(180deg, #FEF9F0 0%, #FFFFFF 100%);
    padding-bottom: 50px;
}

.poker-guide-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle 400px at 10% 10%, rgba(217, 119, 6, 0.1) 0%, transparent 65%),
        radial-gradient(circle 350px at 90% 85%, rgba(245, 158, 11, 0.08) 0%, transparent 65%),
        radial-gradient(circle 200px at 55% 45%, rgba(251, 191, 36, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.poker-guide-section::after {
    background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.3), transparent);
}

.poker-guide-section .section-title {
    background: linear-gradient(135deg, var(--text-dark) 0%, #92400E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.poker-guide-section .section-title .section-subtitle {
    -webkit-text-fill-color: var(--text-gray);
}

/* Poker Guide subsections (Tools, Software) */
.poker-guide-subsection {
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(217, 119, 6, 0.12);
}

.subsection-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-align: center;
}

.subsection-title a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.subsection-description {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.poker-guide-articles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.poker-article-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(217, 119, 6, 0.12);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 3px rgba(217, 119, 6, 0.06);
}

.poker-article-card:hover {
    background: var(--bg-white);
    border-color: #D97706;
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.15);
    transform: translateY(-2px);
}

.poker-article-image {
    flex-shrink: 0;
    width: 140px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-light);
}

.poker-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.5) brightness(1.05);
    transition: filter 0.3s ease;
}

.poker-article-card:hover .poker-article-image img {
    filter: saturate(0.7) brightness(1.02);
}

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

.poker-article-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.poker-article-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.poker-article-arrow {
    flex-shrink: 0;
    color: #B45309;
    transition: transform 0.3s ease, color 0.3s ease;
}

.poker-article-card:hover .poker-article-arrow {
    transform: translateX(4px);
    color: #D97706;
}

/* Tools subsection — teal panel */
.poker-guide-tools {
    background: linear-gradient(135deg, #EFFAF8 0%, #ECF8FD 100%);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(14, 128, 145, 0.14);
}

.poker-guide-tools .subsection-title a {
    color: #0E7E89;
}

.poker-guide-tools .subsection-title a:hover {
    color: #0D6A73;
}

.poker-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin: 2rem 0 1.5rem;
}

.poker-tool-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(14, 128, 145, 0.12);
    border-radius: 12px;
    padding: 1.75rem 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 4px rgba(14, 128, 145, 0.08);
    position: relative;
}

.poker-tool-card.poker-tool-active:hover {
    background: var(--bg-white);
    border-color: #0E7F90;
    box-shadow: 0 6px 20px rgba(14, 127, 144, 0.16);
    transform: translateY(-3px);
}

.poker-tool-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: 14px;
    color: #0E8290;
    box-shadow: 0 2px 8px rgba(14, 128, 145, 0.12);
}

.poker-tool-icon.poker-tool-icon-odds {
    background: linear-gradient(135deg, #E6FFFA, #CCFBF1);
    color: var(--primary-color);
}

.poker-tool-icon.poker-tool-icon-bankroll {
    background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
    color: #059669;
}

.poker-tool-icon.poker-tool-icon-charts {
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
    color: #4F46E5;
}

.poker-tool-icon.poker-tool-icon-trainer {
    background: linear-gradient(135deg, #FEF2F2, #FEE2E2);
    color: #DC2626;
}

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

.poker-tool-content h3,
.poker-tool-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
}

.poker-tool-content p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.poker-tool-arrow {
    color: #0E8290;
    transition: transform 0.3s ease, color 0.3s ease;
    margin-top: auto;
}

.poker-tool-card.poker-tool-active:hover .poker-tool-arrow {
    transform: translateY(2px);
    color: #0D6E79;
}

.poker-tool-coming-soon {
    opacity: 0.55;
    cursor: default;
}

.poker-tool-coming-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0E8290;
    background: rgba(206, 240, 246, 0.82);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
}

.poker-tools-cta {
    text-align: center;
    margin-bottom: 1rem;
}

.poker-tools-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    padding: 0.7rem 1.75rem;
    border-radius: 8px;
    background: rgba(14, 124, 142, 0.92);
    border: 1px solid rgba(14, 124, 142, 0.22);
    box-shadow: 0 2px 10px rgba(14, 124, 142, 0.22);
}

.poker-tools-all-link:hover {
    color: white;
    background: rgba(12, 107, 123, 0.96);
    box-shadow: 0 4px 14px rgba(12, 107, 123, 0.28);
}

.poker-tools-all-link:hover svg {
    transform: translateX(3px);
}

.poker-tools-all-link svg {
    transition: transform 0.3s ease;
}

/* Card Arrow Styles - Universal arrow for all cards */
.card-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    z-index: 2;
}

.course-card:hover .card-arrow,
.hud-category-card:hover .card-arrow,
.room-card:hover .card-arrow {
    opacity: 1;
    transform: scale(1);
}

.card-arrow svg {
    width: 18px;
    height: 18px;
}

/* Room card arrows - match top bar colors */
.room-card:nth-child(1):hover .card-arrow {
    /* PokerStars - dark crimson */
    background: linear-gradient(135deg, #9B1B30, #C42B3E);
}

.room-card:nth-child(2):hover .card-arrow {
    /* GGPoker - черный */
    background: linear-gradient(135deg, #1F2937, #374151);
}

.room-card:nth-child(3):hover .card-arrow {
    /* CoinPoker - красный другой оттенок */
    background: linear-gradient(135deg, #DC2626, #F87171);
}

.room-card:nth-child(4):hover .card-arrow {
    /* PPPoker - зеленый */
    background: linear-gradient(135deg, #10B981, #34D399);
}

.room-card:nth-child(5):hover .card-arrow {
    /* PokerBros - dark blue */
    background: linear-gradient(135deg, #1E3A5F, #2D5A8E);
}

.room-card:nth-child(6):hover .card-arrow {
    /* Asian apps - азиатский стиль (золотой/янтарный) */
    background: linear-gradient(135deg, #D97706, #F59E0B);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .logo h1,
    .logo .logo-title {
        font-size: 1.1rem;
    }

    .guides-carousel-container {
        margin: -8px 2.5rem;
        padding: 8px 0;
    }
    
    .guide-article-card {
        width: 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        max-width: 40px;
        max-height: 40px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .hud-store-carousel-container {
        margin: -8px 2.5rem;
        padding: 8px 0;
    }
    
    .hud-category-card {
        width: calc((100% - 3rem) / 3); /* 3 cards with 2 gaps */
        min-width: 240px;
    }

    .hud-category-image {
        height: 100px;
    }

    .free-hud-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .poker-guide-articles {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .poker-article-card {
        padding: 1.25rem 1.5rem;
        gap: 1.25rem;
    }

    .poker-article-image {
        width: 120px;
        height: 90px;
    }

    .poker-tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .poker-tool-card {
        padding: 1.25rem 1rem;
    }

    .poker-guide-tools {
        padding: 2rem 1.5rem;
    }

    .software-card-image {
        height: 180px;
    }
}

@media (max-width: 1200px) {
    .reseller-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    .logo h1,
    .logo .logo-title {
        font-size: 1rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 0;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-color);
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .subsection-title {
        font-size: 1.5rem;
    }

    .poker-guide-subsection {
        margin-top: 2.5rem;
        padding-top: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-grid-large {
        grid-template-columns: 1fr;
    }

    .tab-content-wrapper {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .tab-text p {
        margin-bottom: 1rem;
    }

    .tab-text .feature-list {
        margin-bottom: 0.5rem;
    }

    .tab-text .feature-list li:first-child {
        padding-top: 0;
    }

    .tab-screenshot {
        margin-top: 0;
    }

    /* Mobile: show all features as stacked sections (no tabs).
       Google mobile-first indexing sees all content as visible. */
    .tabs-nav {
        display: none;
    }

    .tabs-content {
        min-height: auto;
    }

    .tab-pane {
        display: block;
        padding: 1.5rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .tab-pane:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .software-grid {
        grid-template-columns: 1fr;
    }

    .software-card-buttons {
        flex-direction: column;
    }

    .software-card-image {
        height: 140px;
    }

    .poker-tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .poker-tool-card {
        padding: 1.25rem 0.75rem;
    }

    .poker-tool-icon {
        width: 48px;
        height: 48px;
    }

    .poker-guide-tools {
        padding: 1.75rem 1.25rem;
    }

    .guides-carousel-wrapper {
        padding: 0;
    }
    
    .guides-carousel-container {
        margin: -8px 0;
        padding: 8px 2.5rem;
    }
    
    .guide-article-card {
        width: calc(100vw - 5rem);
        max-width: 100%;
    }
    
    .guide-article-image {
        height: 160px;
    }
    
    .guide-article-content {
        padding: 1.25rem;
    }
    
    .guide-article-title {
        font-size: 1.1rem;
    }
    
    .guide-article-excerpt {
        font-size: 0.9rem;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        max-width: 36px;
        max-height: 36px;
    }
    
    .carousel-btn-prev {
        left: 0;
    }
    
    .carousel-btn-next {
        right: 0;
    }
    
    .carousel-btn svg {
        width: 12px;
        height: 12px;
    }

    .poker-guide-articles {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .poker-article-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem;
        gap: 1rem;
    }

    .poker-article-image {
        width: 100%;
        height: 100px;
    }

    .poker-article-content {
        width: 100%;
        margin-bottom: 0;
    }

    .poker-article-arrow {
        align-self: flex-end;
    }

    .hud-store-carousel-wrapper {
        padding: 0;
    }
    
    .hud-store-carousel-container {
        margin: -8px 0;
        padding: 8px 2.5rem;
    }
    
    .hud-category-card {
        width: calc(100vw - 5rem);
        max-width: 100%;
        min-width: 0;
    }

    .hud-category-image {
        height: 100px;
    }

    .free-hud-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .free-hud-card {
        padding: 2rem 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .purchase-section {
        padding-top: 50px;
    }

    .guides-hero {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .guides-hero .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    section {
        padding: 60px 0;
    }

    .purchase-section {
        padding-top: 50px;
    }

    .guides-hero {
        padding-top: 30px;
        padding-bottom: 50px;
    }

    .guides-hero .section-title {
        font-size: 1.75rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

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

.card,
.feature-large {
    animation: fadeInUp 0.6s ease-out;
}

/* Dark theme ownership for homepage-specific sections and cards */
:root[data-theme="dark"] .guides-section,
:root[data-theme="dark"] .guides-hero,
:root[data-theme="dark"] .features-section,
:root[data-theme="dark"] .hud-store-section,
:root[data-theme="dark"] .poker-guide-section {
    background: linear-gradient(180deg, #121B1D 0%, #162326 60%, #0E1416 100%) !important;
}

:root[data-theme="dark"] .guides-hero::before,
:root[data-theme="dark"] .features-section::before,
:root[data-theme="dark"] .hud-store-section::before,
:root[data-theme="dark"] .poker-guide-section::before {
    opacity: 0.45;
}

:root[data-theme="dark"] .guides-hero .guide-article-card,
:root[data-theme="dark"] .guides-hero .guide-article-image-wrap,
:root[data-theme="dark"] .guides-hero .guide-article-content {
    background: var(--bg-light) !important;
    border-color: var(--border-color) !important;
}

:root[data-theme="dark"] .guides-hero .btn.btn-primary.btn-large {
    background: linear-gradient(135deg, #0F766E 0%, #115E59 55%, #0B4F4A 100%) !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(94, 234, 212, 0.35);
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.42);
}

:root[data-theme="dark"] .guides-hero .btn.btn-primary.btn-large:hover {
    background: linear-gradient(135deg, #14B8A6 0%, #0F766E 50%, #0E615B 100%) !important;
    box-shadow: 0 12px 28px rgba(20, 184, 166, 0.38);
}

:root[data-theme="dark"] .purchase-section {
    background: linear-gradient(135deg, #12322D 0%, #17413B 35%, #1A3C39 65%, #152F34 100%) !important;
}

:root[data-theme="dark"] .purchase-section::before {
    background:
        radial-gradient(circle at 20% 30%, rgba(34, 198, 174, 0.16) 0%, transparent 52%),
        radial-gradient(circle at 80% 70%, rgba(27, 170, 152, 0.14) 0%, transparent 50%) !important;
}

:root[data-theme="dark"] .purchase-section .benefit-item {
    background: rgba(21, 30, 33, 0.72) !important;
    border-color: rgba(110, 231, 207, 0.18) !important;
}

:root[data-theme="dark"] .purchase-section .benefit-item:hover {
    background: rgba(27, 39, 43, 0.82) !important;
}

:root[data-theme="dark"] .purchase-section .promo-code {
    background: rgba(110, 231, 207, 0.14) !important;
}

:root[data-theme="dark"] .purchase-section .promo-code:hover {
    background: rgba(110, 231, 207, 0.22) !important;
}

:root[data-theme="dark"] .purchase-section .btn.btn-primary.btn-large {
    background: linear-gradient(135deg, #0F766E 0%, #115E59 55%, #0B4F4A 100%) !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(94, 234, 212, 0.35);
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.42);
}

:root[data-theme="dark"] .purchase-section .btn.btn-primary.btn-large:hover {
    background: linear-gradient(135deg, #14B8A6 0%, #0F766E 50%, #0E615B 100%) !important;
    box-shadow: 0 12px 28px rgba(20, 184, 166, 0.38);
}

:root[data-theme="dark"] .free-hud-section .btn.btn-primary.btn-large {
    background: linear-gradient(135deg, #0F766E 0%, #115E59 55%, #0B4F4A 100%) !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(94, 234, 212, 0.34);
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.4);
}

:root[data-theme="dark"] .free-hud-section .btn.btn-primary.btn-large:hover {
    background: linear-gradient(135deg, #14B8A6 0%, #0F766E 50%, #0E615B 100%) !important;
    box-shadow: 0 12px 28px rgba(20, 184, 166, 0.36);
}

:root[data-theme="dark"] .hud-store-section .hud-category-card {
    background: var(--bg-light) !important;
    border-color: rgba(190, 58, 58, 0.38) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
}

:root[data-theme="dark"] .hud-store-section .hud-category-card:hover {
    background: var(--bg-lighter) !important;
    border-color: #D45454 !important;
    box-shadow: 0 10px 28px rgba(190, 58, 58, 0.26);
}

:root[data-theme="dark"] .hud-store-section .hud-category-image {
    background: #2B1F1F !important;
}

/* Dark theme ownership for homepage Poker Guide widgets/cards */
:root[data-theme="dark"] .poker-guide-tools {
    background: linear-gradient(135deg, #172125 0%, #1A2A31 100%);
    border-color: var(--border-color);
}

:root[data-theme="dark"] .poker-guide-tools .poker-tool-card {
    background: var(--bg-light);
    border-color: rgba(118, 208, 220, 0.2);
}

:root[data-theme="dark"] .poker-guide-tools .subsection-title a {
    color: #89C9CC;
}

:root[data-theme="dark"] .poker-guide-tools .subsection-title a:hover {
    color: #A8DCDD;
}

:root[data-theme="dark"] .poker-guide-tools .poker-tool-card.poker-tool-active:hover {
    background: var(--bg-lighter);
    border-color: #7FD1D6;
}

:root[data-theme="dark"] .poker-guide-tools .poker-tool-icon {
    background: var(--bg-lighter);
    color: #8FD6DB;
}

:root[data-theme="dark"] .poker-guide-tools .poker-tool-icon.poker-tool-icon-odds {
    background: linear-gradient(135deg, #16363A, #1A4347);
    color: #55D6C8;
}

:root[data-theme="dark"] .poker-guide-tools .poker-tool-icon.poker-tool-icon-bankroll {
    background: linear-gradient(135deg, #1C3A32, #20443A);
    color: #63D2A8;
}

:root[data-theme="dark"] .poker-guide-tools .poker-tool-icon.poker-tool-icon-charts {
    background: linear-gradient(135deg, #2C2A45, #36325A);
    color: #B8AEFF;
}

:root[data-theme="dark"] .poker-guide-tools .poker-tool-icon.poker-tool-icon-trainer {
    background: linear-gradient(135deg, #3F1F22, #4A2528);
    color: #FCA5A5;
}

:root[data-theme="dark"] .poker-guide-tools .poker-tool-coming-badge {
    background: rgba(21, 30, 33, 0.9);
    border: 1px solid rgba(127, 209, 214, 0.26);
    color: #9DDFE2;
}

:root[data-theme="dark"] .poker-guide-tools .poker-tool-arrow {
    color: #90D7DC;
}

:root[data-theme="dark"] .poker-guide-tools .poker-tool-card.poker-tool-active:hover .poker-tool-arrow {
    color: #B4ECED;
}

:root[data-theme="dark"] .poker-guide-tools .poker-tools-all-link {
    background: rgba(127, 209, 214, 0.14);
    color: #D9F6F4;
    border: 1px solid rgba(127, 209, 214, 0.32);
    box-shadow: 0 2px 10px rgba(9, 36, 39, 0.38);
}

:root[data-theme="dark"] .poker-guide-tools .poker-tools-all-link:hover {
    background: rgba(127, 209, 214, 0.2);
    color: #ECFFFD;
    box-shadow: 0 4px 14px rgba(9, 36, 39, 0.45);
}

:root[data-theme="dark"] .poker-article-card {
    background: var(--bg-light);
    border-color: rgba(217, 119, 6, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

:root[data-theme="dark"] .poker-article-card:hover {
    background: var(--bg-lighter);
    border-color: #D97706;
    box-shadow: 0 8px 22px rgba(217, 119, 6, 0.2);
}

:root[data-theme="dark"] .poker-article-image {
    background: #2A2216;
}

:root[data-theme="dark"] .poker-guide-software .software-card {
    background: var(--bg-light);
    border-color: rgba(107, 106, 160, 0.3);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.22);
}

:root[data-theme="dark"] .poker-guide-software .software-card:hover {
    background: var(--bg-lighter);
    border-color: #9B9BC8;
    box-shadow: 0 8px 22px rgba(107, 106, 160, 0.2);
}

:root[data-theme="dark"] .poker-guide-software .software-card-image {
    background: #212133;
}

:root[data-theme="dark"] .poker-guide-software .subsection-title a {
    color: #8D90D0;
}

:root[data-theme="dark"] .poker-guide-software .subsection-title a:hover {
    color: #AEB3F5;
}

:root[data-theme="dark"] .poker-guide-software .software-card-buttons .btn-secondary {
    background: rgba(155, 155, 200, 0.16);
    color: #DEDDFD;
    border-color: rgba(155, 155, 200, 0.36);
    box-shadow: 0 2px 10px rgba(28, 25, 49, 0.34);
}

:root[data-theme="dark"] .poker-guide-software .software-card-buttons .btn-secondary:hover {
    background: rgba(155, 155, 200, 0.24);
    color: #F0EFFE;
    border-color: rgba(184, 184, 217, 0.52);
    box-shadow: 0 4px 14px rgba(28, 25, 49, 0.44);
}

