
.solution-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 60% at 30% 0%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 80% 50% at 70% 100%, rgba(34, 211, 238, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #050508 0%, #0a0a0f 100%);
}

.hero-bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 20px 30px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(255, 255, 255, 0.08), transparent),
        radial-gradient(1px 1px at 80px 15px, rgba(255, 255, 255, 0.06), transparent);
    background-size: 100px 100px;
}

.solution-hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.solution-hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-white);
}

.solution-hero h1 span {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Hero Visual Elements */
.hero-visual-cards,
.hero-network-visual,
.hero-skin-visual,
.hero-clubs-visual,
.hero-crypto-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    z-index: 1;
}

/* Poker Room - Floating Cards */
.floating-card {
    position: absolute;
    width: 90px;
    height: 130px;
    background: linear-gradient(145deg, #fff 0%, #e8e8e8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    font-weight: bold;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    animation: floatCard 5s ease-in-out infinite;
}

.floating-card.c1 {
    top: 10%;
    left: 20%;
    color: #000;
    animation-delay: 0s;
    transform: rotate(-15deg);
}

.floating-card.c2 {
    top: 30%;
    right: 10%;
    color: #dc2626;
    animation-delay: -1.5s;
    transform: rotate(10deg);
}

.floating-card.c3 {
    bottom: 15%;
    left: 30%;
    color: #dc2626;
    animation-delay: -3s;
    transform: rotate(-8deg);
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0) rotate(var(--rotate, 0deg));
    }

    50% {
        transform: translateY(-20px) rotate(var(--rotate, 0deg));
    }
}

/* Poker Network - Network Nodes */
.network-node {
    position: absolute;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    animation: pulse 3s ease-in-out infinite;
}

.network-node.n1 {
    top: 10%;
    left: 50%;
    animation-delay: 0s;
}

.network-node.n2 {
    top: 40%;
    left: 15%;
    animation-delay: -0.5s;
}

.network-node.n3 {
    top: 40%;
    right: 15%;
    animation-delay: -1s;
}

.network-node.n4 {
    bottom: 10%;
    left: 50%;
    animation-delay: -1.5s;
}

.network-lines {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 49%, rgba(99, 102, 241, 0.2) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(99, 102, 241, 0.2) 50%, transparent 51%);
    opacity: 0.5;
}

/* Poker Skin - Preview Screens */
.skin-preview {
    position: absolute;
    width: 160px;
    height: 220px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    animation: floatCard 6s ease-in-out infinite;
}

.skin-preview.s1 {
    top: 10%;
    left: 10%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    animation-delay: 0s;
}

.skin-preview.s2 {
    top: 25%;
    left: 40%;
    background: linear-gradient(135deg, #2d1b4e 0%, #1a1a2e 100%);
    animation-delay: -2s;
    transform: scale(1.1);
    z-index: 2;
}

.skin-preview.s3 {
    bottom: 15%;
    right: 10%;
    background: linear-gradient(135deg, #1b3d4e 0%, #1a2e2e 100%);
    animation-delay: -4s;
}

/* Poker Clubs - Club Circles */
.club-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
    animation: pulse 4s ease-in-out infinite;
}

.club-circle.c1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.club-circle.c2 {
    top: 35%;
    right: 20%;
    animation-delay: -1.3s;
}

.club-circle.c3 {
    bottom: 20%;
    left: 45%;
    animation-delay: -2.6s;
}

/* Crypto Poker - Crypto Coins */
.crypto-coin {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    animation: coinSpin 8s linear infinite;
}

.crypto-coin.btc {
    top: 15%;
    left: 20%;
    background: linear-gradient(135deg, #f7931a 0%, #e68a00 100%);
}

.crypto-coin.eth {
    top: 40%;
    right: 15%;
    background: linear-gradient(135deg, #627eea 0%, #4b6bc8 100%);
    animation-delay: -2s;
}

.crypto-coin.ltc {
    bottom: 20%;
    left: 35%;
    background: linear-gradient(135deg, #bdc3c7 0%, #95a5a6 100%);
    animation-delay: -4s;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes coinSpin {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

/* ========== FEATURES SECTION ========== */
.solution-features {
    padding: 120px 0;
    background: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    transition: var(--transition-normal);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(34, 211, 238, 0.1) 100%);
    border-radius: 14px;
    font-size: 24px;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========== FEATURE HIGHLIGHT SECTION ========== */
.feature-highlight-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.feature-highlight-section.alt {
    background: var(--bg-dark);
}

.highlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.highlight-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.highlight-subtitle {
    font-size: 18px;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.highlight-text>p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.highlight-list {
    list-style: none;
}

.highlight-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-subtle);
}

.highlight-list li:last-child {
    border-bottom: none;
}

.highlight-list li i {
    color: var(--accent-green);
}

.highlight-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    padding: 80px 60px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    text-align: center;
}

.visual-card i {
    font-size: 80px;
    color: var(--primary-light);
    margin-bottom: 20px;
    display: block;
}

.visual-card span {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-white);
}

/* ========== MANAGEMENT SECTION ========== */
.management-section {
    padding: 120px 0;
    background: var(--bg-dark);
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.mgmt-item {
    padding: 30px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-fast);
}

.mgmt-item:hover {
    border-color: var(--primary);
}

.mgmt-item i {
    font-size: 32px;
    color: var(--primary-light);
    margin-bottom: 16px;
    display: block;
}

.mgmt-item span {
    font-size: 14px;
    color: var(--text-light);
}

/* ========== SOLUTION STATS ========== */
.solution-stats {
    padding: 100px 0;
    background: var(--bg-darker);
}

/* ========== WHO SECTION ========== */
.who-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.who-card {
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-normal);
}

.who-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.who-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    font-size: 28px;
    color: #fff;
}

.who-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== NETWORK FEATURES ========== */
.network-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.nf-item {
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-normal);
}

