
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #071022;
      font-family: "Poppins", sans-serif;
      color: #fff;
      overflow-x: hidden;
    }

    /* ===== HEADER (Desktop) ===== */
    header {
      width: 100%;
      background: linear-gradient(90deg, #050510, #0b0b20);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 50px;
      position: relative;
      z-index: 10;
    }

    .logo img {
      height: 50px;
    }

    .right-section {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 35px;
    }

    nav ul li a {
      text-decoration: none;
      color: #cfcfcf;
      font-size: 22px;
      transition: color 0.3s ease;
    }

    nav ul li a:hover {
      color: #fff;
    }

    .games-btn {
      background: linear-gradient(90deg, #5440ff, #8b5cff);
      color: #fff;
      border: none;
      padding: 8px 16px;
      border-radius: 30px;
      font-size: 18px;
      cursor: pointer;
      transition: opacity 0.3s;
    }

    .games-btn:hover {
      opacity: 0.85;
    }

    /* ===== LANGUAGE SELECTOR ===== */
    .lang-selector {
      position: relative;
      display: flex;
      align-items: center;
      background: #181820;
      border-radius: 30px;
      padding: 6px 12px;
      cursor: pointer;
      font-size: 16px;
      gap: 6px;
    }

    .lang-selector img {
      width: 18px;
      height: 18px;
      border-radius: 50%;
    }

    .lang-selector span {
      color: #ddd;
    }

    .lang-options {
      display: none;
      position: absolute;
      top: 38px;
      right: 0;
      background: #181820;
      border-radius: 10px;
      overflow: hidden;
      min-width: 80px;
      z-index: 10;
    }

    .lang-options div {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 10px;
      cursor: pointer;
      font-size: 13px;
      color: #ccc;
    }

    .lang-options div:hover {
      background: #2b2b40;
      color: #fff;
    }

    .lang-options img {
      width: 18px;
      height: 18px;
      border-radius: 50%;
    }

    /* ===== MOBILE HEADER ===== */
    .mobile-header {
      display: none;
      width: 100%;
      background: linear-gradient(90deg, #050510, #0b0b20);
      padding: 10px 15px;
      align-items: center;
      justify-content: space-between;
      position: relative;
      z-index: 15;
    }

    .menu-icon {
      font-size: 30px;
      cursor: pointer;
    }

    .mobile-logo img {
      height: 42px;
    }

    .mobile-icon img {
      width: 38px;
      height: 38px;
      background: linear-gradient(90deg, #5440ff, #8b5cff);
      border-radius: 50%;
    }
.mobile-icon img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #304BC6 0%, #6E42E8 30.29%, #5658C0 62.5%, #092298 100%);
  border: 3.333px solid #1140FF;
}

    /* ===== MOBILE MENU ===== */
    .mobile-menu {
      display: none;
      flex-direction: column;
      gap: 16px;
      background: #0b0b20;
      padding: 20px;
      z-index: 1000;
    }

    .mobile-menu a {
      text-decoration: none;
      color: #ccc;
      font-size: 15px;
      transition: color 0.3s;
    }

    .mobile-menu a:hover {
      color: #fff;
    }

    .mobile-menu .lang-selector {
      width: fit-content;
    }

    /* ===== VIDEO SECTION ===== */
    .video-section {
      position: relative;
      width: 100%;
      overflow: hidden;
      background: linear-gradient(90deg, #050510, #0b0b20);
    }

    .video-section video {
      width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
    }
    
    /* ⭐ Center overlay */
.center-overlay {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  margin-bottom: 30px;
}

.center-overlay .logo {
  width: 800px; /* adjust size if needed */
  margin-bottom: 10px;
}

/* Country text */
#countryText {
    display: none;
  font-size: 120px;
  font-weight: 800;
  transition: opacity 0.5s ease-in-out;
}

.fade-out {
  opacity: 0;
}

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      header {
        display: none;
      }

      .mobile-header {
        display: flex;
      }

      .video-section video {
        height: 240px;
        object-fit: contain;
      }
    }
    
/* === Game Section === */
.game-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 5;
}
.game-section {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(100% / 3);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth; /*¢ smooth scroll transition */
  padding: 1rem;
  cursor: grab;
  position: relative;
  z-index: 1;
}
.game-section:active {
  cursor: grabbing;
}
.game-section::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .game-section {
    grid-auto-columns: calc(100% / 5);
  }
}
@media (min-width: 1024px) {
  .game-section {
    grid-auto-columns: calc(100% / 6);
  }
}
@media (min-width: 769px){
  .game-wrapper {
  margin-top: -150px;
  }
  .game-section {
  margin-bottom: 70px;
  }
}  
/* 📱 Very small screens (single column) */
@media (max-width: 480px) {
  .game-wrapper {
  margin-top: -25px;
  }
}
.game-card {
  background: transparent;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  scroll-snap-align: start;
  overflow: hidden;
}
.game-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.game-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.game-card h3 {
    display: none;
  font-size: 11px;
  color: #fff;
  margin: 0.5rem 0;
}

