/* Reset and Base Styles */
:root {
    --brand-dark-green: #040d05;
    --brand-medium-green: #061008;
    --brand-light-green: #0a1a0c;
    --brand-border-green: #17361c;
    --brand-gold-start: #e58e00;
    --brand-gold-end: #ffb01a;
    --brand-gold: #ffb01a;
    --brand-gold-dark: #b36f00;
    --brand-gray: #94a3b8;
    --brand-light-gray: #cbd5e1;
    --font-sans: "Poppins", sans-serif;
    --font-display: "Montserrat", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--brand-dark-green);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

body::selection {
    background-color: var(--brand-gold);
    color: #000;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input {
    font-family: inherit;
}

/* Utilities */
.nnn-hidden {
    display: none !important;
}

.nnn-text-glow {
    text-shadow: 0 0 10px rgba(255, 176, 26, 0.3);
}

.nnn-gold-gradient {
    background: linear-gradient(
        135deg,
        var(--brand-gold-start) 0%,
        var(--brand-gold-end) 100%
    );
}

.nnn-gold-gradient:hover {
    background: linear-gradient(
        135deg,
        var(--brand-gold-end) 0%,
        var(--brand-gold-start) 100%
    );
}

.nnn-gold-text {
    color: var(--brand-gold);
}

.nnn-bg-noise {
    background-image: radial-gradient(
        circle at 50% 50%,
        rgba(23, 54, 28, 0.15) 0%,
        rgba(4, 13, 5, 0) 80%
    );
}

.nnn-container {
    max-w-width: 1280px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .nnn-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .nnn-container {
        padding: 0 2rem;
    }
}

/* Animations */
@keyframes nnn-float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes nnn-float-fast {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(4deg);
    }
}

@keyframes nnn-pulse-slow {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

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

/* Global Background Orbs */
.nnn-global-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -10;
    pointer-events: none;
}

.nnn-orb-1 {
    position: absolute;
    top: 0;
    left: 25%;
    width: 500px;
    height: 500px;
    background-color: rgba(2, 44, 34, 0.2);
    border-radius: 50%;
    filter: blur(120px);
}

.nnn-orb-2 {
    position: absolute;
    top: 800px;
    right: 25%;
    width: 600px;
    height: 600px;
    background-color: rgba(10, 26, 12, 0.3);
    border-radius: 50%;
    filter: blur(140px);
}

.nnn-orb-3 {
    position: absolute;
    top: 2000px;
    left: 33%;
    width: 500px;
    height: 500px;
    background-color: rgba(6, 78, 59, 0.1);
    border-radius: 50%;
    filter: blur(120px);
}

/* Header */
.nnn-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.nnn-header-scrolled {
    background-color: rgba(4, 13, 5, 0.9);
    border-bottom: 1px solid rgba(23, 54, 28, 0.4);
    padding: 0.75rem 0;
}

.nnn-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(6, 16, 8, 0.45);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(23, 54, 28, 0.5);
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
}

.nnn-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    group: hover;
}

.nnn-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(
        to top right,
        var(--brand-gold-start),
        var(--brand-gold-end)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.125rem;
    box-shadow: 0 10px 15px -3px rgba(229, 142, 0, 0.2);
}

.nnn-logo-icon i {
    transition: transform 0.3s ease;
}

.nnn-logo:hover .nnn-logo-icon i {
    transform: scale(1.1);
}

.nnn-logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    background: linear-gradient(
        to right,
        #fff,
        var(--brand-gold),
        var(--brand-gold-end)
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nnn-nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nnn-nav-links {
        display: flex;
    }
}

.nnn-nav-link {
    color: var(--brand-light-gray);
    font-weight: 500;
    transition: color 0.3s;
}

.nnn-nav-link:hover {
    color: var(--brand-gold);
}

.nnn-nav-link.active {
    color: var(--brand-gold);
    font-weight: 600;
    position: relative;
}

.nnn-nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--brand-gold);
}

.nnn-nav-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .nnn-nav-actions {
        display: flex;
    }
}

.nnn-btn-outline {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid var(--brand-gold);
    color: var(--brand-gold);
    font-weight: 600;
    transition: all 0.3s ease;
}

.nnn-btn-outline:hover {
    background-color: var(--brand-gold);
    color: #000;
}

.nnn-btn-solid {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    color: #000;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nnn-btn-solid:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(229, 142, 0, 0.4);
}

