@import url('https://fonts.googleapis.com/css2?family=Amarante&family=Nova+Square&display=swap');
:root {
    --main-bg: #221822;
    --secondary-bg: #29203a;
    --accent: #ef4444;
    --text: #f1eded;
    --muted: #aaa;
}

body {
    margin: 0;
    background: var(--main-bg);
    color: var(--text);
    overflow-x: hidden;
    font-family: "Amarante", serif;
    font-weight: 400;
    font-style: normal;
}
html {
  overflow-x: hidden;
}
.game-header {
    background: #19101d;
    width: 100%;
    box-shadow: 0 2px 18px #0002;
    position: relative;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 96px;
}

.header-logo img {
    height: 65px;
    display: block;
}

.header-nav {
    display: flex;
    gap: 40px;
    align-items: center;
    position: relative;
}

.header-nav a {
    color: #eee;
    text-decoration: none;
    font-size: 1.13rem;
    font-weight: bold;
    position: relative;
    padding: 8px 0;
    transition: color 0.2s;
}
.header-nav a:hover,
.header-nav a.active {
    color: #ff3c6e;
}

.header-nav a.active::after {
    content: '';
    display: block;
    height: 3px;
    border-radius: 2px;
    background: #ff3c6e;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
}

.header-socials {
    display: flex;
    gap: 14px;
}
.social-btn img {
    width: 32px;
    height: 32px;
    opacity: 0.88;
    transition: opacity 0.15s, transform 0.15s;
}
.social-btn:hover img {
    opacity: 1;
    transform: scale(1.08);
}

.header-underline {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #f90087 0%, #f97316 100%);
    margin: 0;
    box-shadow: 0 2px 8px #f9008722;
    position: absolute;
    left: 0; right: 0; bottom: 0;
}

@media (max-width: 900px) {
    .header-inner {
        flex-direction: column;
        height: auto;
        gap: 14px;
        padding: 16px 10px;
        align-items: flex-start;
    }
    .header-logo img {
        height: 46px;
    }
    .header-nav {
        gap: 18px;
        font-size: 0.99rem;
    }
    .header-socials .social-btn img {
        width: 26px;
        height: 26px;
    }
}
.main-section {
    text-align: center;
    margin-top: 90px;
    padding: 100px 0 60px;
    background: linear-gradient(180deg, var(--main-bg) 60%, var(--secondary-bg) 100%);
}
.main-section h1 {
      font-family: "Amarante", serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 1px;
}
.cta-btn {
    background: var(--accent);
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 7px;
    padding: 18px 46px;
    box-shadow: 0 2px 14px #ef444422;
    cursor: pointer;
    transition: background 0.15s, box-shadow 0.2s;
}
.cta-btn:hover {
    background: #d73030;
    box-shadow: 0 4px 24px #ef444466;
}
.news-block {
    background: #29203a31;
    padding: 40px 0;
    margin-top: 0;
}
.news-block h2 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-left: 12vw;
    margin-bottom: 16px;
}
.news-list {
    margin-left: 12vw;
    font-size: 1.05rem;
}
.news-list li {
    margin-bottom: 10px;
    color: var(--text);
}
.footer {
    background: #181118;
    text-align: center;
    color: var(--muted);
    font-size: 0.96rem;
    padding: 24px 0 12px;
    margin-top: 0;
}
.footer-note {
    font-size: 0.82em;
}

/* Responsive styles */
@media (max-width: 650px) {
    .main-section h1 {
        font-size: 2rem;
    }
    .cta-btn {
        font-size: 1rem;
        padding: 12px 22px;
    }
    .news-block, .footer {
        font-size: 0.92rem;
    }
    .news-block h2, .news-list {
        margin-left: 2vw;
    }
}
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.85em;
    opacity: 0.7;
    margin-left: 2px;
}

.dropdown-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    background: #221822;
    border-radius: 12px;
    box-shadow: 0 8px 32px #000a;
    min-width: 200px;
    padding: 12px 0;
    z-index: 99;
    transition: opacity 0.18s;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.08rem;
    font-family: inherit;
    padding: 12px 32px;
    display: block;
    border-radius: 8px;
    transition: background 0.13s;
}
.dropdown-menu a:hover {
    background: #ff3c6e;
    color: #fff;
}