/* Solutions CSS */
.solutions-section {
  text-align: center;
  padding: 20px 20px;
  color: #fff;
  background: #071022;
    background: url("/images/solutions/solutions-bg.webp") center center no-repeat;
      background-size: 80% 100%; /* ⬅ Makes the image bigger */
}

.solutions-section h2 {
  font-size: 45px;
  font-weight: 800;
  margin-bottom: 20px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  
  padding: 40px 20px;
  border-radius: 16px;
}


.solution-box {
  background: rgba(50, 82, 200, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 10px 5px;
  backdrop-filter: blur(8px);
  text-align: center;
  transition: 0.25s ease-in-out;
}

.solution-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.solution-box img {
  width: 240px;
  height: 240px;
  object-fit: contain;
}

.solution-box p {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 10px;
}

/* 🔹 Tablet and Mobile: 2 columns */
@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr); /* ✅ always 2 columns */
    max-width: 700px;
  }

  .solution-box img {
    width: 200px;
    height: 200px;
  }

  .solutions-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
  }
}

/* 🔹 Small phones: still 2 columns, tighter spacing */
@media (max-width: 600px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr); /* ✅ stays 2 columns */
    gap: 15px;
  }

  .solution-box img {
    width: 150px;
    height: 150px;
  }

  .solutions-section h2 {
    font-size: 30px;
    margin-bottom: 5px;
  }
}

/* Stats Section */
.hero-stats {
  position: relative;
  width: 100%;
  padding: 20px 0;
  text-align: center;
  overflow: hidden;
  color: white;
}

/* Background Image + Glow Overlay */
.hero-bg {
  position: absolute;
  inset: 0;
  background: 
      radial-gradient(circle at center, rgba(0, 110, 255, 0.35), transparent 70%),
      url("/images/Stats-bg.webp") no-repeat center center;
      background-size: 100% 100%; /* ⬅ Makes the image bigger */
  z-index: -1;
  opacity: 1;
}

/* Description Text */
.hero-subtext {
  max-width: 900px;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.8;
}

/* Stats Layout */
.stats-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

/* Left & Right Stats */
.stats {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.stat-block {
  text-align: center;
}

.stat-number {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
}

.stat-text {
  font-size: 18px;
  opacity: 0.85;
  margin-top: 8px;
}

/* Character Image */
.character-center .hero-image {
  width: 400px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0px 0px 35px rgba(255, 255, 255, 0.4));
}