.nnn-mobile-btn {
    display: block;
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.nnn-mobile-btn:hover {
    color: var(--brand-gold);
}

@media (min-width: 768px) {
    .nnn-mobile-btn {
        display: none;
    }
}

.nnn-mobile-menu {
    position: absolute;
    top: 6rem;
    left: 1rem;
    right: 1rem;
    background-color: rgba(10, 26, 12, 0.95);
    border: 1px solid var(--brand-border-green);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.nnn-mobile-nav {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
}

.nnn-mobile-link {
    color: var(--brand-light-gray);
    font-weight: 500;
    font-size: 1.125rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(23, 54, 28, 0.3);
}

.nnn-mobile-link.active {
    color: var(--brand-gold);
    font-weight: 600;
}

.nnn-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.nnn-mobile-actions .nnn-btn-outline,
.nnn-mobile-actions .nnn-btn-solid {
    width: 100%;
    padding: 0.625rem 0;
}

/* Hero Section */
.nnn-hero-section {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 6rem;
}

.nnn-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .nnn-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.nnn-hero-content {
    z-index: 10;
    position: relative;
}

.nnn-hero-subtitle {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    color: var(--brand-light-gray);
    font-weight: 700;
    margin-bottom: 1rem;
}

.nnn-hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .nnn-hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .nnn-hero-title {
        font-size: 4.5rem;
    }
}

.nnn-hero-checks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .nnn-hero-checks {
        flex-direction: row;
    }
}

.nnn-check-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nnn-check-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: var(--brand-gold);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 6px -1px rgba(255, 176, 26, 0.3);
}

.nnn-check-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--brand-light-gray);
}

.nnn-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .nnn-hero-actions {
        flex-direction: row;
    }
}

.nnn-btn-large {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.nnn-btn-large:hover {
    transform: scale(1.05);
}

.nnn-btn-icon-bg {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1.5rem;
    transition: transform 0.3s ease;
}

.nnn-btn-large:hover .nnn-btn-icon-bg {
    transform: translateX(4px);
}

.nnn-btn-primary {
    color: #000;
}

.nnn-btn-primary:hover {
    box-shadow: 0 25px 50px -12px rgba(229, 142, 0, 0.3);
}

.nnn-btn-primary .nnn-btn-icon-bg {
    background-color: var(--brand-dark-green);
    color: var(--brand-gold);
}

.nnn-btn-secondary {
    border: 1px solid rgba(255, 176, 26, 0.6);
    color: #fff;
}

.nnn-btn-secondary:hover {
    color: #000;
    background-color: rgba(255, 176, 26, 0.25);
}

.nnn-btn-secondary .nnn-btn-icon-bg {
    background-color: var(--brand-gold);
    color: #000;
}

.nnn-hero-graphics {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

@media (min-width: 1024px) {
    .nnn-hero-graphics {
        padding-left: 2rem;
    }
}

.nnn-spin-ring-1,
.nnn-spin-ring-2 {
    position: absolute;
    border-radius: 50%;
    animation: nnn-spin-slow 15s linear infinite;
}

.nnn-spin-ring-1 {
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 176, 26, 0.1);
}

.nnn-spin-ring-2 {
    width: 300px;
    height: 300px;
    border: 2px dashed rgba(255, 176, 26, 0.15);
    animation-direction: reverse;
}

@media (min-width: 640px) {
    .nnn-spin-ring-1 {
        width: 480px;
        height: 480px;
    }
    .nnn-spin-ring-2 {
        width: 400px;
        height: 400px;
    }
}

.nnn-float-icon {
    position: absolute;
    color: var(--brand-gold);
}

.nnn-icon-1 {
    top: 2.5rem;
    left: 2.5rem;
    font-size: 1.5rem;
    opacity: 0.7;
    animation: nnn-float 6s ease-in-out infinite;
}

.nnn-icon-2 {
    bottom: 3rem;
    right: 3rem;
    font-size: 2.25rem;
    opacity: 0.8;
    animation: nnn-float-fast 3s ease-in-out infinite;
}

.nnn-hero-img {
    width: 320px;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(255, 176, 26, 0.25));
    //animation: nnn-float 6s ease-in-out infinite;
}

@media (min-width: 640px) {
    .nnn-hero-img {
        width: 450px;
    }
}

/* Stats Section */
.nnn-stats-section {
    padding: 3rem 0;
    background-color: rgba(10, 26, 12, 0.3);
    border-top: 1px solid rgba(23, 54, 28, 0.45);
    border-bottom: 1px solid rgba(23, 54, 28, 0.45);
}

.nnn-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .nnn-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.nnn-stat-card {
    background-color: rgba(6, 16, 8, 0.6);
    border: 1px solid rgba(23, 54, 28, 0.4);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.nnn-stat-card:hover {
    border-color: rgba(255, 176, 26, 0.4);
}

.nnn-stat-val {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.875rem;
    color: var(--brand-gold);
    transition: transform 0.3s ease;
}

@media (min-width: 640px) {
    .nnn-stat-val {
        font-size: 2.25rem;
    }
}

.nnn-stat-card:hover .nnn-stat-val {
    transform: scale(1.05);
}

.nnn-stat-label {
    font-size: 0.75rem;
    color: var(--brand-light-gray);
    margin-top: 0.5rem;
    font-weight: 500;
}

@media (min-width: 640px) {
    .nnn-stat-label {
        font-size: 0.875rem;
    }
}

/* Providers Section */
.nnn-providers-section {
    padding: 4rem 0;
    overflow: hidden;
}

.nnn-section-title-wrap {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 3rem;
}

.nnn-title-line {
    flex: 1;
    height: 1px;
}

.nnn-line-left {
    background: linear-gradient(to right, transparent, rgba(255, 176, 26, 0.3));
}
.nnn-line-right {
    background: linear-gradient(to left, transparent, rgba(255, 176, 26, 0.3));
}

.nnn-section-subtitle {
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--brand-light-gray);
}