/* Важно! Меню открывается при наведении на dropdown или на меню */
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    display: flex;
    pointer-events: auto;
}
@media (max-width: 650px) {
    .header-nav {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        min-width: unset;
        padding: 0;
        border-radius: 0;
        background: transparent;
    }
    .dropdown-menu a {
        padding: 10px 20px;
    }
}
.slider-section {
    margin: 0 auto;
    max-width: 1200px;
    padding: 40px 0 30px 0;
    background: linear-gradient(120deg, #1d1422 60%, #2a1633 100%);
    border-radius: 24px;
    box-shadow: 0 8px 36px #000a;
    margin-bottom: 36px;
}
.slider {
    display: flex;
    justify-content: space-between;
    gap: 36px;
    align-items: flex-start;
}
.slide {
    flex: 1 1 0;
    background: #1d1b24;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px #000a;
    transition: transform 0.23s;
    position: relative;
}
.slide:hover {
    transform: translateY(-7px) scale(1.04);
    box-shadow: 0 8px 32px #d12e4a33;
}
.slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(0.84) contrast(1.16) saturate(1.4) grayscale(10%);
    border-bottom: 2px solid #ff3c6e;
}
.slide-text {
    padding: 20px 18px 26px 18px;
    color: #f1eded;
    text-align: center;
    display: block;
}
.slide-text h2 {
    color: #f3e84e;
    font-family: 'Orbitron', Arial, sans-serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.slide-text p {
    font-size: 1rem;
    line-height: 1.5;
    font-style: italic;
    color: #e9d8d8;
}
/* Responsive: Mobile style */
@media (max-width: 950px) {
    .slider {
        flex-direction: column;
        gap: 26px;
    }
    .slide img {
        height: 180px;
    }
    .slider-section {
        padding: 22px 0 20px 0;
    }
}
.main-banner {
    position: relative;
    width: 100vw;
    max-width: 1200px;
    margin: 0 auto 32px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.banner-img {
    width: 100%;
    max-width: 1200px;
    height: 340px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 8px 36px #d90036cc;
    transition: 
        transform 0.23s cubic-bezier(.55,-0.36,.57,1.54),
        filter 0.23s,
        box-shadow 0.22s;
    filter: brightness(0.93) contrast(1.03) saturate(1.2);
    position: relative;
    z-index: 1;
}

.banner-img:hover {
    animation: shake 0.6s infinite alternate, pulse 1.2s infinite alternate;
    filter: brightness(1.18) contrast(1.16) saturate(1.6) drop-shadow(0 0 24px #ff3c6eaa);
    box-shadow: 0 0 64px #ff3c6e, 0 4px 24px #2d1122cc;
}

@keyframes shake {
    0%   { transform: rotate(-2deg) scale(1); }
    100% { transform: rotate(2deg) scale(1.04); }
}
@keyframes pulse {
    0%   { filter: blur(0px);}
    100% { filter: blur(2.4px);}
}

.banner-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 24px 80px;
    background: linear-gradient(90deg, #ff3c6e 0%, #ef4444 100%);
    color: #fff;
    font-family: 'Orbitron', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: bold;
    border: none;
    border-radius: 18px;
    box-shadow: 0 4px 24px #d9003699;
    cursor: pointer;
    opacity: 0.97;
    z-index: 2;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px #d9003660;
    transition: 
        background 0.18s,
        transform 0.18s,
        opacity 0.18s;
}

.banner-btn:hover {
    opacity: 1;
    background: linear-gradient(90deg, #ff3c6e 10%, #f90087 100%);
    transform: translate(-50%, -50%) scale(1.08) rotate(-2deg);
    box-shadow: 0 0 32px #ff3c6e77;
}

/* Адаптив под мобилки */
@media (max-width: 700px) {
    .main-banner {
        min-height: 160px;
    }
    .banner-img {
        height: 130px;
        border-radius: 14px;
    }
    .banner-btn {
        padding: 12px 22px;
        font-size: 1.1rem;
        border-radius: 8px;
    }
}
.mosaic-section {
    margin: 0 auto 64px auto;
    max-width: 1600px;
    padding: 24px 0 8px 0;
    background: linear-gradient(90deg, #2b1a2c 70%, #3c1931 100%);
    border-radius: 30px;
    box-shadow: 0 6px 32px #1c022a99;
}

.mosaic-title {
    color: #ff3c6e;
    text-align: center;
    font-family: 'Orbitron', Arial, sans-serif;
    font-size: 2.2rem;
    margin-bottom: 36px;
    letter-spacing: 2px;
    text-shadow: 0 2px 16px #1e0a1e99;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 210px;
    gap: 18px;
    padding: 0 32px 30px 32px;
}

.mosaic-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 18px #0008;
    cursor: pointer;
    transition: transform 0.22s, box-shadow 0.22s;
    background: #201725;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.mosaic-item:hover {
    transform: scale(1.045) rotate(-1.5deg);
    box-shadow: 0 8px 32px #ff3c6e88, 0 2px 16px #ff3c6e44;
    z-index: 2;
}

.mosaic-icon {
    margin-bottom: 20px;
}
.mosaic-icon img {
    width: 66px;
    height: 66px;
    filter: drop-shadow(0 2px 16px #ff3c6e66) brightness(1.12) contrast(1.2);
    transition: filter 0.18s, transform 0.22s;
}
.mosaic-item:hover .mosaic-icon img {
    filter: drop-shadow(0 6px 26px #ff3c6ecc) brightness(1.25) contrast(1.35);
    transform: scale(1.18) rotate(-7deg);
}

.mosaic-text {
    color: #fff;
    text-align: center;
    font-family: 'Orbitron', Arial, sans-serif;
    text-shadow: 0 1px 8px #000a;
    z-index: 3;
}
.mosaic-text h3 {
    margin: 0 0 6px 0;
    font-size: 1.22rem;
    text-transform: uppercase;
    color: #ff3c6e;
    letter-spacing: 1.5px;
}
.mosaic-text span {
    font-size: 0.99rem;
    color: #f1eded;
    font-family: 'Roboto', Arial, sans-serif;
    letter-spacing: 1px;
}

.item-big {
    grid-row: span 2;
}
.item-wide {
    grid-column: span 2;
}
.mosaic-icon i {
    font-size: 56px;
    color: #ff3c6e;
    text-shadow: 0 3px 16px #ff3c6e88, 0 1px 4px #1a0a1a;
    transition: 
        color 0.18s,
        transform 0.2s,
        text-shadow 0.2s;
    filter: drop-shadow(0 2px 16px #ff3c6e44) brightness(1.18) contrast(1.2);
}
.mosaic-item:hover .mosaic-icon i {
    color: #f90087;
    transform: scale(1.22) rotate(-7deg);
    text-shadow: 0 8px 36px #ff3c6ecc, 0 1px 6px #f90087;
    filter: drop-shadow(0 6px 26px #ff3c6ecc);
}
@media (max-width: 1100px) {
    .mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 190px;
        padding: 0 6vw 22px 6vw;
    }
    .item-big,
    .item-wide {
        grid-column: span 2;
        grid-row: span 1;
    }
}
@media (max-width: 700px) {
    .mosaic-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 160px;
        gap: 13px;
        padding: 0 1vw 16px 1vw;
    }
    .item-big,
    .item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    .mosaic-section {
        border-radius: 14px;
        padding: 10px 0 5px 0;
    }
}
.lore-section {
    width: 100%;
    background: linear-gradient(90deg, #1a0a17 85%, #3a0a23 100%);
    border-radius: 24px;
    box-shadow: 0 8px 36px #22041a88;
    margin: 48px 0 64px 0;
    padding: 32px 0;
}

.lore-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 36px;
    padding: 0 32px;
}

.lore-icon {
    font-size: 74px;
    color: #ff3c6e;
    text-shadow: 0 4px 24px #ff3c6e77;
    flex-shrink: 0;
    animation: lore-shake 2.5s infinite alternate;
}

@keyframes lore-shake {
    0%   { transform: rotate(-4deg) scale(1);}
    100% { transform: rotate(4deg) scale(1.09);}
}

.lore-text {
    color: #f1eded;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1.24rem;
    line-height: 1.6;
    letter-spacing: 0.2px;
    text-shadow: 0 2px 12px #000a;
}

.lore-title {
    font-family: 'Orbitron', Arial, sans-serif;
    color: #ff3c6e;
    font-size: 2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-shadow: 0 2px 16px #1e0a1e99;
}

.lore-text .highlight {
    color: #f90087;
    font-weight: bold;
    letter-spacing: 1.5px;
    font-size: 1.1em;
}

@media (max-width: 800px) {
    .lore-inner {
        flex-direction: column;
        gap: 14px;
        padding: 0 8vw;
        text-align: center;
    }
    .lore-icon {
        font-size: 56px;
        margin-bottom: 10px;
    }
}
.hud-offer-section {
    width: 100%;
    background: #3c1931;
    padding: 68px 0 74px 0;
    box-sizing: border-box;
}

.hud-offer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 72px;
    padding: 0 4vw;
}

.hud-offer-left {
    flex: 1.25;
}

.hud-offer-left h2 {
    color: #fff239;
    font-family: 'Orbitron', Arial, sans-serif;
    font-size: 3.2rem;
    margin-bottom: 36px;
    line-height: 1.1;
    letter-spacing: 0.3px;
    font-weight: 600;
}

.hud-offer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 40px;
}

.hud-offer-list li {
    font-size: 1.25rem;
    color: #f4f4f4;
    display: flex;
    align-items: center;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    gap: 12px;
    letter-spacing: 0.3px;
}

.hud-check {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #151215;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: #ff7839;
    font-size: 1.32rem;
    box-shadow: 0 2px 8px #d3ff3944;
}

.hud-offer-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hud-img-frame {
    position: relative;
    display: inline-block;
    background: #191919;
    border-radius: 14px;
    box-shadow: 0 6px 36px #0c140899, 0 0 0 5px #151215;
    overflow: hidden;
    width: 510px;
    height: 370px;
}

.hud-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(1.12) contrast(1.08) saturate(1.15);
}

.hud-square {
    position: absolute;
    top: 12px; left: 16px;
    width: 14px; height: 14px;
    background: #ffca39;
    border-radius: 2px;
    box-shadow: 0 2px 12px #d3ff393a;
    z-index: 2;
    animation: blink-cube 1.7s infinite alternate;
}
@keyframes blink-cube {
    0% { opacity: 1;}
    100% { opacity: 0.52;}
}

@media (max-width: 950px) {
    .hud-offer-inner {
        flex-direction: column;
        gap: 48px;
        padding: 0 2vw;
    }
    .hud-img-frame { width: 96vw; height: 230px; max-width: 430px;}
    .hud-offer-left h2 { font-size: 2.1rem;}
    .hud-offer-list li { font-size: 1.02rem;}
}


.gallery-slider-section {
  position: relative;
  padding: 72px 0 54px;
  width: 100vw;
  overflow: hidden;
  background: radial-gradient(circle at 55% 40%, #2a162f 35%, #0d060d 100%);
  font-family: 'Orbitron', Arial, sans-serif;
  color: #fff;
  user-select: none;
  box-sizing: border-box;
}

.gallery-slider-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 40px;
  text-shadow: 0 0 12px #ff3c6e;
  position: relative;
  z-index: 3;
}

.gallery-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 3;
}

.gallery-slider-track {
  display: flex;
  gap: 44px;
  transition: transform 0.6s cubic-bezier(.7,-0.19,.6,1.3);
  will-change: transform;
  overflow: visible;
}

.gallery-slide {
  width: 340px;
  height: 440px;
  background: #180f1a;
  border-radius: 26px;
  box-shadow: 0 6px 38px #ff3c6e22, 0 2px 12px #000a;
  opacity: 0.33;
  filter: blur(4px) grayscale(0.8) brightness(0.8);
  transform: scale(0.85);
  transition: all 0.55s cubic-bezier(.7,-0.19,.6,1.3);
  pointer-events: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.gallery-slide.center {
  opacity: 1;
  filter: none;
  transform: scale(1.18);
  box-shadow: 0 16px 62px #ff3c6ecc, 0 8px 28px #2a1122;
  pointer-events: auto;
  z-index: 5;
}

.gallery-slide.left,
.gallery-slide.right {
  opacity: 0.77;
  filter: blur(0.5px) grayscale(0.22) brightness(0.96);
  transform: scale(0.97);
  pointer-events: auto;
  z-index: 2;
}

.gallery-slide img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 26px 26px 0 0;
  filter: brightness(1.08) contrast(1.18) saturate(1.19);
  pointer-events: none;
  user-select: none;
}

.gallery-slide-caption {
  background: #2a1122cc;
  padding: 17px 0;
  text-align: center;
  font-size: 1.13rem;
  font-family: 'Orbitron', Arial, sans-serif;
  color: #fff;
  border-radius: 0 0 22px 22px;
  border-top: 1px solid #ff3c6e33;
  min-height: 48px;
  text-shadow: 0 2px 18px #1e0a1e, 0 1px 2px #ff3c6e55;
  user-select: none;
}

/* Стрелки */
.gallery-arrow {
  background: rgba(38,18,49,0.7);
  border: none;
  color: #ff3c6e;
  font-size: 2.7rem;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  cursor: pointer;
  box-shadow: 0 4px 24px #891a3930;
  transition: background 0.2s, color 0.2s;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.gallery-arrow:hover {
  background: #ff3c6e;
  color: #fff;
}

.gallery-arrow.left {
  margin-right: 16px;
}

.gallery-arrow.right {
  margin-left: 16px;
}

/* Точки */
.gallery-slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  user-select: none;
  position: relative;
  z-index: 5;
}

.gallery-slider-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #6d3460;
  box-shadow: 0 2px 12px #ff3c6e52;
  border: 2px solid #ff3c6e55;
  cursor: pointer;
  transition: background 0.18s, border 0.18s;
}

.gallery-slider-dot.active {
  background: #ff3c6e;
  border: 2px solid #fff;
}

/* Адаптив */

@media (max-width: 900px) {
  .gallery-slider-track {
    gap: 24px;
  }
  .gallery-slide {
    width: 240px;
    height: 320px;
  }
  .gallery-slide img {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .gallery-slider-track {
    gap: 12px;
  }
  .gallery-slide {
    width: 90vw;
    min-width: 90vw;
    max-width: 90vw;
    height: auto;
  }
  .gallery-slide img {
    height: auto;
  }
}
.creative-text-block {
  max-width: 900px;
  margin: 60px auto 80px;
  padding: 30px 24px;
  color: #f1eded;
  font-family: 'Orbitron', Arial, sans-serif;
}

.creative-text-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.title {
  flex: 1 1 200px;
  font-size: 2.8rem;
  color: #ff3c6e;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.content {
  flex: 2 1 500px;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.5;
}

.content p {
  margin: 0;
}

.highlight {
  flex-basis: 100%;
  margin-top: 24px;
  font-weight: 600;
  color: #ff3c6e;
  font-size: 1.2rem;
  text-align: center;
}
.footer {
  background: #19101d;
  color: #ddd;
    font-family: "Amarante", serif;
  padding: 40px 20px 20px;
  user-select: none;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-contact,
.footer-links,
.footer-socials {
  flex: 1 1 250px;
}

.footer h3 {
  color: #f3e84e;
   font-family: "Amarante", serif;
  margin-bottom: 16px;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.footer-contact p,
.footer-links ul {
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-contact a,
.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover,
.footer-links a:hover {
  color: #f3e84e;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.footer-links li {
  min-width: 100px;
}

.footer-socials .social-icon {
  display: inline-block;
  background: #2a1122;
  color: #f3e84e;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.1rem;
  margin-right: 12px;
  transition: background 0.3s;
  cursor: pointer;
  user-select: none;
}

.footer-socials .social-icon:hover {
  background: #f3e84e;
  color: #fff;
}

.footer-bottom {
  text-align: center;
  color: #777;
  font-size: 0.85rem;
  margin-top: 30px;
  user-select: none;
}

/* Мобильный адаптив */
@media (max-width: 700px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  .footer-links ul {
    gap: 12px 18px;
  }
}
.footer-socials .social-icon img {
  width: 32px;    /* Размер иконки */
  height: 32px;
  display: block;
  filter: brightness(0) invert(1); /* Чтобы иконки светились в стиле сайта, можно настроить фильтр */
  transition: filter 0.3s;
}

.footer-socials .social-icon:hover img {
  filter: brightness(0) invert(1) drop-shadow(0 0 6px #ff3c6e);
}
.gameplay-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #eee;
  text-align: center;
}

.gameplay-section h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #ff3c6e;
  text-shadow: 0 0 12px #ff3c6eaa;
}

.gameplay-intro {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #ccc;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gameplay-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 28px;
}

.gameplay-item {
  background: #20172a;
  border-radius: 20px;
  box-shadow: 0 4px 24px #ff3c6e33;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gameplay-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px #ff3c6ecc;
}

.gameplay-item img {
  width: 100%;
  border-radius: 20px 20px 0 0;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.gameplay-item h2 {
  margin: 18px 0 10px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  color: #ff3c6e;
}

.gameplay-item p {
  font-size: 1rem;
  line-height: 1.5;
  padding: 0 20px;
  color: #ccc;
  flex-grow: 1;
  margin-bottom: 15px;
}

.btn-details {
  display: inline-block;
  padding: 8px 22px;
  background-color: #ff3c6e;
  color: white;
  border-radius: 12px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 0 10px #ff3c6e88;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-details:hover {
  background-color: #f90087;
  box-shadow: 0 0 15px #f9008788;
}

/* Адаптив для мобильных */

@media (max-width: 650px) {
  .gameplay-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .gameplay-item h2 {
    font-size: 1.4rem;
  }
  .btn-details {
    font-size: 0.9rem;
    padding: 7px 20px;
  }
}
/* Основные стили для секции подробного геймплея */
.gameplay-detail-section {
  max-width: 1000px;
  margin: 60px auto 80px;
  padding: 0 20px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #f1eded;
  background: linear-gradient(135deg, #1d1422 0%, #2a1633 100%);
  border-radius: 24px;
  box-shadow: 0 12px 48px #ff3c6e55;
  padding: 40px;
  box-sizing: border-box;
  user-select: none;
}

/* Заголовок страницы */
.gameplay-detail-section > h1 {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 2.8rem;
  text-align: center;
  color: #ff3c6e;
  margin-bottom: 48px;
  text-shadow: 0 0 16px #f90087;
}

/* Блоки описания */
.gameplay-block {
  margin-bottom: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

/* Заголовки блоков */
.gameplay-block h2 {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.8rem;
  color: #f97316;
  flex-basis: 100%;
  margin-bottom: 16px;
  text-shadow: 0 0 12px #f97316aa;
}

/* Текст описания */
.gameplay-block p {
  font-size: 1.1rem;
  line-height: 1.6;
  flex: 1 1 320px;
  color: #ddd;
  text-shadow: 0 0 6px #00000080;
}

/* Изображение */
.gameplay-block img {
  flex: 1 1 320px;
  border-radius: 18px;
  box-shadow: 0 8px 24px #ff3c6e88;
  object-fit: cover;
  max-height: 220px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gameplay-block img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 48px #ff3c6ecc;
}

/* Мобильная адаптация */
@media (max-width: 720px) {
  .gameplay-block {
    flex-direction: column;
    gap: 24px;
  }
  .gameplay-block img,
  .gameplay-block p {
    flex-basis: 100%;
  }
  .gameplay-detail-section > h1 {
    font-size: 2rem;
  }
}

/* Стили для футера, чтобы гармонировал */
.footer {
  background: #19101d;
  color: #aaa;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.9rem;
  padding: 32px 20px;
  text-align: center;
  user-select: none;
  box-shadow: 0 -4px 16px #ff3c6e33 inset;
}
.footer a {
  color: #f90087;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s ease;
}
.footer a:hover {
  color: #ff3c6e;
}
.gameplay-tips {
  max-width: 1000px;
  margin: 60px auto 80px;
  padding: 40px 30px;
  background: #2a112244;
  border-radius: 30px;
  box-shadow: 0 0 30px #ff3c6e44;
  color: #f0e6f2;
  font-family: 'Roboto', Arial, sans-serif;
  user-select: none;
  text-align: center;
  position: relative;
}

.gameplay-tips h2 {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 2.4rem;
  margin-bottom: 36px;
  color: #d46274;
  text-shadow: 0 0 8px #d46274aa;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
  margin-bottom: 38px;
}

.tip-item {
  background: #1f1523;
  border-radius: 22px;
  padding: 24px 20px;
  box-shadow: 0 0 10px #d4627444;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: left;
  transition: transform 0.25s ease;
  cursor: default;
  color: #cfc1d1;
}

.tip-item:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px #d46277aa;
}

.tip-item.highlight {
  background: #d4627440;
  box-shadow: 0 0 25px #d4627744;
  color: #f4e8f3;
}

.tip-item.highlight h3 {
  color: #bb5061;
  text-shadow: 0 0 5px #bb506177;
}

.tip-item h3 {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: #d9c7db;
  letter-spacing: 1.1px;
}

.tip-item.large-text {
  grid-column: span 2;
  font-weight: 600;
  font-size: 1.15rem;
  background: #3e2c3d;
  color: #e5d1e1;
  padding: 30px 28px;
  text-align: center;
  box-shadow: 0 0 30px #d4627744;
}

.btn-more {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 700;
  font-family: 'Orbitron', Arial, sans-serif;
  color: #bb5061;
  background: transparent;
  border: 2px solid #bb5061;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-more:hover {
  background: #bb5061;
  color: #fff;
}

@media (max-width: 800px) {
  .tips-grid {
    grid-template-columns: 1fr;
  }
  .tip-item.large-text {
    grid-column: span 1;
  }
}

.gameplay-info-block {
  max-width: 1100px;
  margin: 80px auto 100px;
  padding: 40px 30px;
  background: #2a112244;
  border-radius: 30px;
  box-shadow: 0 0 40px #d4627744;
  color: #e5d1e1;
  font-family: 'Roboto', Arial, sans-serif;
  user-select: none;
}

.gameplay-info-block h2 {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 2.6rem;
  margin-bottom: 50px;
  text-align: center;
  color: #d46274;
  text-shadow: 0 0 10px #d46274bb;
}

.info-section {
  margin-bottom: 40px;
}

.info-section h3 {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.9rem;
  color: #bb5061;
  margin-bottom: 18px;
  text-shadow: 0 0 8px #bb506177;
}

.info-section ul {
  list-style-type: disc;
  margin-left: 28px;
  color: #d9c7db;
  font-size: 1.1rem;
  line-height: 1.6;
}

.info-section ul ul {
  list-style-type: circle;
  margin-left: 20px;
  color: #c1a9b9;
  font-size: 1rem;
}

.info-section ul li {
  margin-bottom: 10px;
}

/* Мобильная адаптация */
@media (max-width: 720px) {
  .gameplay-info-block {
    padding: 30px 16px;
    margin: 40px auto 60px;
  }
  .gameplay-info-block h2 {
    font-size: 2rem;
  }
  .info-section h3 {
    font-size: 1.5rem;
  }
  .info-section ul {
    margin-left: 20px;
    font-size: 1rem;
  }
  .info-section ul ul {
    font-size: 0.9rem;
  }
}
.update-intro {
  max-width: 900px;
  margin: 60px auto 40px;
  text-align: center;
  color: #f1eded;
  font-family: 'Roboto', Arial, sans-serif;
}
.update-intro h1 {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 3rem;
  color: #f2ff3c;
  margin-bottom: 16px;
  text-shadow: 0 0 18px #f2ff3c;
}
.update-intro p {
  font-size: 1.15rem;
  color: #ccc;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.5;
}

.update-patches {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.patch-card {
  background: #291a2e;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 6px 30px #ff3c6e44;
  color: #f1eded;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s ease;
  cursor: default;
}

.patch-card:hover {
  box-shadow: 0 8px 44px #f2ff3c;
}

.patch-card h2 {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: #f2ff3c;
  letter-spacing: 1.2px;
}

.patch-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #ddd;
  flex-grow: 1;
}

.btn-update {
  margin-top: 22px;
  font-family: 'Orbitron', Arial, sans-serif;
  font-weight: 700;
  color: #f2ff3c;
  text-decoration: none;
  padding: 10px 18px;
  border: 2px solid #f2ff3c;
  border-radius: 28px;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-update:hover {
  background: #f2ff3c;
  color: #fff;
}

.update-news {
  max-width: 900px;
  margin: 0 auto 40px;
  color: #ccc;
  font-family: 'Roboto', Arial, sans-serif;
}

.update-news h2 {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 2rem;
  color: #f2ff3c;
  margin-bottom: 16px;
  text-align: center;
}

.update-news ul {
  list-style: none;
  padding-left: 0;
  max-width: 640px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.5;
}

.update-news li {
  padding: 8px 0;
  border-bottom: 1px solid #ff3c6e22;
}

.update-feedback {
  max-width: 700px;
  margin: 0 auto 80px;
  font-style: italic;
  color: #ddd;
  font-family: 'Roboto', Arial, sans-serif;
  text-align: center;
}

.update-feedback h2 {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 2rem;
  color: #f2ff3c;
  margin-bottom: 18px;
}

.update-feedback blockquote {
  border-left: 4px solid #f2ff3c;
  padding-left: 20px;
  margin: 16px 0;
  font-size: 1.1rem;
  color: #f9f1f6;
}
/* Базовые стили */

.update-main-banner {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  border-radius: 30px;
  margin: 50px 0 40px;
  box-shadow: 0 0 10px #aab84455; /* мягкая тень */
}

.update-banner-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 30px;
}

.update-main-text {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
  font-family: 'Roboto', Arial, sans-serif;
  color: #d9d9b3; /* приглушённый светло-жёлтый */
  user-select: none;
}

.update-main-text h1 {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 3rem;
  color: #aabb33; /* спокойный зелёно-жёлтый */
  margin-bottom: 16px;
  text-shadow: none;
}

.update-main-text p {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  color: #cfcf9c;
}

.update-main-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px 36px;
  max-width: 1100px;
  margin: 0 auto 70px;
  padding: 0 20px;
}

.update-block {
  background: #29261e;
  border-radius: 24px;
  box-shadow: 0 0 12px #aabb3355;
  padding: 28px 22px;
  color: #d9d9b3;
  cursor: default;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.update-block:hover {
  box-shadow: 0 0 18px #aabb33aa;
}

.update-block h2 {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.5rem;
  color: #aabb33;
  margin-bottom: 12px;
  letter-spacing: 1.2px;
}

.update-block p {
  font-size: 1rem;
  line-height: 1.4;
  color: #d9d9b3;
  flex-grow: 1;
}

.btn-update {
  margin-top: 22px;
  font-family: 'Orbitron', Arial, sans-serif;
  font-weight: 700;
  color: #aabb33;
  text-decoration: none;
  padding: 10px 18px;
  border: 2px solid #aabb33;
  border-radius: 28px;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
  display: inline-block;
  user-select: none;
  align-self: center;
}

.btn-update:hover {
  background: #aabb33;
  color: #222;
}

.update-statistics {
  max-width: 1000px;
  margin: 0 auto 80px;
  text-align: center;
  font-family: 'Roboto', Arial, sans-serif;
  color: #aabb33;
  user-select: none;
}

.update-statistics h2 {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 2.6rem;
  margin-bottom: 40px;
  text-shadow: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(160px, 1fr));
  gap: 28px 40px;
}

.stat-item {
  background: #29261d;
  padding: 30px 20px;
  border-radius: 24px;
  box-shadow: 0 0 12px #aabb3355;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-item:hover {
  box-shadow: 0 0 18px #aabb33aa;
}

.stat-number {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 2rem;
  margin-bottom: 6px;
  color: #aabb33;
  text-shadow: none;
}

.stat-text {
  font-size: 1.1rem;
  color: #cfcf9c;
  text-align: center;
}

/* --- Адаптив под мобильные --- */

@media (max-width: 700px) {
  .update-main-banner {
    max-height: 260px;
    margin: 30px 10px 30px;
  }
  .update-main-text {
    padding: 0 12px;
    margin-bottom: 40px;
  }
  .update-main-text h1 {
    font-size: 1.9rem;
  }
  .update-main-text p {
    font-size: 1rem;
    max-width: 100%;
    line-height: 1.4;
  }
  .update-main-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
    margin-bottom: 50px;
  }
  .update-block {
    padding: 20px 16px;
  }
  .update-block h2 {
    font-size: 1.25rem;
  }
  .update-block p {
    font-size: 0.95rem;
  }
  .btn-update {
    font-size: 1rem;
    padding: 8px 16px;
    margin-top: 16px;
  }
  .update-statistics {
    padding: 0 12px;
    margin-bottom: 60px;
  }
  .update-statistics h2 {
    font-size: 1.8rem;
    margin-bottom: 28px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
  }
  .stat-item {
    padding: 20px 14px;
  }
  .stat-number {
    font-size: 2rem;
  }
  .stat-text {
    font-size: 1rem;
  }
}

@media (max-width: 400px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.update-middle-image {
  max-width: 900px;
  margin: 40px auto 60px;
  text-align: center;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 0 20px #aabb3355; /* лёгкая тень */
}

.update-middle-image img {
  width: 100%;
  height: auto;
  display: inline-block;
  border-radius: 30px;
  object-fit: cover;
}

/* Адаптив */
@media (max-width: 700px) {
  .update-middle-image {
    margin: 30px 15px 40px;
  }
}

.update-info-section {
  background: #1a0a1a;
  padding: 50px 20px;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1100px;
  color: #f2ff3c; /* твой основной желтый */
  font-family: 'Orbitron', Arial, sans-serif;
  text-align: center;
  box-shadow: 0 0 30px #f2ff3c22;
}

.update-info-section h2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.info-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.info-item {
  flex: 1 1 280px;
  background: #2a1122;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 20px #f2ff3c44;
  transition: background 0.3s ease;
  cursor: default;
}

.info-item:hover {
  background: #3b1933;
}

.info-item img {
  width: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 6px #f2ff3caa);
}

.info-item h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #f2ff3c;
}

.info-item p {
  font-size: 1rem;
  line-height: 1.5;
  color: #e8e847cc;
}

/* Мобильная адаптация */
@media (max-width: 700px) {
  .info-grid {
    flex-direction: column;
    gap: 25px;
  }
}
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  background-color: #2a1122; /* Темный фон, как у сайта */
  color: #f2ff3c; /* Основной желтый цвет сайта */
  padding: 15px 20px;
  border-radius: 14px;
  box-shadow: 0 0 20px #ff3c6e88; /* Легкое розовое свечение */
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  user-select: none;
}

.cookie-banner p {
  margin: 0;
  flex-grow: 1;
  padding-right: 15px;
  line-height: 1.3;
}

.cookie-banner a {
  color: #ff3c6e;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-banner a:hover {
  color: #f90087;
}

.cookie-banner button {
  background-color: #ff3c6e;
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 0 12px #ff3c6ecc;
  transition: background 0.3s ease;
  user-select: none;
}

.cookie-banner button:hover {
  background-color: #f90087;
}
#scroll-top-btn {
  position: fixed;
  bottom: 80px;
  right: 30px;
  background: #ff3c6e;
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 0 12px #ff3c6eaa;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

#scroll-top-btn.show {
  opacity: 1;
  pointer-events: auto;
}

#scroll-top-btn:hover {
  background: #d73030;
}
.contact-section {
  max-width: 700px;
  margin: 60px auto 80px;
  padding: 20px;
  background: linear-gradient(135deg, #1d1422 0%, #2a1633 100%);
  border-radius: 24px;
  box-shadow: 0 12px 48px #ff3c6e55;
  color: #f1eded;
  font-family: 'Roboto', Arial, sans-serif;
  user-select: none;
  text-align: center;
}

.contact-section h1 {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #ff3c6e;
  text-shadow: 0 0 12px #ff3c6eaa;
}

.contact-info {
  display: flex;
  justify-content: space-around;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-info div {
  flex: 1 1 200px;
}

.contact-info h3 {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.4rem;
  color: #f2ff3c;
  margin-bottom: 8px;
}

.contact-info p {
  font-size: 1rem;
  color: #ccc;
  user-select: text;
}

form#contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 100%;
}

form#contact-form h2 {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 2rem;
  color: #f2ff3c;
  margin-bottom: 16px;
}

form#contact-form input,
form#contact-form textarea {
  padding: 12px 15px;
  border-radius: 14px;
  border: none;
  background: #2a1122;
  color: #f1eded;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  resize: vertical;
  transition: box-shadow 0.3s ease;
}

