/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .nav-logo {
    width: 100px;
    height: 100px;
  }

  /* Body */
  body {
    font-family: 'Arial', sans-serif;
    color: #fff;
    background-color: #1e1e1e;
    line-height: 1.6;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
  }

  /* Light Mode */
  .light-mode {
    background-color: #f5f5f5;
    color: #333;
  }
  
  .light-mode header {
    background: rgba(255, 255, 255, 0.5);
  }
  
  .light-mode .navbar {
    background-color: #fff;
    border-bottom: 2px solid #e03e3e; /* Valorant red accent */
  }
  
  .light-mode .nav-link {
    color: #333;
  }
  
  .light-mode .play-now button {
    background-color: #e03e3e; /* Valorant red accent */
  }
  
  .light-mode footer {
    background-color: #fff;
  }
  
  .light-mode footer p {
    color: #333;
  }

  
  /* Dark Mode */
  .dark-mode header {
    background: rgba(0, 0, 0, 0.5);
  }
  
  .dark-mode .navbar {
    background-color: #000;
    border-bottom: 2px solid #e03e3e; /* Valorant red accent */
  }
  
  .dark-mode .nav-link {
    color: #fff;
  }
  
  .dark-mode .play-now button {
    background-color: #e03e3e; /* Valorant red accent */
  }
  
  .dark-mode footer {
    background-color: #000;
  }
  
  .dark-mode footer p {
    color: #ccc;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
  }
  
  .nav-logo img {
    width: 150px;
  }
  
  .nav-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  .nav-item {
    margin-left: 20px;
  }
  
  .nav-link {
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    transition: color 0.3s;
  }
  
  .nav-link:hover {
    color: #e03e3e; /* Valorant red accent */
  }
  
  /* Header */
  header {
    position: relative;
  }
  
  header video {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -1;
  }
  
  header .logo img {
    width: 200px;
  }
  
  /* Main Title */
  .main-title {
    font-size: 2rem;
    font-weight: bold;
    color: #e03e3e; /* Valorant red accent */
    margin: 20px 0;
  }
  
  /* Steps Container */
  .steps-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .step {
    background-color: #2c2c2c;
    border-radius: 10px;
    padding: 25px;
    margin: 10px 0;
    width: 90%;
    max-width: 850px;
    position: relative;
  }
  
  .step-content {
    text-align: left;
  }
  
  .step h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .step p {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #2c2c2c;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Play Now */
  .play-now {
    margin: 20px 0;
  }
  
  .play-now button {
    background-color: #e03e3e; /* Valorant red accent */
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 8px;
  }
  
  .play-now button:hover {
    background-color: #d03a3a; /* Darker red */
  }
  
/* Footer */
footer {
    padding: 20px;
    background-color: #000;
    color: #ccc;
    text-align: center;
  }
  
  footer h1 {
    color: #e03e3e; /* Valorant red accent */
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  footer img {
    width: 100px;
    margin: 10px 0;
  }
  
  footer p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 5px 0; /* Reduced margin to remove extra spacing */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  footer p span.year-icon {
    margin-right: 5px; /* Space between icon and year */
  }
  
  footer p a {
    color: #e03e3e; /* Valorant red accent */
    text-decoration: none;
  }
  
  footer p a:hover {
    text-decoration: underline;
  }
  



  .social-media-container {
    margin-top: 10px;
  }
  
  .social-media-container a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
  }
  
  .social-media-container a:hover {
    color: #e03e3e; /* Valorant red accent */
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .nav-menu {
      flex-direction: column;
      display: none;
    }
  
    .hamburger {
      display: block;
      cursor: pointer;
    }
  
    .hamburger .bar {
      display: block;
      width: 25px;
      height: 3px;
      background: #fff;
      margin: 5px 0;
    }
  }
  kbd {
    border-radius: 2px;
    padding: 2px;
    border: 1px solid black;
  }