@media (min-width: 640px) {
    .nnn-section-subtitle {
        font-size: 1.25rem;
    }
}

.nnn-providers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .nnn-providers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.nnn-provider-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: rgba(10, 26, 12, 0.4);
    border: 1px solid rgba(23, 54, 28, 0.3);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    color: #cbd5e1;
}

.nnn-provider-card:hover {
    border-color: rgba(255, 176, 26, 0.4);
    background-color: rgba(10, 26, 12, 0.7);
    color: #fff;
}

.nnn-provider-text-1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.25rem;
    font-style: italic;
    letter-spacing: -0.05em;
}
.nnn-provider-text-2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
    text-align: center;
}
.nnn-provider-text-2-sub {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    display: block;
    letter-spacing: 0.1em;
    font-weight: 400;
}
.nnn-provider-text-3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nnn-provider-text-3-badge {
    background-color: var(--brand-gold);
    color: #000;
    border-radius: 0.25rem;
    padding: 0.125rem 0.375rem;
    font-size: 0.75rem;
    font-weight: 900;
}
.nnn-provider-text-4 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.25rem;
    font-style: italic;
    letter-spacing: 0.1em;
}

/* Games Section */
.nnn-games-section {
    padding: 5rem 0;
    position: relative;
    background-color: rgba(10, 26, 12, 0.1);
}

.nnn-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.nnn-games-subtitle {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.nnn-games-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.25rem;
}

@media (min-width: 640px) {
    .nnn-games-title {
        font-size: 3rem;
    }
}

.nnn-games-carousel-wrap {
    position: relative;
    padding: 0 1rem;
}

.nnn-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 176, 26, 0.5);
    background-color: rgba(6, 16, 8, 0.9);
    color: var(--brand-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
}

.nnn-carousel-btn:hover {
    background-color: var(--brand-gold);
    color: #000;
}

.nnn-prev-btn {
    left: -1rem;
}
.nnn-next-btn {
    right: -1rem;
}

.nnn-games-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem;
    user-select: none;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.nnn-games-container::-webkit-scrollbar {
    display: none;
}

.nnn-game-card {
    flex-shrink: 0;
    width: 280px;
    background-color: rgba(10, 26, 12, 0.3);
    border: 1px solid rgba(23, 54, 28, 0.4);
    border-radius: 1rem;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

@media (min-width: 640px) {
    .nnn-game-card {
        width: 320px;
    }
}

.nnn-game-card:hover {
    border-color: rgba(255, 176, 26, 0.5);
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(23, 54, 28, 0.5);
}

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

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

.nnn-game-img-contain {
    object-fit: contain;
    padding: 1rem;
}

.nnn-game-card:hover .nnn-game-img {
    transform: scale(1.1);
}

.nnn-game-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--brand-gold);
    border: 1px solid rgba(255, 176, 26, 0.2);
}

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

.nnn-game-card:hover .nnn-game-overlay {
    opacity: 1;
}

.nnn-play-btn {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--brand-gold);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    animation: nnn-pulse-slow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.nnn-game-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: #fff;
    transition: color 0.3s;
}

.nnn-game-card:hover .nnn-game-title {
    color: var(--brand-gold);
}

.nnn-game-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--brand-light-gray);
}

.nnn-game-rtp {
    color: #34d399; /* emerald-400 */
    font-weight: 700;
}

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

/* About Section */
.nnn-about-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.nnn-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .nnn-about-grid {
        grid-template-columns: 5fr 7fr;
        gap: 4rem;
    }
}

.nnn-about-img-col {
    position: relative;
    display: flex;
    justify-content: center;
}

.nnn-about-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(30, 58, 138, 0.3); /* blue-900/30 */
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.nnn-about-border {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 1rem;
    transform: scale(1.05);
    pointer-events: none;
}

.nnn-about-img {
    border-radius: 1.5rem;
    width: 100%;
    max-width: 400px;
    object-fit: cover;
    border: 1px solid rgba(23, 54, 28, 0.6);
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.1);
    transition: transform 0.5s ease;
}

.nnn-about-img:hover {
    transform: scale(1.02);
}

.nnn-about-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-bottom: 2rem;
}

.nnn-about-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nnn-about-block {
    border-left: 2px solid rgba(255, 176, 26, 0.6);
    padding-left: 1.5rem;
}