form#contact-form input:focus,
form#contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 12px #ff3c6eaa;
  background: #3b1933;
}

form#contact-form button {
  padding: 14px 0;
  font-family: 'Orbitron', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #222;
  background: #aabb33; /* спокойный зелёный */
  border: none;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 0 12px #aabb3355; /* слабое свечение */
}

form#contact-form button:hover {
  background: #889922;
  box-shadow: 0 0 18px #889922cc;
}

#form-message {
  margin-top: 12px;
  font-size: 1.1rem;
  color: #889922;
  font-weight: 600;
  text-shadow: none;
}

.hidden {
  display: none;
}

/* Мобильный адаптив */
@media (max-width: 600px) {
  .contact-info {
    flex-direction: column;
    gap: 30px;
  }
}
.gallery-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Orbitron', Arial, sans-serif;
  color: #fff;
}

.gallery-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #ff3c6e;
  text-shadow: 0 0 12px #ff3c6e;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.gallery-item {
  background: #180f1a;
  border-radius: 20px;
  box-shadow: 0 6px 26px #ff3c6e55;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px #ff3c6ecc;
  z-index: 2;
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: brightness(1.1) contrast(1.2);
  border-radius: 20px 20px 0 0;
  user-select: none;
}

.gallery-caption {
  background: #2a1122cc;
  color: #fff;
  font-size: 1.2rem;
  padding: 18px 12px;
  text-align: center;
  border-radius: 0 0 20px 20px;
  box-shadow: inset 0 1px 0 #ff3c6e33;
  user-select: none;
}

