.hero-games-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    z-index: 1;
}

.game-card {
    position: absolute;
    width: 80px;
    height: 120px;
    background: linear-gradient(145deg, #fff 0%, #f0f0f0 100%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    animation: floatCard 4s ease-in-out infinite;
}

.game-card small {
    font-size: 18px;
    font-weight: bold;
    margin-top: -5px;
}

.game-card.gc1 {
    top: 20%;
    left: 10%;
    color: #000;
    animation-delay: 0s;
    transform: rotate(-20deg);
}

.game-card.gc2 {
    top: 15%;
    left: 35%;
    color: #dc2626;
    animation-delay: -0.5s;
    transform: rotate(-8deg);
}

.game-card.gc3 {
    top: 25%;
    right: 25%;
    color: #dc2626;
    animation-delay: -1s;
    transform: rotate(5deg);
}

.game-card.gc4 {
    top: 35%;
    right: 5%;
    color: #000;
    animation-delay: -1.5s;
    transform: rotate(15deg);
}

/* Platform - Screen Mock */
.hero-platform-visual {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    width: 450px;
    height: 350px;
    z-index: 1;
}

.platform-screen {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.platform-screen.main {
    width: 350px;
    height: 250px;
    top: 0;
    left: 0;
}

.platform-screen.mobile {
    width: 100px;
    height: 180px;
    bottom: 0;
    right: 0;
    border-radius: 15px;
}

.screen-header {
    height: 30px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
}

.screen-header::before,
.screen-header::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f57;
}

.screen-header::after {
    background: #28c840;
}

.screen-content {
    padding: 15px;
}

.screen-nav {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 15px;
}

.screen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.game-tile {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 8px;
    opacity: 0.7;
}

.mobile-header {
    height: 20px;
    background: rgba(0, 0, 0, 0.3);
}

.mobile-content {
    padding: 8px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.mobile-content::before,
.mobile-content::after {
    content: '';
    aspect-ratio: 1;
    background: var(--primary);
    border-radius: 6px;
    opacity: 0.5;
}

/* Spins Poker - Spin Wheel */
.hero-spins-visual {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    z-index: 1;
}

.spin-wheel {
    width: 100%;
    height: 100%;
    position: relative;
    animation: slowSpin 20s linear infinite;
}

.wheel-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#6366f1 0deg 60deg,
            #818cf8 60deg 120deg,
            #22d3ee 120deg 180deg,
            #10b981 180deg 240deg,
            #f59e0b 240deg 300deg,
            #ef4444 300deg 360deg);
    position: relative;
    box-shadow: 0 0 60px rgba(99, 102, 241, 0.4);
}

.wheel-segment {
    position: absolute;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.wheel-segment.s1 {
    top: 15%;
    left: 60%;
}

.wheel-segment.s2 {
    top: 35%;
    right: 5%;
}

.wheel-segment.s3 {
    bottom: 25%;
    right: 10%;
}

.wheel-segment.s4 {
    bottom: 10%;
    left: 40%;
}

.wheel-segment.s5 {
    top: 55%;
    left: 5%;
}

.wheel-segment.s6 {
    top: 20%;
    left: 15%;
}

.wheel-pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid #fff;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

@keyframes slowSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ========== GAME CATEGORIES ========== */
.game-categories {
    padding: 120px 0;
    background: var(--bg-dark);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.category-card {
    padding: 35px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    transition: var(--transition-normal);
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.category-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    font-size: 24px;
    color: #fff;
}

.category-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
}

.category-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.game-list {
    list-style: none;
    margin-bottom: 16px;
}

.game-list li {
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 8px;
}

.game-list li::before {
    content: '✓';
    color: var(--accent-green);
    font-size: 12px;
}

.game-list li:last-child {
    border-bottom: none;
}

.category-region {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
}

.category-region i {
    color: var(--primary-light);
}

/* ========== CARD GAMES SECTION ========== */
.card-games-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.card-games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.cg-item {
    padding: 30px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-fast);
}

.cg-item:hover {
    border-color: var(--primary);
}

.cg-item i {
    font-size: 36px;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.cg-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.cg-item p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========== INTEGRATION SECTION ========== */
.integration-section {
    padding: 120px 0;
    background: var(--bg-dark);
}

.integration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.integration-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.integration-text>p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.integration-list {
    list-style: none;
}

.integration-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-light);
}

