:root {
  --bg: #090909;
  --panel: rgba(255, 255, 255, 0.06);
  --text: #f8f3eb;
  --muted: #c9bea7;
  --accent: #ff8a1f;
  --accent-dark: #c85b00;
  --border: rgba(255, 255, 255, 0.12);
  --topbar-height: 92px;
}

#loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: #0b0b0b;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ff7a00;
  font-size: 32px;
  font-weight: 700;
  font-family: Arial, sans-serif;
}

.loader-text {
  animation: loading 1s infinite;
}

@keyframes loading {
  50% {
    opacity: 0.4;
  }
}

* {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #000000;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #f57905;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #f57905;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background: #090909;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .8s ease, transform .8s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(135deg,
      transparent 49.6%,
      rgba(255, 138, 31, .05) 50%,
      transparent 50.4%),
    linear-gradient(-135deg,
      transparent 49.6%,
      rgba(255, 255, 255, .03) 50%,
      transparent 50.4%);
  background-size:
    80px 80px,
    80px 80px,
    420px 420px,
    520px 520px;
  background-position:
    center,
    center,
    0 0,
    200px 150px;
  opacity: .9;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='208' viewBox='0 0 240 208'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'%3E%3Cpolygon points='120,0 240,69 240,208 120,139 0,208 0,69'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 240px 208px;
  opacity: .35;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%,
      rgba(255, 138, 31, .18),
      transparent 30%),

    radial-gradient(circle at 80% 70%,
      rgba(255, 138, 31, .12),
      transparent 25%),

    linear-gradient(120deg,
      transparent 30%,
      rgba(255, 255, 255, .04),
      transparent 70%);

  filter: blur(40px);
  animation:
    bgPulse 12s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background-image:
    linear-gradient(120deg,
      transparent 48%,
      rgba(255, 255, 255, .06) 49%,
      transparent 50%),

    linear-gradient(240deg,
      transparent 48%,
      rgba(255, 138, 31, .08) 49%,
      transparent 50%);

  background-size: 350px 350px, 500px 500px;
  background-position: 0 0, 200px 300px;
  opacity: .5;
  animation: gridMove 30s linear infinite;
}

.page-shell {
  position: relative;
}

.page-shell::after {
  content: "";
  position: fixed;
  width: 300px;
  height: 300px;
  left: -120px;
  bottom: 20%;
  border: 1px solid rgba(255, 255, 255, .08);
  clip-path:
    polygon(20% 0,
      100% 20%,
      80% 100%,
      0 70%);
  transform: rotate(20deg);
  z-index: -3;
  animation: floatShape 22s ease-in-out infinite reverse;
}

@keyframes bgPulse {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

@keyframes gridMove {

  from {
    background-position:
      0 0,
      200px 300px;
  }

  to {
    background-position:
      350px 200px,
      -200px 500px;
  }
}

@keyframes floatShape {
  0% {
    transform:
      translateY(0) rotate(0deg);
  }

  50% {
    transform:
      translateY(-40px) rotate(15deg);
  }

  100% {
    transform:
      translateY(0) rotate(0deg);
  }
}

@keyframes floatBg {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-3%, 2%) scale(1.05);
  }

  100% {
    transform: translate(3%, -2%) scale(1.08);
  }
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  width: 420px;
  height: 420px;
  right: -120px;
  top: 40px;

  background:
    linear-gradient(135deg,
      rgba(255, 138, 31, .18),
      transparent);

  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  filter: blur(2px);
  opacity: .6;
}

.hero::after {
  width: 220px;
  height: 220px;
  left: -40px;
  bottom: 80px;

  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, .05),
      transparent);

  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  transform: rotate(18deg);
}

.bg-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.bg-shapes span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .06);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.bg-shapes span:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 18%;
  right: 14%;
  transform: rotate(15deg);
}

.bg-shapes span:nth-child(2) {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 10%;
  border-color: rgba(255, 138, 31, .2);
}

.bg-shapes span:nth-child(3) {
  width: 180px;
  height: 180px;
  bottom: 10%;
  right: 30%;
  opacity: .4;
}

body.loaded {
  opacity: 1;
  transform: translateY(0);
}

.page-shell {
  width: 100%;
  margin: 0;
  padding: 0;
}

main {
  display: flex;
  flex-direction: column;
}

.topbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: var(--topbar-height);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: rgba(9, 9, 9, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.05), 0 10px 35px rgba(0, 0, 0, 0.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text);
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: transform 0.25s ease;
}

.brand:hover {
  transform: translateX(4px);
}

.brand-text {
  color: #fff;
}

.brand-accent {
  color: var(--accent);
  transition: transform 0.25s ease;
}

.brand:hover .brand-accent {
  transform: translateX(4px);
}

.nav-links {
  display: flex;
  gap: 18px;
}

.nav-links a,
.top-actions a {
  text-decoration: none;
  color: var(--text);
}

.nav-links a {
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wallet-btn {
  padding: 10px 16px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-weight: 700;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 28px;
  align-items: center;
  padding: 78px clamp(24px, 4vw, 80px) 54px;
  width: 100%;
  height: 100vh;
  max-width: 100%;
  margin: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
}

.hero-copy {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 620px;
  margin: 16px 0 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.primary-btn,
.ghost-btn,
.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 10px 25px rgba(255, 138, 31, 0.2);
}

.ghost-btn {
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.primary-btn:hover,
.ghost-btn:hover,
.card-link:hover {
  transform: translateY(-2px);
}

.hero-card,
.news-card,
.start-card {
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.hero-card {
  padding: 24px;
}

.hero-card h2 {
  margin-top: 0;
  font-size: 1.4rem;
}

.hero-card ul {
  padding-left: 18px;
  line-height: 1.9;
  color: var(--muted);
}

.news-section,
.about-section,
.start-section {
  width: 100%;
  height: 100vh;
  padding: 56px clamp(24px, 4vw, 80px) 20px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
}

.news-section {
  overflow-y: auto;
}

.start-section {
  overflow-y: auto;
}

.section-heading {
  margin-bottom: 20px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-card {
  padding: 40px;
}

.news-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.news-card p {
  color: var(--muted);
  line-height: 1.7;
}

.news-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.news-date {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.card-link {
  margin: 0;
  padding: 0;
  background: none;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
}

.start-card {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.start-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    height: 100vh;
  }

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

@media (max-width: 700px) {
  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100vh;
    padding: 78px 16px 54px;
  }

  .topbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 12px;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .start-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-section,
  .about-section,
  .start-section {
    height: auto;
    min-height: 100vh;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.players-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: rgba(255, 138, 31, 0.1);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.players-badge svg {
  width: 18px;
  height: 18px;
}

.news-card {
  display: flex;
  flex-direction: column;
}

.news-image {
  width: 100%;
  height: 220px;
  border-radius: 16px 16px 0 0;
  margin: -22px -22px 16px -22px;
  object-fit: cover;
  display: block;
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-links a.active {
  color: var(--accent);
  position: relative;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--accent);
}

.about-section {
  width: 100%;
  height: 100vh;
  padding: 56px clamp(24px, 4vw, 80px) 20px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.about-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 16px;
  width: 100%;
}

.gallery-item-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
  cursor: pointer;
  aspect-ratio: 16/9;
  display: block;
}

.gallery-item-img:hover {
  transform: translateY(-4px);
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text .section-heading {
  margin-bottom: 20px;
}

.about-text h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  margin: 0;
}

.about-text .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-description {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 16px 0 0 0;
}


.footer {
  background: #060806;
  padding: 50px 8% 25px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 25px;
}

.footer-info {
  max-width: 420px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-logo img {
  height: 45px;
}

.footer-desc {
  color: #555c55;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.footer-partners {
  width: 100%;
  max-width: 260px;
  margin-left: auto;
  margin-right: 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 28px;
  margin-top: 20px;
  justify-items: end;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.partner-item img {
  height: 28px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
}

.partner-item img[src*="sbp"] {
  height: 42px;
  filter: grayscale(100%);
}


.footer-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 20px 0;
  border: none;
}

.footer-middle {
  margin-bottom: 20px;
}

.legal-text {
  font-size: 10px;
  line-height: 1.5;
  color: #3a3f3a;
  max-width: 800px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright {
  font-size: 10px;
  color: #3a3f3a;
}

.footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 11px;
  color: #555c55;
  text-decoration: none;
  transition: 0.2s;
  white-space: nowrap;
}

.footer-links a:hover {
  color: #f57905;
  background: rgba(186, 255, 0, 0.08);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  justify-content: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  text-decoration: none;
}


.footer-social a i {
  display: flex;
  align-items: center;
  justify-content: center;
}





@media (max-width: 900px) {

  .topbar {
    min-height: 72px;
    padding: 14px 20px;
    gap: 12px
  }

  .brand {
    font-size: 1.15rem;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .wallet-btn {
    padding: 9px 13px;
    font-size: 13px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: calc(100vh - 72px);
    height: auto;
    padding: 70px 30px 50px;
  }

  .hero-card {
    max-width: 700px;
    width: 100%;
  }

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

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-gallery {
    order: 2;
  }

  .about-text {
    order: 1;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .start-card {
    padding: 24px;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-partners {
    margin-left: 0;
    margin-right: 0;
    max-width: 300px;
  }
}


@media (max-width: 650px) {

  html {
    scroll-snap-type: y proximity;
  }

  body {
    overflow-x: hidden;
  }

  .topbar {
    position: sticky;
    top: 0;
    min-height: 64px;
    height: 64px;
    padding: 10px 14px;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .brand {
    font-size: 1rem;
    letter-spacing: .04em;
    white-space: nowrap;
  }

  .top-actions {
    margin-left: auto;
    gap: 7px;
  }

  .wallet-btn {
    padding: 8px 11px;
    font-size: 11px;
    white-space: nowrap;
  }

  .social-link {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
  }

  .social-link svg {
    width: 16px;
    height: 16px;
  }

  .mobile-menu-btn {
    width: 38px;
    height: 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    cursor: pointer;
  }

  .mobile-menu-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 5px;
    transition: .25s ease;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 80px 20px 40px;
    border: none;
    border-radius: 0;
    background:
      radial-gradient(circle at 50% 35%,
        rgba(255, 138, 31, .12),
        transparent 35%),
      rgba(9, 9, 9, .98);

    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-20px);
    transition:
      opacity .3s ease,
      transform .3s ease,
      visibility .3s ease;
    z-index: 100;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 420px;
    min-height: 58px;
    padding: 12px 20px;
    border-radius: 14px;
    color: var(--text);
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    font-weight: 700;
    text-align: center;
    text-decoration: none;

    transition:
      color .2s ease,
      background .2s ease,
      transform .2s ease;
  }

  .nav-links a:hover {
    color: var(--accent);
    background: rgba(255, 138, 31, .08);
    transform: translateY(-2px);
  }

  .nav-links a.active {
    color: var(--accent);
    background: rgba(255, 138, 31, .08);
    border-bottom: none;
    padding-bottom: 12px;
  }

  .topbar.menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .topbar.menu-open .mobile-menu-btn {
    position: relative;
    z-index: 110;
  }

  .topbar.menu-open .mobile-menu-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .topbar.menu-open .mobile-menu-btn span:nth-child(2) {
    opacity: 0;
  }

  .topbar.menu-open .mobile-menu-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    min-height: calc(100vh - 64px);
    height: auto;
    gap: 28px;
    padding:
      55px 16px 45px;
    scroll-snap-align: start;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 1.08;
  }

  .hero-copy {
    font-size: .95rem;
    line-height: 1.7;
    margin: 14px 0 22px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
    min-height: 48px;
  }

  .hero-card {
    width: 100%;
    padding: 20px;
    border-radius: 20px;
  }

  .hero-card h2 {
    font-size: 1.2rem;
  }

  .hero-card ul {
    font-size: .9rem;
    line-height: 1.7;
  }

  .hero::before {
    width: 240px;
    height: 240px;
    right: -100px;
    top: 40px;
    opacity: .45;
  }

  .hero::after {
    width: 140px;
    height: 140px;
    left: -50px;
    bottom: 40px;
  }

  .news-section,
  .about-section,
  .start-section {
    width: 100%;
    min-height: 100vh;
    height: auto;

    padding:
      55px 16px 45px;

    justify-content: center;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading h2,
  .about-text h2 {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
    line-height: 1.1;
  }

  .news-section {
    overflow: visible;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .news-card {
    width: 100%;
    padding: 22px;
    border-radius: 20px;
  }

  .news-image {
    height: 190px;
    margin: -22px -22px 16px -22px;
    width: calc(100% + 44px);
    border-radius: 18px 18px 0 0;
  }

  .news-card h3 {
    font-size: 1.05rem;
  }

  .news-card p {
    font-size: .9rem;
    line-height: 1.65;
  }

  .news-footer {
    gap: 10px;
    flex-wrap: wrap;
  }

  .card-link {
    font-size: .9rem;
  }


  .players-badge {
    padding: 8px 13px;
    font-size: .8rem;
    margin-bottom: 13px;
  }

  .players-badge svg {
    width: 16px;
    height: 16px;
  }


  .about-section {
    justify-content: center;
  }

  .about-wrapper {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .about-text {
    width: 100%;
  }

  .about-description {
    font-size: .95rem;
    line-height: 1.7;
  }

  .about-gallery {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-item-img {
    border-radius: 12px;
  }


  .start-card {
    width: 100%;

    flex-direction: column;
    align-items: flex-start;

    gap: 18px;

    padding: 20px;
    border-radius: 20px;
  }

  .start-card p {
    font-size: .9rem;
    line-height: 1.7;
  }

  .start-card .primary-btn,
  .start-card .ghost-btn {
    width: 100%;
  }

  .donate-container {
    width: 100%;
    max-width: 100%;

    margin: 40px auto;
    padding: 0 16px;
  }

  .donate-title {
    font-size: clamp(1.9rem, 9vw, 2.4rem);
    line-height: 1.1;
    margin-bottom: 30px;
  }

  .donate-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .donate-card {
    width: 100%;
    padding: 22px;
    border-radius: 20px;
  }

  .card-subtitle {
    font-size: .85rem;
    margin-bottom: 22px;
  }

  .donate-form {
    gap: 14px;
  }

  .input-group input,
  .input-group select {
    height: 56px;
    padding: 0 48px;
    font-size: 14px;
    border-radius: 14px;
  }

  .input-icon {
    left: 17px;
  }

  .select-arrow {
    right: 16px;
  }

  .methods-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 25px;
  }

  .method-box {
    height: 72px;
    border-radius: 14px;
  }

  .method-box img,
  .method-img {
    max-width: 65px;
    max-height: 30px;
  }

  .method-box i {
    font-size: 28px;
  }

  .checkout-summary {
    padding-top: 20px;
    margin-top: 5px;
    margin-bottom: 22px;
  }

  .total-price {
    font-size: 24px;
  }

  .btn-submit {
    height: 56px;
    border-radius: 14px;
    font-size: 15px;
  }

  .terms-text {
    font-size: .78rem;
    line-height: 1.6;
    margin-top: 18px;
  }

  .footer {
    padding: 40px 16px 22px;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-info {
    width: 100%;
    max-width: 100%;
  }

  .footer-logo img {
    height: 38px;
  }

  .footer-desc {
    font-size: 11px;
    line-height: 1.6;
  }

  .footer-partners {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    justify-items: center;
  }

  .partner-item img {
    max-width: 100px;
    height: 25px;
  }

  .partner-item img[src*="sbp"] {
    height: 35px;
  }

  .footer-line {
    margin: 18px 0;
  }

  .legal-text {
    font-size: 9px;
    line-height: 1.6;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .footer-links {
    width: 100%;
    gap: 8px 12px;
  }

  .footer-links a {
    font-size: 10px;
  }

  .footer-social {
    margin-top: 12px;
  }

  .page-shell::after {
    width: 180px;
    height: 180px;
    left: -90px;
  }

  .bg-shapes span:nth-child(1) {
    width: 80px;
    height: 80px;
    right: 5%;
  }

  .bg-shapes span:nth-child(2) {
    width: 55px;
    height: 55px;
    left: 5%;
  }

  .bg-shapes span:nth-child(3) {
    width: 110px;
    height: 110px;
    right: 10%;
  }


  ::-webkit-scrollbar {
    width: 5px;
  }
}

@media (max-width: 380px) {

  .topbar {
    padding-left: 10px;
    padding-right: 10px;
  }

  .brand {
    font-size: .9rem;
  }

  .wallet-btn {
    padding: 7px 9px;
    font-size: 10px;
  }

  .social-link {
    width: 32px;
    height: 32px;
  }

  .mobile-menu-btn {
    width: 34px;
    height: 34px;
  }

  .hero,
  .news-section,
  .about-section,
  .start-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .donate-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .donate-card {
    padding: 18px;
  }

  .gallery-grid {
    gap: 7px;
  }
}


.news-card .news-image { margin: -22px -22px 16px; width: calc(100% + 44px); }
