/*
 * Poker Guide Homepage 2026 Styles
 */

/* Main Container */
.poker-guide-homepage {
    width: 100%;
    min-height: 100vh;
    background: #FAFBFC;
}

/* Hero Section */
.poker-guide-hero {
    background: linear-gradient(135deg, #1e4656 0%, #2d6a7a 35%, #2d7275 47.5%, #2d7275 52.5%, #2d6a7a 65%, #1e4b6a 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.poker-guide-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(45, 106, 122, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 70, 90, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

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

.poker-guide-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

/* ===== Sections — base ===== */
.poker-guide-section {
    padding: 80px 0;
    background: var(--bg-white);
    border-top: 1px solid #E5E9ED;
}

.poker-guide-terminology-section,
.poker-guide-charts-section,
.poker-guide-psychology-section {
    padding: 60px 0;
}

/* ===== Section Titles ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Step Number Badge — base */
.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 70, 90, 0.1);
    color: #2C5A6B;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid rgba(30, 70, 90, 0.12);
    margin: 0 auto 1.25rem;
    width: fit-content;
}

.section-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

.section-description:last-of-type {
    margin-bottom: 3rem;
}

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

.poker-guide-compact-card {
    max-width: 750px;
    margin: 3rem auto 0;
}

/* ===== Card — base ===== */
.poker-guide-card {
    background: var(--bg-white);
    border: 1px solid #E5E9ED;
    border-radius: 12px;
    padding: 0;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.poker-guide-card:hover {
    box-shadow: 0 8px 24px rgba(30, 70, 90, 0.1);
    border-color: #C5D3DC;
    transform: translateY(-2px);
}

.poker-guide-card-content {
    padding: 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
}

/* Card icon — base */
.poker-guide-card-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EDF3F6;
    border-radius: 14px;
    color: #1e4656;
    transition: background-color 0.3s ease;
}

.poker-guide-card-icon svg {
    width: 28px;
    height: 28px;
}

.poker-guide-card:hover .poker-guide-card-icon {
    background: #E0ECF2;
}

.poker-guide-card-large-icon .poker-guide-card-icon {
    width: 72px;
    height: 72px;
}

.poker-guide-card-large-icon .poker-guide-card-icon svg {
    width: 36px;
    height: 36px;
}

/* Card thumbnail (image variant) */
.poker-guide-card-thumbnail {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #F3F4F6;
}

.poker-guide-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.poker-guide-card:hover .poker-guide-card-thumbnail img {
    opacity: 1;
}

/* Large thumbnail for compact/single cards */
.poker-guide-card-large-thumb .poker-guide-card-thumbnail {
    width: 96px;
    height: 96px;
    border-radius: 14px;
}

/* Card text */
.poker-guide-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.poker-guide-card-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    line-height: 1.3;
}

.poker-guide-strategy-section .poker-guide-card-text h3 {
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
}

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

.poker-guide-card-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.poker-guide-card-content ul li {
    margin-bottom: 0.5rem;
}

/* Card arrow — base */
.poker-guide-card-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.poker-guide-card:hover .poker-guide-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.poker-guide-card-arrow svg {
    width: 20px;
    height: 20px;
}


/* ============================================================
   Section Accent Palettes — each step gets its own identity
   Variables: --accent, --accent-bg, --accent-bg-hover,
   --accent-border-hover, --accent-shadow, --step-bg, --step-border
   ============================================================ */

/* Shared palette-driven rules */
.poker-guide-section .step-number {
    background: var(--step-bg);
    color: var(--accent);
    border-color: var(--step-border);
}

.poker-guide-section .poker-guide-card-icon {
    background: var(--accent-bg);
    color: var(--accent);
}

.poker-guide-section .poker-guide-card:hover .poker-guide-card-icon {
    background: var(--accent-bg-hover);
}

.poker-guide-section .poker-guide-card:hover {
    border-color: var(--accent-border-hover);
    box-shadow: 0 8px 24px var(--accent-shadow);
}

.poker-guide-section .poker-guide-card-arrow {
    background: var(--accent);
}

