/* ==== RESET ==== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #3a2b23;
  --color-text: #f5f5f5;
  --color-muted: #f8f8f8;
  --color-accent: #ff4d00;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: url('../assets/icons/fon.png') no-repeat center center fixed;
  background-size: cover;
  color: var(--color-text);
  font-family: var(--font-main);
  line-height: 1.5;
}
html, body {
  overflow-x: hidden;
}
a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.9rem;
}

.container {
  width: 95%;
  max-width: 1900px;
  margin: 0 auto;
}

.site-header {
  background-color: #221f1f;
  border-bottom: 1px solid #333;
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left,
.header-right {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.header-left a,
.header-right a {
  font-size: 1.2rem;
  color: var(--color-text);
  transition: transform 0.3s ease, color 0.3s ease;
  position: relative;
}

.header-right a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.header-right a:hover {
  color: var(--color-accent);
  transform: translateY(-2px);
}

.header-right a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-center {
  text-align: center;
  flex: 1;
   margin-left: 20rem;
}

.logo-main {
  font-size: 1.6rem;
  letter-spacing: 3px;
  font-weight: 300;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 2px;
  letter-spacing: 1px;
}

.hero-section {
  background: linear-gradient(135deg, #111 0%, #1f1f1f 100%);
  padding: 6rem 1rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.3rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.hero-btn {
  padding: 1rem 2.5rem;
  font-size: 1rem; 
  background-color: var(--color-accent);
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-btn:hover {
  background-color: #e54300;
  transform: scale(1.05);
}

.site-footer {
  background-color: #1b1717;
  color: var(--color-muted);
  padding: 3rem 0 2rem;
  font-size: 1.1rem;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem; 
  align-items: start;
  max-width: 1600px; 
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  word-break: break-word;
  overflow-wrap: break-word;
}

.footer-logo-icon {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-width: 460px;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.footer-brand .logo-main {
  font-size: 1.5rem;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-brand .logo-sub {
  font-size: 1rem;
  color: var(--color-muted);
  letter-spacing: 1px;
  margin-top: 2px;
}

.footer-left,
.footer-center,
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
   padding-left: 8rem;
}

.footer-left h4,
.footer-center h4,
.footer-right h4 {
  color: var(--color-text);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-center a,
.footer-right a,
.footer-left a {
  color: var(--color-muted);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-center a:hover,
.footer-right a:hover,
.footer-left a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #777;
}

.footer-bottom hr {
  border: none;
  border-top: 1px solid #333;
  margin-bottom: 1rem;
}
.footer-divider {
  width: 100%;
  height: 25px;
  background-image: url("../assets/icons/12345.png"); 
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: bottom center;
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .header-left,
  .header-right {
    justify-content: center;
  }

  .header-center {
    margin-left: 0;
    text-align: center;
  }

  .logo-main {
    font-size: 1.3rem;
  }

  .logo-sub {
    font-size: 0.7rem;
  }

  .hero-section {
    padding: 4rem 1rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-btn {
    font-size: 0.95rem;
    padding: 0.8rem 2rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    padding-left: 0;
    align-items: center;
    text-align: center;
  }

  .footer-left h4,
  .footer-center h4,
  .footer-right h4 {
    font-size: 1rem;
  }

  .footer-center a,
  .footer-right a,
  .footer-left a {
    font-size: 0.95rem;
  }

  .footer-logo-icon {
    width: 48px;
    height: 48px;
  }

  .footer-divider {
    height: 18px; 
    background-size: auto 100%;
  }
}
.intro-animated {
  background: linear-gradient(to right, #1b1717, #1b1717);
  padding: 6rem 2rem;
  overflow: hidden;
}

.intro-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.intro-text {
  flex: 1;
  animation: slideInLeft 1s ease forwards;
  opacity: 0;
}

.intro-text h1 {
  font-size: 3rem;
  color: var(--color-text);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.intro-text p {
  font-size: 1.2rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.intro-btn {
  background-color: #fa650fa2;
  color: #fff;
  padding: 1rem 2.5rem;
  font-weight: bold;
  border-radius: 5px;
  text-transform: uppercase;
  transition: transform 0.3s ease, background 0.3s ease;
}

.intro-btn:hover {
  transform: scale(1.05);
  background-color: #e54500a6;
}

.intro-image {
  flex: 1.3; 
  animation: slideInRight 1.2s ease forwards;
  opacity: 0;
  display: flex;
  justify-content: center;
  position: relative;
}



.intro-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(255, 77, 0, 0.3);
  animation: floatY 4s ease-in-out infinite, glowPulse 3s ease-in-out infinite;
}


@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}


@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 77, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 77, 0, 0.5);
  }
}


@keyframes slideInLeft {
  0% { transform: translateX(-60px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  0% { transform: translateX(60px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}


@media (max-width: 768px) {
  .intro-grid {
    flex-direction: column;
    text-align: center;
  }

  .intro-text h1 {
    font-size: 2.2rem;
  }

  .intro-text p {
    font-size: 1rem;
  }

  .intro-btn {
    font-size: 0.95rem;
  }

  .intro-image {
    flex: none;
    margin-top: 2rem;
  }

  .intro-image img {
    width: 100%;
    max-width: 320px;
  }
}
.game-info {
  max-width: 1600px;
  margin: 5rem auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.info-block {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.info-block.reverse {
  flex-direction: row-reverse;
}

.info-image {
  flex: 1;
  min-width: 300px;
}

.info-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(255, 77, 0, 0.1);
}

.info-text {
  flex: 1;
  min-width: 300px;
  color: var(--color-text);
}

.info-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.info-text p {
  font-size: 1.1rem;
  color: var(--color-muted);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .info-block,
  .info-block.reverse {
    flex-direction: column;
    text-align: center;
  }

  .info-image,
  .info-text {
    flex: none;
    width: 100%;
    padding: 0;
  }

  .info-text h2 {
    font-size: 1.5rem;
  }

  .info-text p {
    font-size: 1rem;
  }

  .game-info {
    padding: 0 1rem;
    gap: 3rem;
  }

  .info-image img {
    border-radius: 8px;
  }
}
.text-lore-block {
  background: radial-gradient(circle at center, #020202fd, #0000009d);
  padding: 4rem 2rem;
   color: #fff;
  text-align: center;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  font-family: var(--font-main);
}

.text-lore-block h2 {
  font-size: 2.5rem;
  letter-spacing: 3px;
  color: var(--color-text);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
}

.text-lore-block h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 0.5rem auto 0;
}

.text-lore-block p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.8;
  white-space: pre-line;
}
@media (max-width: 768px) {
  .text-lore-block h2 {
    font-size: 1.7rem;
  }

  .text-lore-block p {
    font-size: 1rem;
    padding: 0 1rem;
  }
}
.image-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
}

.slider-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slider-slide.active {
  opacity: 1;
  z-index: 1;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-overlay {
  position: absolute;
  top: 70%; 
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  text-shadow: 0 0 10px #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.slider-overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.slider-btn {
  background-color: var(--color-accent);
  color: #fff;
  padding: 0.8rem 2.2rem;
  font-size: 1rem;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  transition: background 0.3s ease;
}

.slider-btn:hover {
  background-color: #e54300;
}

@media (max-width: 768px) {
  .slider-wrapper {
    height: 300px;
  }
  .slider-overlay h2 {
    font-size: 1.5rem;
  }
  .slider-btn {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }
}
.testimonials-section {
  background: #1b1717;
  padding: 4rem 2rem;
  color: var(--color-text);
}

.testimonials-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.testimonials-header h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}

.testimonials-header p {
  color: var(--color-muted);
  font-size: 1rem;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 1600px;
  margin: 0 auto;
}

.testimonials-carousel {
  display: flex;
  transition: transform 0.5s ease;
  gap: 2rem;
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none;
  align-items: flex-start;
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 280px;
  max-width: 320px;
  flex: 0 0 auto;
  background: #221f1f;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.source-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 28px;
  height: 28px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: bold;
  font-size: 1.05rem;
  color: var(--color-text);
  text-align: right;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 2px solid var(--color-muted);
  color: var(--color-muted);
  font-size: 2rem;
  padding: 0.3rem 0.7rem;
  cursor: pointer;
  z-index: 10;
}

.carousel-btn:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 80%;
  }

  .carousel-btn {
    display: none;
  }
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 4rem 2rem;
  background-color: #120f0f00;
}

.news-card {
  background-color: #1d1a1a;
  border: 1px solid #333;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card img {
  width: 100%;
  height: 220px; 
  object-fit: cover; 
  display: block;
}

.news-info {
  padding: 1rem;
  color: #ccc;
  font-family: 'Orbitron', sans-serif;
  flex-grow: 1;
}

.news-date {
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
}

.news-title {
  font-size: 1rem;
  color: #ffcc66;
  margin: 0.5rem 0;
  text-transform: uppercase;
}

.news-info p {
  font-size: 0.85rem;
  color: #ddd;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.news-info a {
  color: #ff5a00;
  font-size: 0.85rem;
  text-decoration: none;
}

.news-info a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }
}
.section-title {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.section-title h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  letter-spacing: 2px;
  color: #ff6600;
  border-bottom: 3px solid #ff6600;
  display: inline-block;
  padding-bottom: 0.5rem;
  text-transform: uppercase;
}

.game-facts-section {
  background: linear-gradient(to bottom, #11111100, #1b171700);
  padding: 5rem 2rem;
  color: var(--color-text);
}

.game-facts-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
  margin-bottom: 4rem;
}

.facts-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.fact-item {
  display: flex;
  align-items: flex-start; /* чтобы цифра не растягивалась вниз */
  gap: 1rem;
}
.fact-number {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  background-color: var(--color-accent);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* не сжимается */
}