/* Лайтбокс */

.lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20, 10, 20, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
  padding: 20px;
  user-select: none;
}

.lightbox.hidden {
  display: none;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 20px;
  box-shadow: 0 0 40px #ff3c6e;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: #ff3c6e;
  font-size: 3.5rem;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.2s ease;
  user-select: none;
}

.lightbox-close {
  top: 20px;
  right: 30px;
}

.lightbox-prev {
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
}

.lightbox-next {
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: #fff;
}

/* Адаптив */

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gallery-item img {
    height: 200px;
  }
  .gallery-caption {
    font-size: 1rem;
  }
  .lightbox-img {
    max-width: 95vw;
    max-height: 70vh;
  }
  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    font-size: 2.5rem;
  }
}
.about-company-section {
  background: linear-gradient(135deg, #fb164566  0%, #3e4549 100%);
  padding: 60px 20px;
  color: #e3e6f3;
  font-family: 'Roboto', Arial, sans-serif;
  user-select: none;
}

.about-company-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.about-company-text {
  flex: 1 1 480px;
}

.about-company-text h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  margin-bottom: 24px;
  color: #f0f4ff;
  text-shadow: 0 0 12px #2c2f60;
}

.about-company-text p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #d1d6f0;
}

.about-company-text ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 24px;
  color: #d1d6f0;
  font-size: 1.1rem;
  line-height: 1.5;
}