/* — Step 1: Basics — Blue */
.poker-guide-basics-section {
    --accent: #2563EB;
    --accent-bg: #EFF6FF;
    --accent-bg-hover: #DBEAFE;
    --accent-border-hover: #93C5FD;
    --accent-shadow: rgba(37, 99, 235, 0.1);
    --step-bg: rgba(37, 99, 235, 0.1);
    --step-border: rgba(37, 99, 235, 0.15);
    background: linear-gradient(180deg, #EDF3F8 0%, #F5F8FB 50%, #FFFFFF 100%);
    border-top: none;
}

/* — Step 2: Mechanics — Emerald */
.poker-guide-mechanics-section {
    --accent: #059669;
    --accent-bg: #ECFDF5;
    --accent-bg-hover: #D1FAE5;
    --accent-border-hover: #6EE7B7;
    --accent-shadow: rgba(5, 150, 105, 0.1);
    --step-bg: rgba(5, 150, 105, 0.1);
    --step-border: rgba(5, 150, 105, 0.15);
    background: linear-gradient(180deg, #F0FDF4 0%, #FFFFFF 60%);
}

/* — Step 3: Terminology — Amber */
.poker-guide-terminology-section {
    --accent: #D97706;
    --accent-bg: #FFFBEB;
    --accent-bg-hover: #FEF3C7;
    --accent-border-hover: #FCD34D;
    --accent-shadow: rgba(217, 119, 6, 0.1);
    --step-bg: rgba(217, 119, 6, 0.1);
    --step-border: rgba(217, 119, 6, 0.15);
    background: linear-gradient(180deg, #FEFCF3 0%, #FFFFFF 60%);
}

/* — Step 4: Strategy — Rose */
.poker-guide-strategy-section {
    --accent: #E11D48;
    --accent-bg: #FFF1F2;
    --accent-bg-hover: #FFE4E6;
    --accent-border-hover: #FDA4AF;
    --accent-shadow: rgba(225, 29, 72, 0.08);
    --step-bg: rgba(225, 29, 72, 0.1);
    --step-border: rgba(225, 29, 72, 0.15);
    background: linear-gradient(180deg, #FFF5F5 0%, #FFFFFF 60%);
}

/* — Step 5: Preflop Charts — Violet */
.poker-guide-charts-section {
    --accent: #7C3AED;
    --accent-bg: #F5F3FF;
    --accent-bg-hover: #EDE9FE;
    --accent-border-hover: #C4B5FD;
    --accent-shadow: rgba(124, 58, 237, 0.1);
    --step-bg: rgba(124, 58, 237, 0.1);
    --step-border: rgba(124, 58, 237, 0.15);
    background: linear-gradient(180deg, #FAF5FF 0%, #FFFFFF 60%);
}

/* — Step 6: Free Poker Tools — Teal */
.poker-guide-tools-section {
    --accent: #0D9488;
    --accent-bg: #F0FDFA;
    --accent-bg-hover: #CCFBF1;
    --accent-border-hover: #5EEAD4;
    --accent-shadow: rgba(13, 148, 136, 0.1);
    --step-bg: rgba(13, 148, 136, 0.1);
    --step-border: rgba(13, 148, 136, 0.15);
    background: linear-gradient(135deg, #F0FDFA 0%, #ECFEFF 50%, #F0FDFA 100%);
    border-top: none;
}

.poker-guide-tools-section + .poker-guide-section {
    border-top: none;
}

.poker-guide-tools-section .section-title {
    color: #0F766E;
}

.poker-guide-tools-section .pg-tools-all-link {
    background: rgba(13, 148, 136, 0.9);
    border: 1px solid rgba(13, 148, 136, 0.24);
    box-shadow: 0 2px 10px rgba(13, 148, 136, 0.2);
}

.poker-guide-tools-section .pg-tools-all-link:hover {
    background: rgba(15, 118, 110, 0.96);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.28);
}

/* — Step 7: HUD & Stats — Cyan */
.poker-guide-hud-section {
    --accent: #0891B2;
    --accent-bg: #ECFEFF;
    --accent-bg-hover: #CFFAFE;
    --accent-border-hover: #67E8F9;
    --accent-shadow: rgba(8, 145, 178, 0.1);
    --step-bg: rgba(8, 145, 178, 0.1);
    --step-border: rgba(8, 145, 178, 0.15);
    background: linear-gradient(180deg, #F0FDFF 0%, #FFFFFF 60%);
}

/* — Step 8: GTO — Indigo */
.poker-guide-gto-section {
    --accent: #4F46E5;
    --accent-bg: #EEF2FF;
    --accent-bg-hover: #E0E7FF;
    --accent-border-hover: #A5B4FC;
    --accent-shadow: rgba(79, 70, 229, 0.1);
    --step-bg: rgba(79, 70, 229, 0.1);
    --step-border: rgba(79, 70, 229, 0.15);
    background: linear-gradient(180deg, #F0F2FF 0%, #FFFFFF 60%);
}

/* — Step 9: Psychology — Orange */
.poker-guide-psychology-section {
    --accent: #EA580C;
    --accent-bg: #FFF7ED;
    --accent-bg-hover: #FFEDD5;
    --accent-border-hover: #FDBA74;
    --accent-shadow: rgba(234, 88, 12, 0.08);
    --step-bg: rgba(234, 88, 12, 0.1);
    --step-border: rgba(234, 88, 12, 0.15);
    background: linear-gradient(180deg, #FFF8F0 0%, #FFFFFF 60%);
}

/* — Step 10: Training — Teal-green */
.poker-guide-training-section {
    --accent: #0D9488;
    --accent-bg: #F0FDFA;
    --accent-bg-hover: #CCFBF1;
    --accent-border-hover: #5EEAD4;
    --accent-shadow: rgba(13, 148, 136, 0.1);
    --step-bg: rgba(13, 148, 136, 0.1);
    --step-border: rgba(13, 148, 136, 0.15);
    background: linear-gradient(180deg, #F0FDFA 0%, #FAFFFE 50%, #FFFFFF 100%);
}


/* ===== Tools Grid (unchanged) ===== */
.pg-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin: 3rem 0 2rem;
}

.pg-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(13, 148, 136, 0.1);
    border-radius: 12px;
    padding: 1.75rem 1.25rem;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 4px rgba(13, 148, 136, 0.06);
    position: relative;
}

.pg-tool-card.pg-tool-active:hover {
    background: white;
    border-color: #0D9488;
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.15);
    transform: translateY(-3px);
}

.pg-tool-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 14px;
    color: #0D9488;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.1);
    flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.pg-tool-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0D9488;
    background: rgba(204, 251, 241, 0.8);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
}

.pg-tools-cta {
    text-align: center;
}

.pg-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;
    padding: 0.7rem 1.75rem;
    border-radius: 8px;
    background: #0E7490;
    box-shadow: 0 2px 8px rgba(14, 116, 144, 0.25);
}

.pg-tools-all-link:hover {
    color: white;
    background: #0C6478;
    box-shadow: 0 4px 12px rgba(14, 116, 144, 0.35);
}

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

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


/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .poker-guide-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .poker-guide-compact-card {
        max-width: 100%;
    }

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

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

@media (max-width: 768px) {
    .poker-guide-hero {
        padding: 60px 0 50px;
    }

    .poker-guide-hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .poker-guide-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .poker-guide-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        gap: 0.75rem;
    }
    
    .section-title .step-number {
        font-size: 0.75rem;
        padding: 0.25rem 0.7rem;
    }

    .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

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

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

    .poker-guide-card-icon svg {
        width: 24px;
        height: 24px;
    }

    .poker-guide-card-large-icon .poker-guide-card-icon {
        width: 60px;
        height: 60px;
    }

    .poker-guide-card-large-icon .poker-guide-card-icon svg {
        width: 30px;
        height: 30px;
    }

    .poker-guide-card-thumbnail {
        width: 56px;
        height: 56px;
    }

    .poker-guide-card-large-thumb .poker-guide-card-thumbnail {
        width: 72px;
        height: 72px;
    }

    .poker-guide-card-content {
        gap: 1rem;
    }
    
    .poker-guide-card-text h3 {
        font-size: 1.25rem;
    }
    
    .poker-guide-card-text p {
        font-size: 0.95rem;
    }
    
    .poker-guide-compact-card {
        max-width: 100%;
        margin: 2rem 0 0;
    }

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

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

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

/* Dark theme ownership for Poker Guide homepage (page 7017) */
:root[data-theme="dark"] .poker-guide-section,
:root[data-theme="dark"] .poker-guide-basics-section,
:root[data-theme="dark"] .poker-guide-mechanics-section,
:root[data-theme="dark"] .poker-guide-terminology-section,
:root[data-theme="dark"] .poker-guide-strategy-section,
:root[data-theme="dark"] .poker-guide-charts-section,
:root[data-theme="dark"] .poker-guide-tools-section,
:root[data-theme="dark"] .poker-guide-hud-section,
:root[data-theme="dark"] .poker-guide-gto-section,
:root[data-theme="dark"] .poker-guide-psychology-section,
:root[data-theme="dark"] .poker-guide-training-section {
    background: #121B1D !important;
    border-top-color: #26363B !important;
}

:root[data-theme="dark"] .poker-guide-tools-section + .poker-guide-section {
    border-top-color: #26363B !important;
}

/* Give the Free Tools section extra contrast in dark mode */
:root[data-theme="dark"] .poker-guide-tools-section {
    background: linear-gradient(135deg, #132023 0%, #15282C 50%, #132023 100%) !important;
    box-shadow: inset 0 1px 0 rgba(127, 209, 214, 0.08), inset 0 -1px 0 rgba(127, 209, 214, 0.06);
}

:root[data-theme="dark"] .poker-guide-tools-section .section-title {
    color: #E8FCFA;
}

:root[data-theme="dark"] .poker-guide-tools-section .section-description {
    color: #B7DBD8;
}

:root[data-theme="dark"] .poker-guide-tools-section .step-number {
    background: rgba(127, 209, 214, 0.16);
    border-color: rgba(127, 209, 214, 0.34);
    color: #C9F0ED;
}

:root[data-theme="dark"] .poker-guide-tools-section .pg-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-section .pg-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-guide-homepage {
    background: #121B1D !important;
}

:root[data-theme="dark"] .poker-guide-hero {
    background: linear-gradient(135deg, #133234 0%, #184144 35%, #1A494A 50%, #174043 65%, #122E31 100%) !important;
}

:root[data-theme="dark"] .poker-guide-hero::before {
    background:
        radial-gradient(circle at 20% 30%, rgba(34, 198, 174, 0.14) 0%, transparent 52%),
        radial-gradient(circle at 80% 70%, rgba(21, 154, 136, 0.12) 0%, transparent 50%) !important;
}

:root[data-theme="dark"] .poker-guide-hero-title,
:root[data-theme="dark"] .poker-guide-hero-subtitle {
    color: #F3F6F4;
}

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

:root[data-theme="dark"] .poker-guide-card:hover {
    background: var(--bg-lighter) !important;
    border-color: #3B4E55 !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

:root[data-theme="dark"] .poker-guide-card .poker-guide-card-thumbnail {
    background: #1C272B !important;
}

:root[data-theme="dark"] .poker-guide-card .poker-guide-card-icon {
    background: var(--bg-lighter) !important;
}

/* Dark theme ownership for Poker Guide tools grid cards */
:root[data-theme="dark"] .pg-tool-card {
    background: var(--bg-light);
    border-color: rgba(110, 231, 207, 0.18);
}

:root[data-theme="dark"] .pg-tool-card:hover,
:root[data-theme="dark"] .pg-tool-card.pg-tool-active:hover {
    background: var(--bg-lighter);
    border-color: var(--primary-color);
}

:root[data-theme="dark"] .pg-tool-icon {
    background: var(--bg-lighter);
}

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

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

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

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