.fact-text strong {
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.4rem;
}

.fact-text p {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.facts-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.facts-visual img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(255, 77, 0, 0.3);
}

.section-subtitle {
  text-align: center;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.player-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.stat-card {
  background-color: #221f1f;
  border: 1px solid #333;
  padding: 1.5rem;
  width: 180px;
  text-align: center;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
}

.stat-card img {
  width: 36px;
  margin-bottom: 1rem;
}

.stat-value {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--color-accent);
}

.stat-label {
  color: var(--color-muted);
  font-size: 0.95rem;
}


.tabbed-info-section {
  padding: 5rem 2rem;
  background: radial-gradient(circle at center, #1b1717, #1b1717);
  color: var(--color-text);
  text-align: center;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--color-accent);
  color: #fff;
}

.tab-contents {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.tab-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  text-align: left;
}

.tab-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.tab-content h2 {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.tab-content p {
  font-size: 1.1rem;
  color: var(--color-muted);
  line-height: 1.7;
}
.brands-services-section {
  background: #1b1717;
  padding: 5rem 2rem;
  color: var(--color-text);
}

.brands-services-grid {
  display: flex;
  gap: 15rem;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.service-text-block {
  flex: 1;
  min-width: 320px;
}

.service-text-block h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.service-text-block p {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-text-block h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--color-accent);
  text-transform: uppercase;
}

.services-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.services-list li {
  font-size: 1rem;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.services-list i {
  color: var(--color-accent);
}
@media (max-width: 768px) {
  .service-text-block {
    min-width: 100%;              
    text-align: center;           
  }

  .service-text-block h3 {
    font-size: 1.3rem;             
  }

  .service-text-block p {
    font-size: 0.95rem;            
    margin-bottom: 1rem;
  }

  .service-text-block h4 {
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
  }

  .services-list {
    gap: 0.4rem;                 
    align-items: center;           
  }

  .services-list li {
    font-size: 0.95rem;
    justify-content: center;       
  }
}

.brand-logos-block {
  flex: 1;
  min-width: 280px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  justify-items: center;
  align-items: center;
}

.logo-grid span {
  background: #221f1f;
  border: 1px solid #333;
  padding: 1rem;
  font-weight: bold;
  color: #ffcc66;
  border-radius: 6px;
  width: 100%;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  transition: transform 0.3s ease;
}

.logo-grid span:hover {
  transform: scale(1.05);
  background-color: #2a2525;
  box-shadow: 0 0 10px rgba(255, 77, 0, 0.2);
}
.hex-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  justify-items: center;
}

.hex-btn {
  position: relative;
  padding: 1.2rem 1rem;
  color: #ffcc66;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  background: #1f1c1c;
  border: 1px solid #333;
  border-radius: 12px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  box-shadow: inset 0 0 0 0 var(--color-accent);
}

.hex-btn:hover {
  background: #2a2626;
  box-shadow: 0 0 12px rgba(255, 77, 0, 0.4), inset 0 0 10px rgba(255, 77, 0, 0.2);
  color: var(--color-accent);
  transform: translateY(-2px) scale(1.03);
}

.hex-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border: 1px solid rgba(255, 77, 0, 0.2);
  border-radius: 14px;
  z-index: -1;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 6px rgba(255, 77, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 18px rgba(255, 77, 0, 0.6);
  }
}
.system-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.system-card {
  background-color: #1f1c1c;
  border: 1px solid #333;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 77, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--color-text);
}