.nf-item:hover {
    border-color: var(--primary);
}

.nf-item i {
    font-size: 40px;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.nf-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.nf-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========== BENEFITS SECTION ========== */
.benefits-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.benefit-card {
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    transition: var(--transition-normal);
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.benefit-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    padding: 120px 0;
    background: var(--bg-dark);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.step-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.step-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.step-arrow {
    color: var(--primary);
    font-size: 24px;
}

/* ========== WHAT SECTION (Clubs) ========== */
.what-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.what-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.what-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.what-text .lead {
    font-size: 18px;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.what-text>p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.club-structure {
    text-align: center;
}

.struct-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
}

.struct-item.platform {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
}

.struct-item i {
    font-size: 32px;
    color: var(--primary-light);
}

.struct-item.platform i {
    color: #fff;
}

.struct-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
}

.struct-arrow {
    margin: 20px 0;
    font-size: 24px;
    color: var(--primary);
}

.struct-row {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.struct-item.club {
    padding: 20px 30px;
}

/* ========== OPERATOR BENEFITS ========== */
.operator-benefits {
    padding: 120px 0;
    background: var(--bg-dark);
}

.op-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.op-benefit {
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-fast);
}

.op-benefit:hover {
    border-color: var(--primary);
}

.op-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(34, 211, 238, 0.1) 100%);
    border-radius: 50%;
    font-size: 28px;
    color: var(--primary-light);
}

.op-benefit h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.op-benefit p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========== WHY CRYPTO ========== */
.why-crypto {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.crypto-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.crypto-benefit {
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    transition: var(--transition-normal);
}

.crypto-benefit:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.cb-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f7931a 0%, var(--primary) 100%);
    border-radius: 50%;
    font-size: 28px;
    color: #fff;
}

.crypto-benefit h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.crypto-benefit p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========== SUPPORTED CRYPTOS ========== */
.supported-cryptos {
    padding: 100px 0;
    background: var(--bg-dark);
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.crypto-item {
    padding: 30px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-fast);
}

.crypto-item:hover {
    border-color: var(--primary);
}

.crypto-item i,
.crypto-symbol {
    font-size: 36px;
    color: var(--primary-light);
    display: block;
    margin-bottom: 12px;
}

.crypto-item span {
    font-size: 12px;
    color: var(--text-muted);
}

.crypto-item.more {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
}

.crypto-item.more .crypto-symbol,
.crypto-item.more span {
    color: #fff;
}

/* ========== WEB3 SECTION ========== */
.web3-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.web3-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.web3-feature {
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-fast);
}

.web3-feature:hover {
    border-color: var(--accent);
}

.web3-feature i {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 20px;
}

.web3-feature h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.web3-feature p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {

    .features-grid,
    .management-grid,
    .who-grid,
    .network-features,
    .benefits-grid,
    .op-benefits-grid,
    .crypto-benefits,
    .web3-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .crypto-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .solution-hero h1 {
        font-size: 42px;
    }

    .hero-visual-cards,
    .hero-network-visual,
    .hero-skin-visual,
    .hero-clubs-visual,
    .hero-crypto-visual {
        display: none;
    }

    .highlight-content,
    .what-content {
        grid-template-columns: 1fr;
    }

    .highlight-visual {
        order: -1;
    }

    .steps-grid {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .solution-hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .solution-hero h1 {
        font-size: 32px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .features-grid,
    .management-grid,
    .who-grid,
    .network-features,
    .benefits-grid,
    .op-benefits-grid,
    .crypto-benefits,
    .web3-features {
        grid-template-columns: 1fr;
    }

    .crypto-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .struct-row {
        flex-direction: column;
    }
}