.nnn-block-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--brand-gold);
    margin-bottom: 0.75rem;
}

.nnn-block-desc {
    color: var(--brand-light-gray);
    line-height: 1.625;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .nnn-block-desc {
        font-size: 1rem;
    }
}

/* Features Section */
.nnn-features-section {
    padding: 5rem 0;
    position: relative;
    background-color: rgba(10, 26, 12, 0.3);
    border-top: 1px solid rgba(23, 54, 28, 0.45);
    border-bottom: 1px solid rgba(23, 54, 28, 0.45);
}

.nnn-features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.nnn-features-subtitle {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.nnn-features-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.875rem;
}

@media (min-width: 640px) {
    .nnn-features-title {
        font-size: 3rem;
    }
}

.nnn-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nnn-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nnn-feature-card {
    background-color: rgba(6, 16, 8, 0.8);
    border: 1px solid rgba(23, 54, 28, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.nnn-feature-icon-wrap {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background-color: var(--brand-light-green);
    border: 1px solid rgba(255, 176, 26, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nnn-feature-card:hover .nnn-feature-icon-wrap {
    background-color: var(--brand-gold);
    color: #000;
}

.nnn-feature-card-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.nnn-feature-card:hover .nnn-feature-card-title {
    color: var(--brand-gold);
}

.nnn-feature-card-desc {
    color: var(--brand-light-gray);
    line-height: 1.625;
    font-size: 0.875rem;
}

/* Callout Section */
.nnn-callout-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.nnn-callout-box {
    background: linear-gradient(
        to right,
        var(--brand-medium-green),
        var(--brand-light-green)
    );
    border: 1px solid rgba(23, 54, 28, 0.6);
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 640px) {
    .nnn-callout-box {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .nnn-callout-box {
        padding: 4rem;
    }
}

.nnn-callout-glow {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background-color: rgba(2, 44, 34, 0.2);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.nnn-callout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .nnn-callout-grid {
        grid-template-columns: 7fr 5fr;
    }
}

.nnn-callout-subtitle {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.nnn-callout-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.875rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .nnn-callout-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .nnn-callout-title {
        font-size: 3rem;
    }
}

.nnn-callout-btn {
    padding: 1rem 2rem;
    border-radius: 9999px;
    color: #000;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.nnn-callout-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(229, 142, 0, 0.3);
}

.nnn-callout-img-wrap {
    display: flex;
    justify-content: center;
}

.nnn-callout-img {
    width: 100%;
    max-width: 360px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(4, 13, 5, 0.4));
    transition: transform 0.5s ease;
}

.nnn-callout-img:hover {
    transform: scale(1.05);
}

/* Blog Section */
.nnn-blog-section {
    padding: 6rem 0;
    position: relative;
    background-color: rgba(10, 26, 12, 0.2);
}

.nnn-blog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.nnn-blog-subtitle {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.nnn-blog-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .nnn-blog-title {
        font-size: 3rem;
    }
}

.nnn-blog-desc {
    color: var(--brand-light-gray);
    max-width: 36rem;
    margin: 0 auto;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .nnn-blog-desc {
        font-size: 1rem;
    }
}

.nnn-blog-layout {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
}

.nnn-blog-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nnn-blog-cards {
        flex-direction: row;
    }
}

.nnn-blog-mini-card {
    display: none;
    width: 25%;
    opacity: 0.5;
    transform: scale(0.9);
    transition: opacity 0.3s;
    cursor: pointer;
}

@media (min-width: 768px) {
    .nnn-blog-mini-card {
        display: block;
    }
}

.nnn-blog-mini-card:hover {
    opacity: 0.8;
}

.nnn-mini-card-inner {
    background-color: var(--brand-medium-green);
    border: 1px solid var(--brand-border-green);
    border-radius: 1rem;
    padding: 1rem;
}

.nnn-mini-card-title {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--brand-gold);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nnn-mini-card-desc {
    font-size: 0.75rem;
    color: var(--brand-light-gray);
    margin-bottom: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nnn-mini-card-img-wrap {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background-color: #000;
}

.nnn-mini-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nnn-mini-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nnn-mini-play-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--brand-gold);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.nnn-blog-active-card {
    width: 100%;
    z-index: 10;
    transition: all 0.5s;
}

@media (min-width: 768px) {
    .nnn-blog-active-card {
        width: 50%;
    }
}

.nnn-active-card-inner {
    background-color: var(--brand-light-green);
    border: 1px solid rgba(255, 176, 26, 0.6);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(255, 176, 26, 0.1);
}

.nnn-active-card-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand-gold);
    margin-bottom: 0.5rem;
    text-align: center;
}

.nnn-active-card-desc {
    font-size: 0.875rem;
    color: var(--brand-light-gray);
    text-align: center;
    margin-bottom: 1.5rem;
}

.nnn-active-img-wrap {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background-color: #000;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.nnn-active-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nnn-active-play {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.nnn-active-play:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.nnn-active-play-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--brand-gold);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(229, 142, 0, 0.4);
    transition: transform 0.3s;
}

.nnn-active-play:hover .nnn-active-play-icon {
    transform: scale(1.1);
}

.nnn-blog-nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.nnn-blog-dot {
    width: 2.5rem;
    height: 0.25rem;
    border-radius: 9999px;
    background-color: rgba(255, 176, 26, 0.3);
    transition: all 0.3s;
}

.nnn-blog-dot-active {
    background-color: var(--brand-gold);
}

/* Footer Section */
.nnn-footer-section {
    padding: 4rem 0 2rem;
    background-color: var(--brand-medium-green);
    border-top: 1px solid var(--brand-border-green);
}

.nnn-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .nnn-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .nnn-footer-grid {
        grid-template-columns: 2fr 1fr 1fr 2fr;
        gap: 2rem;
    }
}