.system-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(255, 77, 0, 0.3);
}

.system-card h4 {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  color: var(--color-accent);
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
}

.system-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.cookie-banner {
  position: fixed;
  bottom: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 96%;
  max-width: 720px;
  background: #1b1717;
  border: 2px solid #ff4d00;
  border-radius: 12px;
  padding: 1.2rem 2rem;
  color: #eee;
  font-family: sans-serif;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  transition: bottom 0.5s ease;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.cookie-text strong {
  font-size: 1.1rem;
  color: #ff4d00;
}

.cookie-text p {
  font-size: 0.95rem;
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-btn {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-btn.accept {
  background: #ff4d00;
  color: #111;
}

.cookie-btn.accept:hover {
  background: #ff4d00;
}

.cookie-btn.decline {
  background: transparent;
  border: 1px solid #ff4d00;
  color: #ff4d00;
}

.cookie-btn.decline:hover {
  background: rgba(255, 170, 0, 0.1);
}
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #1b1717;
  color: #ff4d00;
  border: 2px solid #ff4d00;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease;
  box-shadow: 0 0 10px rgba(255, 170, 0, 0.2);
}

.scroll-top-btn:hover {
  background: #ff4d00;
  color: #1b1717;
  transform: translateY(-4px);
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768px) {
  .header-right {
    flex-wrap: wrap;              
    justify-content: center;     
    gap: 0.5rem;                   
  }

  .header-right a {
    font-size: 0.9rem;            
    padding: 0.3rem 0.5rem;        
  }
}