.about-company-text ul li {
  margin-bottom: 12px;
}

.about-company-text strong {
  color: #f0f4ff;
}

.about-company-image {
  flex: 1 1 480px;
  max-width: 480px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 36px #7289da88;
}

.about-company-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 18px;
  filter: brightness(1.05) contrast(1.1);
}

/* Мобильная адаптация */
@media (max-width: 900px) {
  .about-company-inner {
    flex-direction: column;
    text-align: center;
  }
  .about-company-text, .about-company-image {
    flex-basis: 100%;
    max-width: 100%;
  }
  .about-company-image {
    margin-top: 32px;
  }
  .about-company-text ul {
    padding-left: 0;
    list-style-position: inside;
  }
}
.company-achievements-section {
  background: linear-gradient(135deg, #5f6970 0%, #fb164566 100%);
  padding: 50px 20px 80px;
  color: #1e2030;
  font-family: 'Orbitron', sans-serif;
  user-select: none;
  text-align: center;
}

.company-achievements-inner {
  max-width: 900px;
  margin: 0 auto;
}

.company-achievements-inner h2 {
  font-size: 2.8rem;
  margin-bottom: 48px;
  color: #2c2f60;
  text-shadow: 0 0 8px #5660a7;
}

.achievements-grid {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  flex-wrap: wrap;
}

.achievement-item {
  background: #d1d6f0cc;
  border-radius: 24px;
  padding: 30px 20px;
  width: 180px;
  box-shadow: 0 0 18px #7289daaa;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.achievement-item:hover {
  background: #e6e9ff;
  box-shadow: 0 0 32px #7289daee;
}

.achievement-number {
  font-size: 3.2rem;
  font-weight: 900;
  color: #3a3f6f;
  margin-bottom: 12px;
}

.achievement-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #4c5074;
  letter-spacing: 0.7px;
}

