/* Reset and Base Styles */
:root {
  --brand-dark-green: #111827; /* Background */
  --brand-medium-green: #1f2937; /* Card background */
  --brand-light-green: #374151; /* Card highlight */
  --brand-border-green: rgba(45, 108, 223, 0.25); /* Primary Blue Border */
  --brand-gold-start: #FF6A00; /* Accent Orange */
  --brand-gold-end: #ff8533; /* Soft Orange */
  --brand-gold: #FF6A00; /* Accent Orange */
  --brand-gold-dark: #cc5500; /* Dark Orange */
  --brand-gray: #9ca3af;
  --brand-light-gray: #F5F5F5; /* Neutral Light Text */
  --brand-blue: #2D6CDF; /* Primary Blue */
  --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, 106, 0, 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(45, 108, 223, 0.1) 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(45, 108, 223, 0.18);
  border-radius: 50%;
  filter: blur(120px);
}

.nnn-orb-2 {
  position: absolute;
  top: 800px;
  right: 25%;
  width: 600px;
  height: 600px;
  background-color: rgba(31, 41, 55, 0.3);
  border-radius: 50%;
  filter: blur(140px);
}

.nnn-orb-3 {
  position: absolute;
  top: 2000px;
  left: 33%;
  width: 500px;
  height: 500px;
  background-color: rgba(45, 108, 223, 0.08);
  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(17, 24, 39, 0.9);
  border-bottom: 1px solid rgba(45, 108, 223, 0.2);
  padding: 0.75rem 0;
}

.nnn-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(17, 24, 39, 0.45);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(45, 108, 223, 0.35);
  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(255, 106, 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(255, 106, 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(17, 24, 39, 0.95);
  border: 1px solid rgba(45, 108, 223, 0.25);
  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(45, 108, 223, 0.18);
}

.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, 106, 0, 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(255, 106, 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, 106, 0, 0.6);
  color: #fff;
}

.nnn-btn-secondary:hover {
  color: #000;
  background-color: rgba(255, 106, 0, 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, 106, 0, 0.1);
}

.nnn-spin-ring-2 {
  width: 300px;
  height: 300px;
  border: 2px dashed rgba(255, 106, 0, 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, 106, 0, 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(31, 41, 55, 0.3);
  border-top: 1px solid rgba(45, 108, 223, 0.2);
  border-bottom: 1px solid rgba(45, 108, 223, 0.2);
}

.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(31, 41, 55, 0.6);
  border: 1px solid rgba(45, 108, 223, 0.2);
  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, 106, 0, 0.3)); }
.nnn-line-right { background: linear-gradient(to left, transparent, rgba(255, 106, 0, 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(31, 41, 55, 0.4);
  border: 1px solid rgba(45, 108, 223, 0.18);
  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(31, 41, 55, 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(17, 24, 39, 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(31, 41, 55, 0.3);
  border: 1px solid rgba(45, 108, 223, 0.2);
  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(45, 108, 223, 0.35);
}

.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, 106, 0, 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(31, 41, 55, 0.3);
  border-top: 1px solid rgba(45, 108, 223, 0.2);
  border-bottom: 1px solid rgba(45, 108, 223, 0.2);
}

.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(45, 108, 223, 0.35);
  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, 106, 0, 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(45, 108, 223, 0.18);
  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(255, 106, 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 rgba(45, 108, 223, 0.25);
  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, 106, 0, 0.6);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(255, 106, 0, 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(255, 106, 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, 106, 0, 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 rgba(45, 108, 223, 0.25);
}

.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 rgba(45, 108, 223, 0.25);
  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 rgba(45, 108, 223, 0.25);
  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(45, 108, 223, 0.35);
  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 rgba(45, 108, 223, 0.25);
  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 rgba(45, 108, 223, 0.25);
  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;
}