.nnn-footer-col-1 .nnn-logo {
    margin-bottom: 1rem;
}

.nnn-footer-desc {
    color: var(--brand-light-gray);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.nnn-footer-socials {
    display: flex;
    gap: 1rem;
}

.nnn-social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(10, 26, 12, 0.8);
    border: 1px solid var(--brand-border-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-gray);
    transition: all 0.3s;
}

.nnn-social-link:hover {
    background-color: var(--brand-gold);
    color: #000;
    border-color: var(--brand-gold);
}

.nnn-footer-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.nnn-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nnn-footer-link {
    color: var(--brand-gray);
    font-size: 0.875rem;
    transition: color 0.3s;
}

.nnn-footer-link:hover {
    color: var(--brand-gold);
}

.nnn-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nnn-newsletter-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background-color: rgba(10, 26, 12, 0.8);
    border: 1px solid var(--brand-border-green);
    color: #fff;
    font-size: 0.875rem;
    outline: none;
}

.nnn-newsletter-input:focus {
    border-color: var(--brand-gold);
}

.nnn-newsletter-btn {
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: #000;
    font-weight: 700;
    transition: opacity 0.3s;
}

.nnn-newsletter-btn:hover {
    opacity: 0.9;
}

.nnn-footer-bottom {
    border-top: 1px solid rgba(23, 54, 28, 0.5);
    padding-top: 2rem;
    text-align: center;
    color: var(--brand-gray);
    font-size: 0.875rem;
}

/* Modals */
.nnn-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.nnn-modal-content {
    background-color: var(--brand-medium-green);
    border: 1px solid var(--brand-border-green);
    border-radius: 1rem;
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.nnn-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--brand-gray);
    font-size: 1.25rem;
    transition: color 0.3s;
}

.nnn-modal-close:hover {
    color: #fff;
}

.nnn-modal-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.nnn-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nnn-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nnn-form-label {
    font-size: 0.875rem;
    color: var(--brand-light-gray);
    font-weight: 500;
}

.nnn-form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background-color: rgba(10, 26, 12, 0.8);
    border: 1px solid var(--brand-border-green);
    color: #fff;
    font-size: 0.875rem;
    outline: none;
}

.nnn-form-input:focus {
    border-color: var(--brand-gold);
}

.nnn-form-btn {
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: #000;
    font-weight: 700;
    margin-top: 0.5rem;
    transition: opacity 0.3s;
}

.nnn-form-btn:hover {
    opacity: 0.9;
}

/* Cutting Tool China: industrial palette and content extensions */
:root {
    --brand-dark-green: #101f35;
    --brand-medium-green: #1d3557;
    --brand-light-green: #244966;
    --brand-border-green: #457b9d;
    --brand-gold-start: #e63946;
    --brand-gold-end: #c92334;
    --brand-gold: #e63946;
    --brand-gold-dark: #a91928;
    --brand-gray: #b8c8d3;
    --brand-light-gray: #f1faee;
    --font-sans: "Plus Jakarta Sans", sans-serif;
    --font-display: "Plus Jakarta Sans", sans-serif;
}

body::selection {
    background: #e63946;
    color: #fff;
}