/* Мобильная адаптация */
@media (max-width: 700px) {
  .achievements-grid {
    flex-direction: column;
    gap: 24px;
  }
  .achievement-item {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}
.faq-section {
  max-width: 900px;
  margin: 60px auto 100px;
  padding: 0 20px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #f1eded;
  user-select: none;
}

.faq-section h1 {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 2.8rem;
  color: #ff3c6e;
  margin-bottom: 40px;
  text-align: center;
  text-shadow: 0 0 14px #ff3c6eaa;
}

.faq-list {
  border-radius: 18px;
  background: #221822;
  box-shadow: 0 4px 24px #ff3c6e33;
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid #ff3c6e44;
}

.faq-question {
  width: 100%;
  background: #2a1122;
  color: #f1eded;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.3rem;
  padding: 20px 28px;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #ff3c6e;
  color: #fff;
}

.faq-question[aria-expanded="true"] {
  background: #ff3c6e;
  color: #fff;
}

.arrow {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  background: #3a1e3c;
  color: #f2c9d4;
  font-size: 1.1rem;
  line-height: 1.6;
  user-select: text;
  border-top: 1px solid #ff3c6e88;

  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

/* Когда раскрыто */
.faq-answer.show {
  padding: 20px 28px;
  max-height: 1000px; /* достаточно большой для содержимого */
}
.testimonials-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
  display: flex;
  justify-content: center;
}

.container {
  display: flex;
  gap: 60px;
  width: 100%;
}

.testimonials-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.testimonial {
  background: #f0e6f2;
  padding: 24px 32px;
  border-radius: 14px;
  box-shadow: 0 6px 12px rgba(128, 0, 128, 0.2);
  color: #3a0d5a;
  font-size: 1rem;
  line-height: 1.6;
}

.testimonial h4 {
  margin-top: 18px;
  font-weight: 700;
  color: #6a2a8e;
}

.stars {
  color: #d6a0ff;
  font-size: 1.2rem;
  margin-top: 6px;
}

.testimonials-right {
  flex: 1;
  color: #5a3e80;
  font-size: 1.1rem;
}

.testimonials-right h2 {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 2.8rem;
  color: #6a2a8e;
  margin-bottom: 10px;
}

.testimonials-right hr {
  border: none;
  border-bottom: 3px solid #d6a0ff;
  width: 60px;
  margin-bottom: 20px;
}

.testimonials-right p {
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Responsive for mobile */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
  }
  .testimonials-left, .testimonials-right {
    width: 100%;
  }
  .testimonial {
    font-size: 0.95rem;
    padding: 20px 24px;
  }
  .testimonials-right h2 {
    font-size: 2rem;
  }
}
.hero-banner {
  width: 100%;
  max-width: 1200px;
  margin: 30px auto 50px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 0 40px #ff3c6e88;
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.9) saturate(1.1);
  transition: filter 0.3s ease;
  border-radius: 30px;
}