/* Colors */
.purple { color: #b76cff; }
.teal { color: #21d7b6; }
.blue { color: #2cb4ff; }
.gold { color: #ffcc4d; }

/* Responsive */
@media (max-width: 1024px) {
  .stats-container {
    flex-direction: column;
    gap: 40px;
  }
}
@media (min-width: 769px){
      .hero-subtext {
        margin: 0 auto 50px;
  }
  .game-wrapper {
  margin-top: -140px;
  }
}
/* Mobile Styles */
@media (max-width: 768px) {
  .hero-stats {
    padding: 20px 10px;
    text-align: center;
  }

  .hero-subtext {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.4;
    margin: 0 auto 20px;
  }

  /* Keep left + right stats, but closer */
.stats-container {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
}


  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-number {
    font-size: 24px;
    font-weight: 800px;
    line-height: 1;
  }

  .stat-text {
    font-size: 12px;
  }

  /* Center hero image smaller but centered */
  .character-center .hero-image {
    width: 180px;
    max-width: 60vw;
    filter: drop-shadow(0px 0px 18px rgba(255,255,255,0.35));
  }

  .hero-bg {
    background-size: cover;
  }
}

/* ===== Games Header ===== */
    .games-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 60px 20px 40px;
      background-color: #071022;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      border-radius: 20px;
      overflow: hidden;
      text-align: center;
    }

    .games-header h2 {
      font-size: 45px;
      font-weight: 800;
      letter-spacing: 1px;
      margin-bottom: 15px;
    }

    .games-header p {
      font-size: 16px;
      color: #ccc;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* ===== Carousel Layout ===== */
    .carousel {
      position: relative;
      width: 100%;
      max-width: 980px;
      height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 30px auto 0;
    }

    .nav-btn {
      position: absolute;
      top: 50%;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: none;
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      font-size: 24px;
      cursor: pointer;
      z-index: 30;
      transition: background 0.3s ease;
      transform: translateY(-50%);
    }
    .nav-btn:hover {
      background: rgba(255, 255, 255, 0.25);
    }
    .nav-btn.left { left: 1px; }
    .nav-btn.right { right: 1px; }

    .cards-wrap {
      position: relative;
      width: 100%;
      max-width: 780px;
      height: 360px;
      perspective: 1400px;
    }
    .cards-wrap .card .game_title {
    display: block !important;
}

    /* ===== Card Style ===== */
    .card {
      position: absolute;
      width: 450px;
      height: auto;
      left: 50%;
      top: 30%;
      transform-origin: center center;
      border-radius: 18px;
      overflow: hidden;
      background: #0b2030;
      transition: transform 0.7s cubic-bezier(.2, .9, .25, 1), opacity .4s ease, filter .4s ease;
      display: flex;
      flex-direction: column;
      margin-top: 100px;
    }

    .hero {
      width: 100%;
      height: 225px;
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
    }

    .info {
      padding: 10px 15px;
      background: #11182a;
    }

    .game_title h3{
      display: none;
      font-weight: 800;
      color: green;
      background: var(--accent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 10px;
    }

    .desc {
      font-size: 14px;
      font-weight: 500;
      color: #ccc;
      margin-bottom: 15px;
      margin-top: 15px;
      text-align: left;
    }

    .play {
      font-size: 15px;
      color: #9ea7ff;
      text-decoration: none;
      font-weight: 700;
      display: block;
      text-align: left;
    }

    /* ===== Card Positions ===== */
    .card.center { transform: translate(-50%, -50%) scale(1); z-index:10; opacity:1; filter:none; }
    .card.left1 { transform: translate(-90%, -50%) scale(0.8) rotateY(15deg); opacity:0.5; filter:blur(3px); }
    .card.right1 { transform: translate(-10%, -50%) scale(0.8) rotateY(-15deg); opacity:0.5; filter:blur(3px); }
    .card.left2 { transform: translate(-120%, -50%) scale(0.6) rotateY(20deg); opacity:0.2; filter:blur(6px); }
    .card.right2 { transform: translate(20%, -50%) scale(0.6) rotateY(-20deg); opacity:0.2; filter:blur(6px); }
    .card.hidden { opacity:0; pointer-events:none; }

    /* ===== RESPONSIVE STYLES ===== */
    @media (max-width: 1024px) {
      .carousel { height: 360px; }
      .cards-wrap { height: 320px; }
      .card { width: 400px; height: 280px; }
      .game_title h3 { font-size: 26px; }
      .desc { font-size: 13px; }
    }

   @media (max-width: 768px) {
  .carousel { height: 330px; }           /* bigger carousel */
  .cards-wrap { height: 320px; }

  .card {
    width: 300px;                         /* bigger card */
    height: 300px;
    border-radius: 14px;
    margin-top: 40px;
  }

  .hero {
    height: auto;                        /* larger image */
    background-size: cover;
  }

  .game_title h3 { font-size: 20px; }
  .desc { font-size: 12px; }

  .nav-btn {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
      .games-header h2 {
      font-size: 25px;
    }

  /* side cards still visible but closer */
  .card.left1  { transform: translate(-85%, -50%) scale(0.92) rotateY(8deg); }
  .card.right1 { transform: translate(-15%, -50%) scale(0.92) rotateY(-8deg); }
}

@media (max-width: 480px) {
  .carousel { height: 320px; }
  .cards-wrap { height: 320px; }

  .card {
    width: 320px;                      /* increase card width */
    height: 310px;
    margin-top: 65px;
  }

  .hero {
    height: 175px;                     /* bigger image */
    background-size: cover;
  }

  .game_title h3 { font-size: 14px; }
  .desc { font-size: 11px; }
  .play {font-size: 14px;}
  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}

/* Accordion Section */
.why-section {
  background: radial-gradient(circle at top, #0c1224, #030712);
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  background: #071022;
}

.why-container {
  max-width: 1000px;
  margin: 0 auto;
}

.why-container h2 {
  font-size: 45px;
  font-weight: 800;
  margin-bottom: 10px;
}

.why-container .subtitle {
  font-size: 16px;
  color: #a5b1c2;
  margin-bottom: 50px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  background: #111a2d;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.accordion-header {
  width: 100%;
  text-align: left;
  background: black;
  color: #fff;
  border: none;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: rgba(255,255,255,0.05);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #0b1223;
  transition: all 0.4s ease;
  text-align: left;
  padding: 0 20px;
  opacity: 0;
}

.accordion-content.open {
  padding: 15px 20px 20px;
  max-height: 500px; /* allows enough space for content */
  opacity: 1;
  background: black;
}

.accordion-header span {
  font-size: 22px;
  font-weight: 700;
  transition: transform 0.3s, color 0.3s;
}

.accordion-item.active .accordion-header span {
  transform: rotate(180deg);
  color: #00bfff;
}

/* features section */
.features-section {
  background: radial-gradient(circle at top, #0c1224, #030712);
  color: #fff;
  padding: 50px 20px;
  text-align: center;
  background: #071022;
}

.features-container {
  max-width: 1000px;
  margin: 0 auto;
}

.features-container h2 {
  font-size: 45px;
  font-weight: 800;
  margin-bottom: 10px;
}

.features-container .subtitle {
  font-size: 16px;
  color: #a5b1c2;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #0b1223;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
}

.feature-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.feature-box:hover video {
  transform: scale(1.05);
}

.feature-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.8));
}

.feature-info p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* 🌐 Mobile responsive (2fr grid on mobile) */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-container h2 {
    font-size: 28px;
  }

  .feature-info p {
    font-size: 14px;
  }
}

/* 📱 Very small screens (single column) */
@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
    .features-container h2 {
    font-size: 24px;
  }
    .feature-info p {
    font-size: 12px;
  }
  .features-section {
  padding: 50px 20px;
  }
  .why-section {
  padding: 50px 20px;
  }
  .why-container h2 {
  font-size: 24px;
  }
  .accordion-header {
  font-size: 13px;
  }
  .accordion-content p {
  font-size: 14px;
  line-height: 1.5;
  }
}
/* BLOG SECTION */
.blog-section {
  width: 100%;
  padding: 50px 20%;
  background: #071022;
  color: #fff;
  overflow: hidden;
}

/* BLOG title + arrows inline */
.blog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;  /* ✅ makes arrows inline with BLOG */
  margin-bottom: 30px;
}

.blog-header h2 {
  font-size: 45px;
  font-weight: 800;
  margin: 0;
  color: #fff;
}

.blog-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ✅ Arrow Buttons */
.nav-btn-blog {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: transparent;
  color: black;
  background: grey;
  font-size: 30px;
  font-weight: 800px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background: #6a5af9;
  border-color: #6a5af9;
}

/* Carousel */
.blog-carousel {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.blog-carousel::-webkit-scrollbar {
  display: none;
}

/* Blog Card */
.blog-card {
  flex: 0 0 360px;
  border-radius: 20px;
  overflow: hidden;
  background: #11182a;
  transition: transform 0.4s ease;
  text-decoration: none;
  color: inherit;
}
.blog-card * {
  text-decoration: none !important;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.blog-info {
  padding: 20px;
      text-decoration: none;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: #aaa;
  margin-bottom: 20px;
    text-decoration: none;
}

.blog-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
    text-decoration: none;
}

.blog-desc {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
    text-decoration: none;
}

/* ✅ Mobile - same inline header design */
@media (max-width: 768px) {
  .blog-section {
    padding: 10px 10px;
  }
  .blog-header h2 {
    font-size: 30px;
  }
  .nav-btn-blog {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  .blog-card {
    flex: 0 0 65%;
  }
  .blog-title {
  font-size: 14px;
  margin-bottom: 10px;
  }
  .blog-meta {
  font-size: 10px;
  margin-bottom: 10px;
  }
  .blog-desc {
  font-size: 12px;
  }
  .blog-info {
  padding: 10px;
  }
  .blog-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  }
  .blog-carousel {
    gap: 10px;
  }
}
    /* === Footer === */
    .footer {
      background: #08184A;
      color: #aaa;
      padding: 60px 40px 20px;
      font-size: 14px;
    }

    .footer-top { text-align: center; margin-bottom: 30px; }
    .footer-top .social-icons { display: flex; justify-content: center; gap: 25px; }

    .footer-top img {
      width: 28px; height: 28px;
      filter: brightness(0) invert(1);
      transition: 0.3s;
    }

    .footer-top img:hover { filter: brightness(0) invert(0.6); }

    .footer-main {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
      max-width: 1400px;
      margin: auto;
    }

    .footer-left { flex: 1; min-width: 280px; }
    .footer-left p { margin: 10px 0; line-height: 1.6; }
    .footer-left .desc {
      border-left: 2px solid #3b4a6b;
      padding-left: 15px;
      margin-top: 15px;
      font-size: 13px;
      color: #c0c8e0;
    }

    .footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
    .footer-links ul { list-style: none; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      color: #bbb; text-decoration: none; transition: 0.3s;
    }

    .footer-links a:hover { color: #6a5af9; }

    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      border-top: 1px solid #1b2a50;
      padding-top: 15px;
      font-size: 13px;
      color: #c0c8e0;
    }