@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
    --home2-dark: #040d05;
    --home2-green-900: #061008;
    --home2-green-800: #0a1a0c;
    --home2-border: #17361c;
    --home2-gold: #ffb01a;
    --home2-gold-start: #e58e00;
    --home2-gold-end: #ffb01a;
    --home2-muted: #94a3b8;
    --home2-soft: #cbd5e1;
    --home2-white: #ffffff;
    --home2-font: "Poppins", sans-serif;
    --home2-display: "Montserrat", sans-serif;
}

#page-home {
    background: var(--home2-dark);
}

.home2-home {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 4%,
            rgba(255, 176, 26, 0.12),
            transparent 34rem
        ),
        linear-gradient(180deg, #040d05 0%, #061008 45%, #040d05 100%);
    color: var(--home2-white);
    font-family: var(--home2-font);
}

.home2-home a {
    color: inherit;
    text-decoration: none;
}

.home2-container {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.home2-gold {
    color: var(--home2-gold);
}

.home2-glow {
    text-shadow: 0 0 18px rgba(255, 176, 26, 0.28);
}

.home2-section-title {
    font-family: var(--home2-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
}

.home2-section-kicker {
    color: var(--home2-gold);
    font-family: var(--home2-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin: 0 0 0.6rem;
    text-transform: uppercase;
}

.home2-btn {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-weight: 800;
    gap: 0.9rem;
    justify-content: center;
    min-height: 3.5rem;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
    white-space: nowrap;
}

.home2-btn:hover {
    transform: translateY(-2px);
}

.home2-btn-primary {
    background: linear-gradient(
        135deg,
        var(--home2-gold-start),
        var(--home2-gold-end)
    );
    color: #111;
}

.home2-btn-secondary {
    border: 1px solid rgba(255, 176, 26, 0.62);
    color: var(--home2-white);
}

.home2-btn-secondary:hover {
    background: rgba(255, 176, 26, 0.12);
}

.home2-btn-icon {
    align-items: center;
    background: var(--home2-dark);
    border-radius: 50%;
    color: var(--home2-gold);
    display: inline-flex;
    height: 2.55rem;
    justify-content: center;
    width: 2.55rem;
}

.home2-hero {
    padding: clamp(4rem, 7vw, 7.5rem) 0 clamp(3rem, 6vw, 6rem);
}

.home2-hero-grid {
    align-items: center;
    display: grid;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
}

.home2-hero-copy {
    position: relative;
    z-index: 2;
}

.home2-hero-eyebrow {
    color: var(--home2-soft);
    font-family: var(--home2-display);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.home2-hero-title {
    font-family: var(--home2-display);
    font-size: clamp(3.1rem, 7vw, 5.4rem);
    font-weight: 800;
    line-height: 1.06;
    margin: 0 0 1.8rem;
    text-transform: uppercase;
}

.home2-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.35rem;
    margin: 0 0 2.2rem;
}

.home2-check {
    align-items: center;
    color: var(--home2-soft);
    display: inline-flex;
    font-size: 1rem;
    font-weight: 600;
    gap: 0.65rem;
}

.home2-check-icon {
    align-items: center;
    background: var(--home2-gold);
    border-radius: 50%;
    color: #071006;
    display: inline-flex;
    height: 1.5rem;
    justify-content: center;
    width: 1.5rem;
}

.home2-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.home2-hero-art {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 410px;
    position: relative;
}

.home2-ring {
    animation: home2-spin 18s linear infinite;
    border: 1px solid rgba(255, 176, 26, 0.14);
    border-radius: 50%;
    height: min(86vw, 500px);
    position: absolute;
    width: min(86vw, 500px);
}

.home2-ring-dashed {
    animation-direction: reverse;
    border: 2px dashed rgba(255, 176, 26, 0.18);
    height: min(70vw, 410px);
    width: min(70vw, 410px);
}

.home2-hero-img {
    animation: home2-float 6s ease-in-out infinite;
    filter: drop-shadow(0 24px 36px rgba(255, 176, 26, 0.24));
    max-width: min(450px, 90%);
    object-fit: contain;
    position: relative;
    width: 100%;
    z-index: 2;
}

.home2-float-badge {
    align-items: center;
    background: rgba(255, 176, 26, 0.12);
    border: 1px solid rgba(255, 176, 26, 0.28);
    border-radius: 50%;
    color: var(--home2-gold);
    display: inline-flex;
    height: 3.25rem;
    justify-content: center;
    position: absolute;
    width: 3.25rem;
    z-index: 3;
}

.home2-float-badge.one {
    left: 8%;
    top: 12%;
}

.home2-float-badge.two {
    bottom: 13%;
    right: 10%;
}

.home2-stats {
    background: rgba(10, 26, 12, 0.38);
    border-bottom: 1px solid rgba(23, 54, 28, 0.58);
    border-top: 1px solid rgba(23, 54, 28, 0.58);
    padding: 3rem 0;
}

.home2-stats-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home2-stat {
    background: rgba(6, 16, 8, 0.68);
    border: 1px solid rgba(23, 54, 28, 0.54);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition:
        border-color 0.25s ease,
        transform 0.25s ease;
}

.home2-stat:hover {
    border-color: rgba(255, 176, 26, 0.45);
    transform: translateY(-4px);
}

.home2-stat-value {
    color: var(--home2-gold);
    font-family: var(--home2-display);
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.55rem;
}

.home2-stat-label {
    color: var(--home2-soft);
    font-size: 0.86rem;
    font-weight: 600;
    margin: 0;
}

.home2-providers,
.home2-games,
.home2-about,
.home2-features,
.home2-callout,
.home2-blog {
    padding: 40px 0;
}

.home2-title-line {
    align-items: center;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.home2-title-line::before,
.home2-title-line::after {
    background: linear-gradient(90deg, transparent, rgba(255, 176, 26, 0.35));
    content: "";
    flex: 1;
    height: 1px;
}

.home2-title-line::after {
    background: linear-gradient(90deg, rgba(255, 176, 26, 0.35), transparent);
}

.home2-title-line h2 {
    color: var(--home2-soft);
    font-family: var(--home2-display);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 800;
    margin: 0;
    text-align: center;
}

.home2-providers-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 980px;
}

.home2-provider {
    align-items: center;
    background: rgba(10, 26, 12, 0.42);
    border: 1px solid rgba(23, 54, 28, 0.42);
    border-radius: 0.85rem;
    color: var(--home2-soft);
    display: flex;
    min-height: 112px;
    justify-content: center;
    padding: 1.4rem;
    text-align: center;
    transition:
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.home2-provider:hover {
    border-color: rgba(255, 176, 26, 0.45);
    color: var(--home2-white);
    transform: translateY(-3px);
}

.home2-provider-main {
    display: block;
    font-family: var(--home2-display);
    font-size: 1.75rem;
    font-style: italic;
    font-weight: 800;
    line-height: 1.05;
}

.home2-provider-sub {
    display: block;
    font-size: 0.62rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-top: 0.2rem;
}

.home2-provider-badge {
    background: var(--home2-gold);
    border-radius: 0.25rem;
    color: #111;
    display: inline-block;
    font-size: 0.68rem;
    font-style: normal;
    font-weight: 900;
    margin-left: 0.25rem;
    padding: 0.1rem 0.35rem;
}

.home2-section-head {
    margin: 0 auto 3.5rem;
    max-width: 780px;
    text-align: center;
}

.home2-games {
    background: rgba(10, 26, 12, 0.16);
}

.home2-games-wrap {
    position: relative;
}

.home2-games-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 0.5rem;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.home2-games-track::-webkit-scrollbar {
    display: none;
}

.home2-game {
    background: rgba(10, 26, 12, 0.34);
    border: 1px solid rgba(23, 54, 28, 0.48);
    border-radius: 1rem;
    cursor: pointer;
    flex: 0 0 300px;
    padding: 1rem;
    transition:
        border-color 0.25s ease,
        transform 0.25s ease;
}

.home2-game:hover {
    border-color: rgba(255, 176, 26, 0.5);
    transform: translateY(-5px);
}

.home2-game-img-wrap {
    aspect-ratio: 1 / 1;
    background: var(--home2-dark);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

.home2-game-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    width: 100%;
}

.home2-game:hover .home2-game-img {
    transform: scale(1.08);
}

.home2-game-badge {
    background: rgba(0, 0, 0, 0.62);
    border: 1px solid rgba(255, 176, 26, 0.24);
    border-radius: 0.3rem;
    color: var(--home2-gold);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.2rem 0.55rem;
    position: absolute;
    right: 0.6rem;
    top: 0.6rem;
}

.home2-game-overlay {
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 0;
    position: absolute;
    transition: opacity 0.25s ease;
}

.home2-game:hover .home2-game-overlay {
    opacity: 1;
}

.home2-play {
    align-items: center;
    background: var(--home2-gold);
    border-radius: 50%;
    color: #111;
    display: inline-flex;
    height: 4rem;
    justify-content: center;
    width: 4rem;
}

.home2-game-title {
    color: var(--home2-white);
    font-family: var(--home2-display);
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 0.45rem;
}

.home2-game-meta {
    align-items: center;
    color: var(--home2-soft);
    display: flex;
    font-size: 0.88rem;
    justify-content: space-between;
}

.home2-game-rtp {
    color: #34d399;
    font-weight: 800;
}

.home2-game-provider {
    color: var(--home2-gold);
}

.home2-carousel-btn {
    align-items: center;
    background: rgba(6, 16, 8, 0.92);
    border: 1px solid rgba(255, 176, 26, 0.5);
    border-radius: 50%;
    color: var(--home2-gold);
    display: inline-flex;
    height: 3rem;
    justify-content: center;
    position: absolute;
    top: 43%;
    transform: translateY(-50%);
    width: 3rem;
    z-index: 2;
}

.home2-carousel-btn:hover {
    background: var(--home2-gold);
    color: #111;
}

.home2-carousel-btn.prev {
    left: -0.75rem;
}

.home2-carousel-btn.next {
    right: -0.75rem;
}

.home2-about {
    background:
        radial-gradient(
            circle at 18% 50%,
            rgba(255, 176, 26, 0.08),
            transparent 24rem
        ),
        rgba(4, 13, 5, 0.78);
    overflow: hidden;
}

.home2-about-grid {
    align-items: center;
    display: grid;
    gap: 4rem;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}

.home2-about-image-frame {
    position: relative;
    background-image: url("/assets/zeus-about-bg.png");
    background-size: 100%;
}

.home2-about-image-frame::before {
    background: rgba(255, 176, 26, 0.16);
    border-radius: 50%;
    content: "";
    filter: blur(70px);
    height: 260px;
    inset: 12% auto auto 8%;
    position: absolute;
    width: 260px;
    display: none;
}

.home2-about-img {
    /* border: 1px solid rgba(23, 54, 28, 0.65); */
    /* border-radius: 1.5rem; */
    /* box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35); */
    max-width: 420px;
    position: relative;
    width: 100%;
    margin: auto;
    display: block;
}

.home2-about-blocks {
    display: grid;
    gap: 1.8rem;
}

.home2-about-item {
    border-left: 2px solid rgba(255, 176, 26, 0.68);
    padding-left: 1.35rem;
}

.home2-about-item h3 {
    color: var(--home2-gold);
    font-family: var(--home2-display);
    font-size: 1.22rem;
    font-weight: 800;
    margin: 0 0 0.7rem;
}

.home2-about-item p,
.home2-about-item .home2-rich {
    color: var(--home2-soft);
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0;
}

.home2-features {
    background: rgba(10, 26, 12, 0.34);
    border-bottom: 1px solid rgba(23, 54, 28, 0.5);
    border-top: 1px solid rgba(23, 54, 28, 0.5);
}

.home2-features-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home2-feature {
    background: rgba(6, 16, 8, 0.84);
    border: 1px solid rgba(23, 54, 28, 0.55);
    border-radius: 1rem;
    padding: 2rem;
    transition:
        border-color 0.25s ease,
        transform 0.25s ease;
}

.home2-feature:hover {
    border-color: rgba(255, 176, 26, 0.52);
    transform: translateY(-5px);
}

.home2-feature-icon {
    align-items: center;
    background: var(--home2-green-800);
    border: 1px solid rgba(255, 176, 26, 0.3);
    border-radius: 0.75rem;
    color: var(--home2-gold);
    display: inline-flex;
    font-size: 1.45rem;
    height: 3.5rem;
    justify-content: center;
    margin-bottom: 1.3rem;
    width: 3.5rem;
}

.home2-feature h3 {
    color: var(--home2-white);
    font-family: var(--home2-display);
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 0.9rem;
}

.home2-feature p,
.home2-feature .home2-rich {
    color: var(--home2-soft);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

.home2-callout-box {
    background: linear-gradient(
        90deg,
        var(--home2-green-900),
        var(--home2-green-800)
    );
    border: 1px solid rgba(23, 54, 28, 0.68);
    border-radius: 1.5rem;
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.55fr) minmax(240px, 0.8fr);
    overflow: hidden;
    padding: clamp(2rem, 5vw, 4rem);
    position: relative;
}

.home2-callout-box::after {
    background: rgba(255, 176, 26, 0.08);
    border-radius: 50%;
    content: "";
    filter: blur(90px);
    height: 360px;
    position: absolute;
    right: 0;
    top: 0;
    width: 360px;
}

.home2-callout-content {
    position: relative;
    z-index: 2;
}

.home2-callout-title {
    font-family: var(--home2-display);
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.18;
    margin: 0 0 1.8rem;
}

.home2-callout-img-wrap {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.home2-callout-img {
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.3));
    max-width: 360px;
    width: 100%;
}

.home2-blog {
    background: rgba(10, 26, 12, 0.22);
}

.home2-blog-desc {
    color: var(--home2-soft);
    line-height: 1.65;
    margin: 1rem auto 0;
    max-width: 640px;
}

.home2-blog-grid {
    align-items: stretch;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home2-blog-card {
    background: rgba(6, 16, 8, 0.8);
    border: 1px solid rgba(23, 54, 28, 0.55);
    border-radius: 1rem;
    overflow: hidden;
    transition:
        border-color 0.25s ease,
        transform 0.25s ease;
}

.home2-blog-card:hover {
    border-color: rgba(255, 176, 26, 0.5);
    transform: translateY(-5px);
}

.home2-blog-img-wrap {
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
    position: relative;
}

.home2-blog-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    width: 100%;
}

.home2-blog-card:hover .home2-blog-img {
    transform: scale(1.05);
}

.home2-blog-play {
    align-items: center;
    background: rgba(0, 0, 0, 0.34);
    display: flex;
    inset: 0;
    justify-content: center;
    position: absolute;
}

.home2-blog-play span {
    align-items: center;
    background: var(--home2-gold);
    border-radius: 50%;
    color: #111;
    display: inline-flex;
    height: 3rem;
    justify-content: center;
    width: 3rem;
}

.home2-blog-content {
    padding: 1.25rem;
}

.home2-blog-card h3 {
    color: var(--home2-gold);
    font-family: var(--home2-display);
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 0.65rem;
}

.home2-blog-card p,
.home2-blog-card .home2-rich {
    color: var(--home2-soft);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}

@keyframes home2-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

@keyframes home2-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1024px) {
    .home2-hero-grid,
    .home2-about-grid,
    .home2-callout-box {
        grid-template-columns: 1fr;
    }

    .home2-hero-art {
        min-height: 360px;
    }

    .home2-stats-grid,
    .home2-providers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 640px) {
    .home2-container {
        width: min(100% - 24px, 1280px);
    }

    .home2-hero {
        padding-top: 3rem;
    }

    .home2-hero-actions,
    .home2-btn {
        width: 100%;
    }

    .home2-stats-grid,
    .home2-providers-grid {
        grid-template-columns: 1fr;
    }

    .home2-title-line {
        gap: 0.8rem;
    }

    .home2-game {
        flex-basis: 82vw;
    }

    .home2-carousel-btn {
        display: none;
    }

    .home2-callout-box {
        padding: 1.5rem;
    }
}