.hero-banner img:hover {
  filter: brightness(1.1) saturate(1.3);
}

/* Мобильный адаптив */
@media (max-width: 700px) {
  .hero-banner {
    margin: 20px 10px 40px;
    border-radius: 16px;
    box-shadow: 0 0 20px #ff3c6e66;
  }
  .hero-banner img {
    border-radius: 16px;
  }
}

.agreement-dark {
  background: #19131e;
  border-radius: 18px;
  max-width: 1600px;
  margin: 48px auto 0 auto;
  box-shadow: 0 2px 20px 0 #0007;
  padding: 38px 36px 30px 36px;
  position: relative;
}

.agreement-dark h2 {
  color: #fff;
  text-align: center;
  letter-spacing: 0.17em;
  font-size: 2.2rem;
  margin-bottom: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

.agreement-content {
  border-left: 4px solid #9a7efc;
  padding-left: 28px;
  color: #f5f5f5;
  font-size: 1.14rem;
  line-height: 1.75;
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(90deg, rgba(154,126,252,0.05) 0%, transparent 60%);
  position: relative;
}

.agreement-dropcap {
  float: left;
  font-size: 2.7rem;
  font-weight: 700;
  color: #b299fa;
  line-height: 1;
  padding-right: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}

.agreement-content p {
  margin-top: 1em;
  margin-bottom: 0;
}

.agreement-content strong {
  color: #ae9cfd;
  font-weight: 700;
  letter-spacing: 0.03em;
}

@media (max-width: 700px) {
  .agreement-dark {
    padding: 14px 6vw 14px 4vw;
  }
  .agreement-content {
    padding-left: 13px;
    font-size: 1rem;
  }
  .agreement-dropcap {
    font-size: 2rem;
    padding-right: 5px;
  }
}
.agreement-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 28px auto 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(120deg, #1f1431 60%, #382b60 100%);
  box-shadow: 0 2px 10px 0 #10062566, 0 0 0 4px #9a7efc22;
  transition: transform 0.22s;
  font-size: 2.2rem;
}

.agreement-badge i {
  color: #b299fa;
  filter: drop-shadow(0 2px 6px #ae9cfd55);
}

.agreement-badge:hover {
  transform: scale(1.09) rotate(-3deg);
}
.donate-grid-section {
    max-width: 1280px;
    margin: 60px auto 80px auto;
    background: #201626;
    border-radius: 30px;
    box-shadow: 0 0 32px 4px #3d2441bb, 0 0 1px 1px #42213444 inset;
    padding: 46px 36px 38px 36px;
    color: #f3efe6;
}

.donate-grid-title {
    font-family: 'Orbitron', Arial, sans-serif;
    font-size: 2.7rem;
    color: #f4f800;
    text-shadow: 0 0 7px #6d3550, 0 0 2px #f1797755;
    margin-bottom: 18px;
    text-align: center;
    letter-spacing: 2px;
}

.donate-grid-desc {
    text-align: center;
    font-size: 1.18rem;
    color: #fcfcfc;
    margin-bottom: 34px;
    line-height: 1.55;
}

.donate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 32px;
    width: 100%;
}

.donate-grid-block {
    background: linear-gradient(120deg, #32203b 80%, #2a1b30 100%);
    border-radius: 20px;
    box-shadow: 0 0 18px #ad4e7b22 inset;
    padding: 24px 22px 18px 22px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.15s, box-shadow 0.15s;
    border: 1.5px solid #3a2037;
}
.donate-grid-block:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 28px #ffb17077, 0 0 16px #f1a1e399 inset;
    border-color: #ff4ea6;
}

.donate-grid-block h3 {
    font-family: 'Orbitron', Arial, sans-serif;
    font-size: 1.23rem;
    color: #f7fc00;
    margin-bottom: 12px;
    letter-spacing: 1px;
    line-height: 1.15;
    text-shadow: 0 0 3px #fff1cc66;
}
.donate-grid-block h3 span {
    color: #ff4ea6;
    font-size: 1rem;
    display: block;
    margin-top: 3px;
    font-weight: 600;
    letter-spacing: 1.5px;
}
.donate-grid-block ul {
    list-style: disc;
    margin-left: 18px;
    color: #ffffff;
    font-size: 1.02rem;
    padding-left: 0;
    margin-bottom: 0;
}

.donate-grid-benefit {
    background: linear-gradient(120deg, #231525 70%, #2c162c 100%);
    border: 1.5px solid #ffd480cc;
    box-shadow: 0 0 10px #fbeab544 inset;
}
.donate-grid-benefit h3 {
    color: #fff2ae;
    text-shadow: 0 0 2px #ffeedbaa;
}

@media (max-width: 1024px) {
    .donate-grid-section {
        padding: 30px 6vw 26px 6vw;
    }
    .donate-grid-title {
        font-size: 2rem;
    }
}
@media (max-width: 700px) {
    .donate-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .donate-grid-section {
        padding: 16px 1vw 18px 1vw;
    }
}