.integration-list li i {
    color: var(--accent-green);
}

.code-block {
    background: #1e1e2e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.code-header {
    padding: 12px 16px;
    background: #2a2a3e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.code-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f57;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #28c840;
}

.file-name {
    margin-left: auto;
    font-size: 12px;
    color: var(--text-muted);
}

.code-block pre {
    padding: 20px;
    margin: 0;
    overflow-x: auto;
}

.code-block code {
    font-family: 'Fira Code', 'Monaco', monospace;
    font-size: 13px;
    color: #a6accd;
    line-height: 1.6;
}

/* ========== TOURNAMENTS SECTION ========== */
.tournaments-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.tournament-item {
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-fast);
}

.tournament-item:hover {
    border-color: var(--primary);
}

.t-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);
}

.tournament-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.tournament-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ========== WHY INTEGRATE ========== */
.why-integrate {
    padding: 120px 0;
    background: var(--bg-darker);
}

.benefits-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.benefit-item {
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-fast);
}

.benefit-item:hover {
    border-color: var(--primary);
}

.bi-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    font-size: 32px;
    color: #fff;
}

.benefit-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========== PLATFORM BENEFITS ========== */
.platform-benefits {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.benefits-row.large {
    grid-template-columns: repeat(5, 1fr);
}

.pb-item {
    padding: 40px 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-fast);
}

.pb-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.pb-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(--accent) 100%);
    border-radius: 50%;
    font-size: 28px;
    color: #fff;
}

.pb-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.pb-item p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ========== ARCHITECTURE SECTION ========== */
.architecture-section {
    padding: 120px 0;
    background: var(--bg-dark);
}

.architecture-diagram {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.arch-layer {
    padding: 30px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.arch-layer h4 {
    min-width: 200px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
}

.arch-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.arch-items span {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.arch-layer.api {
    border-left: 4px solid #22d3ee;
}

.arch-layer.core {
    border-left: 4px solid #6366f1;
}

.arch-layer.clients {
    border-left: 4px solid #10b981;
}

.arch-layer.games {
    border-left: 4px solid #f59e0b;
}

/* ========== BACK OFFICE SECTION ========== */
.backoffice-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.bo-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.bo-feature {
    padding: 35px 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-fast);
}

.bo-feature:hover {
    border-color: var(--primary);
}

.bo-feature i {
    font-size: 36px;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.bo-feature h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.bo-feature p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========== CLIENT CONTENT ========== */
.client-content {
    padding: 120px 0;
    background: var(--bg-dark);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.content-item {
    padding: 30px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-fast);
}

.content-item:hover {
    border-color: var(--primary);
}

.ci-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    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: 24px;
    color: var(--primary-light);
}

.content-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.content-item p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========== CRYPTO SECTION ========== */
.crypto-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, rgba(99, 102, 241, 0.05) 100%);
}

.crypto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.crypto-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.crypto-text>p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.crypto-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 30px;
}

.crypto-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-light);
}

.crypto-list li i {
    font-size: 20px;
    color: #f7931a;
}

.crypto-list li .fab.fa-ethereum {
    color: #627eea;
}

.crypto-list li .usdt,
.crypto-list li .ltc,
.crypto-list li .more {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-light);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-light);
    transition: var(--transition-fast);
}

.btn-link:hover {
    color: var(--text-white);
    gap: 14px;
}

.crypto-visual {
    display: flex;
    justify-content: center;
}

.crypto-coins {
    position: relative;
    width: 300px;
    height: 300px;
}

.crypto-coins .coin {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    animation: coinFloat 5s ease-in-out infinite;
}

