body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a0033, #000033);
    color: #ffffff;
    font-family: "Marcellus", serif;
  }

  .navbar {
    background-color: transparent;
  }

  .hero-section {
    padding: 80px 0;
    background: radial-gradient(circle at top center, #1f004d 0%, #000020 100%);
  }

  .hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-text {
    text-align: center;
    padding: 20px;
    max-width: 600px;
  }

  .hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(to right, #00ffff, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero-text p {
    font-size: 1.2rem;
    color: #ccc;
  }

  .btn-purple {
    background: linear-gradient(90deg, #c471ed, #f64f59);
    border: none;
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: background 0.3s ease;
  }

  .btn-purple:hover {
    background: linear-gradient(90deg, #f64f59, #c471ed);
  }

  .side-image {
    max-width: 300px;
    margin: 20px;
  }

  @media (max-width: 768px) {
    .hero-content {
      flex-direction: column;
    }
  }

  .stages-section {
    background: linear-gradient(135deg, #220055, #10002a);
  }

  .stage-card {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    color: white;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
    transition: transform 0.3s ease;
  }

  .stage-card:hover {
    transform: translateY(-5px);
  }

  .stage-title {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(to right, #00ffff, #b266ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .stage-subtitle {
    font-size: 0.9rem;
    color: #b287ff;
    margin-top: 0.2rem;
    margin-bottom: 1rem;
  }

  .stage-text {
    font-size: 0.95rem;
    color: #ccc;
  }

  .technologies-section {
    background: url("img/kroney._a_background_for_a_webcam_stream_dungeons_and_dragons_t_c33031f8-5999-4744-98f4-376229caecfb.png");
    color: white;
    position: relative;
    overflow: hidden;
  }

  .tech-text {
    font-size: 1.5rem;
    line-height: 1.6;
  }

  .highlight {
    background: linear-gradient(to right, #00ffff, #b266ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
  }

  .nft-circle {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, #000000 60%, #8a2be2);
    border: 3px solid #8a2be2;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 20px #8a2be2;
  }

  .abstract-left,
  .abstract-right {
    position: absolute;
    width: 200px;
    opacity: 0.5;
    z-index: 0;
  }

  .abstract-left {
    top: 10%;
    left: -60px;
  }

  .abstract-right {
    bottom: 0;
    right: -60px;
  }

  .players-section {
    background: #000010;
    color: white;
  }

  .players-text {
    font-size: 1.5rem;
  }

  .highlight-blue {
    background: linear-gradient(to right, #00ccff, #6666ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
  }

  .games-section {
    background: linear-gradient(135deg, #0a0020, #1a0033);
    color: white;
  }

  .section-title {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(to right, #00ccff, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .game-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
  }

  .game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.5);
  }

  .game-logo {
      width: 300px;
      height: 200px;
  }

  .game-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    background: linear-gradient(to right, #00ffff, #b266ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .game-desc {
    font-size: 0.95rem;
    color: #ccc;
  }

  .footer-section {
    background: linear-gradient(135deg, #0a001f, #1a0033);
    color: #aaa;
    font-size: 0.95rem;
  }

  .footer-link {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
  }

  .footer-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(to right, #00ffff, #8a2be2);
    transition: width 0.3s ease;
  }

  .footer-link:hover {
    color: #ffffff;
  }

  .footer-link:hover::after {
    width: 100%;
  }
  .text-muted{
      color: white !important
  }
  iframe{
    margin: 0 auto;
    display: block;
    width: 80%;
    height: 500px;
  }