.nnn-text-glow {
    text-shadow: 0 0 18px rgba(69, 123, 157, 0.25);
}
.nnn-gold-gradient {
    background: linear-gradient(135deg, #e63946 0%, #c92334 100%);
}
.nnn-gold-gradient:hover {
    background: linear-gradient(135deg, #c92334 0%, #e63946 100%);
}
.nnn-bg-noise {
    background-image: radial-gradient(
        circle at 65% 30%,
        rgba(69, 123, 157, 0.24),
        transparent 58%
    );
}

.nnn-skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 100;
    padding: 0.7rem 1rem;
    border-radius: 0.45rem;
    background: #f1faee;
    color: #1d3557;
    transform: translateY(-160%);
}

.nnn-skip-link:focus {
    transform: translateY(0);
}

.nnn-logo-text {
    letter-spacing: -0.03em;
    text-transform: none;
}
.nnn-logo-icon {
    background: #e63946;
    color: #fff;
}

.nnn-header-scrolled {
    background: rgba(16, 31, 53, 0.94);
    border-bottom-color: rgba(69, 123, 157, 0.35);
}
.nnn-nav-container {
    background: rgba(16, 31, 53, 0.82);
    border-color: rgba(69, 123, 157, 0.35);
}
.nnn-btn-secondary {
    border-color: #457b9d;
}
.nnn-btn-secondary:hover {
    color: #f1faee;
    background: rgba(69, 123, 157, 0.24);
}
.nnn-hero-section {
    min-height: auto;
    padding-bottom: 6rem;
}
.nnn-hero-title {
    max-width: 13ch;
    font-size: clamp(2.65rem, 5vw, 4.85rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}
.nnn-hero-description {
    max-width: 62ch;
    margin: 1.25rem 0 1.5rem;
    color: #b8c8d3;
    font-size: 1.04rem;
    line-height: 1.75;
}
.nnn-hero-img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
    border-radius: 1.25rem;
}
.nnn-hero-graphics {
    min-width: 0;
}

.nnn-stats-section {
    background: #f1faee;
    color: #1d3557;
}
.nnn-stat-number,
.nnn-stat-label {
    color: #1d3557;
}
.nnn-stat-icon {
    color: #e63946;
    border-color: rgba(230, 57, 70, 0.25);
    background: rgba(230, 57, 70, 0.08);
}

.nnn-provider-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.8rem;
    margin-top: 2rem;
}

.nnn-provider-name {
    display: grid;
    min-height: 88px;
    place-items: center;
    padding: 1rem;
    border: 1px solid rgba(69, 123, 157, 0.55);
    border-radius: 0.75rem;
    background: rgba(69, 123, 157, 0.08);
    color: #f1faee;
    font-weight: 700;
    text-align: center;
}

.nnn-provider-note {
    max-width: 85ch;
    margin: 1.25rem auto 0;
    color: #b8c8d3;
    text-align: center;
    line-height: 1.65;
}

.nnn-section-header {
    max-width: 920px;
    margin: 0 auto 3rem;
    text-align: center;
}
.nnn-section-title {
    color: #f1faee;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
}

.nnn-stat-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}
.nnn-stat-item > div:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.nnn-games-section {
    background: #f1faee;
    color: #1d3557;
}
.nnn-games-title,
.nnn-game-title {
    color: #1d3557;
}
.nnn-games-subtitle,
.nnn-game-desc {
    color: #50677c;
}
.nnn-games-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
}
.nnn-game-card {
    width: auto;
    min-width: 0;
    border-color: rgba(69, 123, 157, 0.28);
    background: #fff;
    box-shadow: 0 16px 40px rgba(29, 53, 87, 0.12);
}
.nnn-game-img-wrap {
    background: #e9f0ef;
}
.nnn-game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nnn-game-badge {
    color: #e63946;
}
.nnn-game-card-body {
    display: grid;
    gap: 0.5rem;
    padding-top: 1rem;
}
.nnn-game-desc {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
}
.nnn-carousel-btn {
    color: #1d3557;
    border-color: #457b9d;
}
.nnn-carousel-controls {
    display: none;
}

.nnn-about-img {
    width: 100%;
    min-height: 540px;
    object-fit: cover;
    border-radius: 1.25rem;
}
.nnn-about-content,
.nnn-about-visual {
    min-width: 0;
}
.nnn-about-subtitle {
    margin-bottom: 0.65rem;
    color: #b8c8d3;
}
.nnn-about-text {
    margin-bottom: 1rem;
    color: #b8c8d3;
    line-height: 1.75;
}
.nnn-about-points {
    display: grid;
    gap: 0.65rem;
    margin-top: 1.5rem;
}
.nnn-about-points div {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #f1faee;
}
.nnn-about-points i {
    color: #e63946;
}

.nnn-features-section {
    background: #f1faee;
}
.nnn-features-title,
.nnn-feature-card h3 {
    color: #1d3557;
}
.nnn-features-subtitle,
.nnn-feature-card p {
    color: #50677c;
}
.nnn-feature-card {
    border-color: rgba(69, 123, 157, 0.24);
    background: #fff;
    box-shadow: 0 12px 30px rgba(29, 53, 87, 0.08);
}
.nnn-feature-icon {
    color: #e63946;
    background: rgba(230, 57, 70, 0.1);
}

.nnn-callout-box {
    border-color: rgba(69, 123, 157, 0.55);
    background: linear-gradient(
        135deg,
        rgba(69, 123, 157, 0.24),
        rgba(29, 53, 87, 0.82)
    );
}
.nnn-callout-content {
    min-width: 0;
}
.nnn-callout-text {
    max-width: 58ch;
    margin: 1rem 0 1.5rem;
    color: #c5d4dd;
    line-height: 1.7;
}
.nnn-callout-img {
    width: 100%;
    min-height: 390px;
    object-fit: cover;
    border-radius: 1rem;
}
.nnn-callout-btn {
    color: #fff;
}