.crypto-coins .coin.btc {
    top: 0;
    left: 30%;
    background: linear-gradient(135deg, #f7931a 0%, #e68a00 100%);
}

.crypto-coins .coin.eth {
    bottom: 20%;
    left: 0;
    background: linear-gradient(135deg, #627eea 0%, #4b6bc8 100%);
    animation-delay: -1.5s;
}

.crypto-coins .coin.usdt {
    bottom: 10%;
    right: 10%;
    background: linear-gradient(135deg, #26a17b 0%, #1e8a69 100%);
    font-weight: 700;
    animation-delay: -3s;
}

@keyframes coinFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ========== SPINS POKER SPECIFIC ========== */
.what-is-spins {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.spins-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.intro-text .lead {
    font-size: 18px;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.intro-text>p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.spins-highlights {
    display: flex;
    gap: 30px;
}

.sh-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
}

.sh-item i {
    color: var(--primary-light);
}

.intro-visual {
    display: flex;
    justify-content: center;
}

.multiplier-cards {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.mp-card {
    width: 80px;
    height: 100px;
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-white);
}

.mp-card.highlight {
    height: 120px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    font-size: 28px;
}

.mp-card.mega {
    height: 140px;
    background: linear-gradient(135deg, #f59e0b 0%, #d4840a 100%);
    border: none;
    font-size: 24px;
}

/* Spins How It Works */
.steps-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.hw-step {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    padding: 30px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    text-align: center;
}

.step-circle {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.hw-step h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.hw-step p {
    font-size: 13px;
    color: var(--text-muted);
}

.step-connector {
    color: var(--primary);
    font-size: 24px;
}

/* Multiplier Table */
.multiplier-section {
    padding: 120px 0;
    background: var(--bg-dark);
}

.multiplier-table {
    max-width: 700px;
    margin: 40px auto 0;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
}

.mt-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.mt-row.header {
    background: var(--bg-card);
}

.mt-row.header .mt-cell {
    font-weight: 600;
    color: var(--text-white);
}

.mt-row.highlight {
    background: rgba(99, 102, 241, 0.1);
}

.mt-cell {
    padding: 16px 24px;
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-subtle);
}

.mt-cell.mult {
    font-weight: 700;
    color: var(--text-white);
}

.mt-cell.mult.gold {
    color: #f59e0b;
}

.mt-cell.mult.mega {
    color: #ef4444;
    font-size: 16px;
}

.mt-cell.prob {
    color: var(--text-muted);
}

.table-note {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Spins Features */
.spins-features {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.sf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.sf-item {
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-fast);
}

.sf-item:hover {
    border-color: var(--accent);
}

.sf-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 50%;
    font-size: 28px;
    color: #fff;
}

.sf-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.sf-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Why Spins */
.why-spins-section {
    padding: 120px 0;
    background: var(--bg-dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.why-item {
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-fast);
}

.why-item:hover {
    border-color: var(--primary);
}

.why-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);
}

.why-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.why-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-games-grid,
    .content-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-row.large {
        grid-template-columns: repeat(3, 1fr);
    }

    .bo-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {

    .hero-games-visual,
    .hero-platform-visual,
    .hero-spins-visual {
        display: none;
    }

    .integration-content,
    .spins-intro,
    .crypto-content {
        grid-template-columns: 1fr;
    }

    .integration-visual {
        order: -1;
    }

    .arch-layer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .arch-layer h4 {
        min-width: auto;
    }

    .arch-items {
        justify-content: center;
    }

    .steps-horizontal {
        flex-direction: column;
    }

    .step-connector {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {

    .categories-grid,
    .tournaments-grid,
    .sf-grid {
        grid-template-columns: 1fr;
    }

    .card-games-grid,
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-row,
    .why-grid,
    .bo-features-grid {
        grid-template-columns: 1fr;
    }

    .benefits-row.large {
        grid-template-columns: 1fr;
    }

    .spins-highlights {
        flex-direction: column;
        gap: 16px;
    }

    .multiplier-cards {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ========== CATEGORY GRID (GAMES PAGES) ========== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.category-grid .category-card {
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-grid .category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.category-grid .category-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.category-grid .category-card:hover::before {
    transform: scaleX(1);
}

.category-grid .category-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    font-size: 32px;
}

.category-grid .category-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.category-grid .category-card p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-grid .game-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-grid .game-list li {
    padding: 10px 0;
    font-size: 13px;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-grid .game-list li:last-child {
    border-bottom: none;
}

.category-grid .game-list li i {
    color: var(--primary);
    font-size: 11px;
}

@media (max-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}