.nnn-blog-section {
    background: #f1faee;
}
.nnn-blog-title,
.nnn-mini-card h3,
.nnn-active-card h3 {
    color: #1d3557;
}
.nnn-blog-subtitle,
.nnn-active-card p {
    color: #50677c;
}
.nnn-mini-card,
.nnn-active-card {
    border-color: rgba(69, 123, 157, 0.24);
    background: #fff;
    box-shadow: 0 14px 34px rgba(29, 53, 87, 0.1);
}
.nnn-mini-card-img,
.nnn-active-img {
    object-fit: cover;
}
.nnn-blog-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.4fr 0.8fr;
    align-items: stretch;
    gap: 1rem;
}
.nnn-mini-card,
.nnn-active-card {
    overflow: hidden;
    border: 1px solid rgba(69, 123, 157, 0.24);
    border-radius: 1rem;
}
.nnn-mini-card {
    display: grid;
    grid-template-rows: 220px 1fr;
    cursor: pointer;
}
.nnn-active-card {
    display: grid;
    grid-template-rows: 320px 1fr;
}
.nnn-mini-card-img,
.nnn-active-img {
    width: 100%;
    height: 100%;
}
.nnn-mini-card > div,
.nnn-active-content {
    padding: 1.25rem;
}
.nnn-mini-card span,
.nnn-active-content span {
    color: #e63946;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.nnn-mini-card h3,
.nnn-active-card h3 {
    margin-top: 0.45rem;
    line-height: 1.25;
}
.nnn-active-content p {
    margin: 0.7rem 0 0;
    line-height: 1.65;
}
.nnn-blog-dots {
    display: flex;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.nnn-b2b-guide-section {
    padding: clamp(5rem, 9vw, 8rem) 0;
    background: #fff;
    color: #1d3557;
}
.nnn-b2b-guide-header {
    max-width: 820px;
    margin-bottom: 3rem;
}
.nnn-b2b-guide-header h2 {
    margin: 0.6rem 0 1rem;
    color: #1d3557;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}
.nnn-b2b-guide-header > p:last-child {
    color: #50677c;
    font-size: 1.05rem;
    line-height: 1.75;
}
.nnn-b2b-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.nnn-b2b-guide-grid article {
    padding: 1.75rem;
    border: 1px solid #cbd9df;
    border-radius: 0.9rem;
    background: #f1faee;
}
.nnn-b2b-guide-grid article > span {
    color: #e63946;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}
.nnn-b2b-guide-grid h3 {
    margin: 0.7rem 0;
    color: #1d3557;
    font-size: 1.25rem;
}
.nnn-b2b-guide-grid p {
    color: #50677c;
    line-height: 1.72;
}
.nnn-b2b-summary {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-left: 5px solid #e63946;
    background: #1d3557;
    color: #f1faee;
}
.nnn-b2b-summary p {
    margin: 0;
    color: #c5d4dd;
    line-height: 1.7;
}

.nnn-footer-section {
    background: #101f35;
}
.nnn-footer-title {
    color: #f1faee;
}

@media (max-width: 900px) {
    .nnn-provider-track {
        grid-template-columns: repeat(2, 1fr);
    }
    .nnn-games-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .nnn-blog-grid {
        grid-template-columns: 1fr;
    }
    .nnn-mini-card,
    .nnn-active-card {
        grid-template-columns: 0.9fr 1.1fr;
        grid-template-rows: none;
    }
    .nnn-active-card {
        grid-template-columns: 1fr;
    }
    .nnn-b2b-guide-grid {
        grid-template-columns: 1fr;
    }
    .nnn-b2b-summary {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

@media (max-width: 640px) {
    .nnn-hero-title {
        font-size: clamp(2.4rem, 12vw, 3.4rem);
    }
    .nnn-hero-description {
        font-size: 0.98rem;
    }
    .nnn-provider-track {
        grid-template-columns: 1fr;
    }
    .nnn-games-grid {
        grid-template-columns: 1fr;
    }
    .nnn-game-card {
        width: 100%;
    }
    .nnn-mini-card,
    .nnn-active-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .nnn-mini-card-img,
    .nnn-active-img {
        aspect-ratio: 16 / 10;
    }
    .nnn-about-img {
        min-height: 320px;
    }
    .nnn-callout-img {
        min-height: 280px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Editorial topic sections from ___Topic */
.nnn-topic-section { padding: clamp(5rem, 8vw, 7.5rem) 0; }
.nnn-topic-light { background: #F1FAEE; color: #1D3557; }
.nnn-topic-dark { background: #132844; color: #F1FAEE; }
.nnn-topic-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(2.5rem, 7vw, 6.5rem); }
.nnn-topic-grid-reverse .nnn-topic-media { order: 2; }
.nnn-topic-grid-reverse .nnn-topic-content { order: 1; }
.nnn-topic-content, .nnn-topic-media { min-width: 0; }
.nnn-topic-media { margin: 0; overflow: hidden; border: 1px solid rgba(69, 123, 157, 0.34); border-radius: 1.15rem; box-shadow: 0 20px 48px rgba(16, 31, 53, 0.16); }
.nnn-topic-media img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform 320ms ease; }
.nnn-topic-media:hover img { transform: scale(1.025); }
.nnn-topic-number { display: block; margin-bottom: 0.8rem; color: #E63946; font-size: 1.9rem; font-weight: 800; line-height: 1; }
.nnn-topic-kicker { margin-bottom: 0.7rem; color: #E63946; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.nnn-topic-content h2 { margin-bottom: 1.25rem; color: #1D3557; font-size: clamp(2.1rem, 4vw, 3.6rem); line-height: 1.08; letter-spacing: -0.045em; }
.nnn-topic-dark .nnn-topic-content h2 { color: #F1FAEE; }
.nnn-topic-content > p:not(.nnn-topic-kicker) { margin-bottom: 1.5rem; color: #50677c; line-height: 1.75; }
.nnn-topic-dark .nnn-topic-content > p:not(.nnn-topic-kicker) { color: #c5d4dd; }
.nnn-topic-steps { display: grid; gap: 0.75rem; padding-left: 1.25rem; }
.nnn-topic-steps li { padding-left: 0.4rem; line-height: 1.55; }
.nnn-topic-mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.nnn-topic-mini-grid div { padding: 1rem; border: 1px solid rgba(69, 123, 157, 0.5); border-radius: 0.75rem; background: rgba(69, 123, 157, 0.12); }
.nnn-topic-mini-grid strong, .nnn-topic-mini-grid span { display: block; }
.nnn-topic-mini-grid span { margin-top: 0.25rem; color: #c5d4dd; font-size: 0.86rem; line-height: 1.45; }
.nnn-topic-quote { margin: 1.5rem 0; padding: 1.25rem; border-left: 4px solid #E63946; background: #fff; color: #1D3557; font-size: 1.05rem; font-weight: 600; line-height: 1.6; }
.nnn-topic-checks { display: grid; gap: 0.55rem; padding: 0; list-style: none; }
.nnn-topic-checks li::before { content: "✓"; margin-right: 0.65rem; color: #E63946; font-weight: 800; }
.nnn-topic-comparison { display: grid; margin: 1.4rem 0 0; }
.nnn-topic-comparison div { display: grid; grid-template-columns: 115px 1fr; gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid rgba(241, 250, 238, 0.16); }
.nnn-topic-comparison dt { color: #F1FAEE; font-weight: 700; }
.nnn-topic-comparison dd { margin: 0; color: #c5d4dd; line-height: 1.5; }
.nnn-topic-method { padding: 1.4rem; border-top: 4px solid #457B9D; background: #fff; box-shadow: 0 14px 34px rgba(29, 53, 87, 0.1); }
.nnn-topic-method h3 { margin-bottom: 0.75rem; color: #1D3557; }
.nnn-topic-method ul { display: grid; gap: 0.45rem; padding-left: 1.2rem; color: #50677c; }
.nnn-topic-warning { padding: 1.4rem; border: 1px solid rgba(230, 57, 70, 0.55); border-radius: 0.8rem; background: rgba(230, 57, 70, 0.09); }
.nnn-topic-warning strong { display: block; margin-bottom: 0.45rem; color: #fff; }
.nnn-topic-warning p { margin: 0; color: #c5d4dd; line-height: 1.65; }
.nnn-topic-benefits { display: grid; padding: 0; list-style: none; }
.nnn-topic-benefits li { display: grid; grid-template-columns: 2.5rem 1fr; gap: 0.85rem; padding: 0.9rem 0; border-bottom: 1px solid rgba(69, 123, 157, 0.28); }
.nnn-topic-benefits li > span { color: #E63946; font-weight: 800; }
.nnn-topic-benefits strong { color: #1D3557; }
.nnn-topic-benefits p { margin: 0.2rem 0 0; color: #50677c; font-size: 0.9rem; line-height: 1.5; }

@media (max-width: 900px) {
    .nnn-topic-grid { grid-template-columns: 1fr; gap: 2.25rem; }
    .nnn-topic-grid-reverse .nnn-topic-media, .nnn-topic-grid-reverse .nnn-topic-content { order: initial; }
}

@media (max-width: 640px) {
    .nnn-topic-section { padding: 4.5rem 0; }
    .nnn-topic-mini-grid { grid-template-columns: 1fr; }
    .nnn-topic-comparison div { grid-template-columns: 1fr; gap: 0.2rem; }
}
