* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  

  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #0e0e14;
    color: #eaeaea;
  }

  html, body {
    overflow-x: hidden;
  }

  a {
    color: inherit;
    text-decoration: none;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  

  header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 0;
    background: transparent;
    backdrop-filter: blur(10px);
    z-index: 999;
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
  }
  
  .logo {
    font-size: 24px;
    font-weight: 800;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
  }

  .logo img {
    position: absolute;
    width: 50px;
    height: 50px;
    margin-left: -40px;
  }
  
  .logo::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    margin-right: 12px;
  }
  
  .nav-links {
    display: flex;
    gap: 40px;
  }
  
  .nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    border-radius: 1px;
  }
  
  .nav-links a:hover {
    color: var(--primary);
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  .nav-actions {
    display: flex;
    gap: 18px;
    align-items: center;
  }
  
  .icon-button {
    background: #252238;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    border-style: solid;
    border-color: #252238;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .icon-button:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-2px);
  }
  
  .dta-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
  }
  
  .dta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .dta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
  }
  
  .dta-button:hover::before {
    opacity: 1;
  }

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    padding: 10px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(15, 15, 22, 0.98);
        backdrop-filter: blur(10px);
        padding: 80px 30px;
        z-index: 99;
        transition: right 0.3s ease;
        flex-direction: column;
        margin: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        display: block;
        margin: 15px 0;
        font-size: 18px;
    }

    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: flex;
}

@media (max-width: 768px) {
  .mobile-only {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .desktop-only {
    display: none;
  }

  .nav-links .mobile-only .icon-button,
  .nav-links .mobile-only .dta-button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
  position: relative;
  top: 20%;
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 120%;
  left: 0;
  background: #1b1b2f;
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  min-width: 160px;
  z-index: 100;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #eee;
  text-decoration: none;
  transition: background 0.3s;
}

.dropdown-menu a:hover {
  background: #2d2d45;
}

.dropdown.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

  .hero {
    min-height: 120vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 90px;
    padding-bottom: 60px;
    background: 
      radial-gradient(circle at 10% 40%, rgba(30, 0, 60, 0.85) 100%, transparent 60%),
      url('https://images.ctfassets.net/wn7ipiv9ue5v/NwgElAZU8ZdLmW6v7812Y/3d8a8eb721c109b12bbc2422ba8b4f68/3-4_GTA--Gen_9_Vista_Reshoot_CF__3___1_.jpg');
    background-size: cover;
    background-position: center;
  }
  
  
  
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;  
    height: 100%;
    z-index: 0;
  }

  .hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--primary-glow);
    filter: blur(80px);
    opacity: 0.2;
    top: 10%;
    right: -200px;
    z-index: 0;
    animation: pulse 8s ease-in-out infinite;
  }
  
  .hero img {
    position: absolute;
    height: 500px;
    width: 500px;
    margin-left: 900px;
    margin-top: -100px;
    transform:
    perspective(800px)
    rotateY(25deg) scale(0.9)
    rotateX(10deg);
  filter: blur(2px);
  opacity: 0.5;
  transition: 0.6s ease all;
  }

 .hero img:hover {
    transform:
    perspective(800px)
    rotateY(-15deg)
    translateY(-50px)
    rotateX(10deg)
    scale(1);
  filter: blur(0);
  opacity: 1;
  }
  
  
  .hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
  }
  
  .hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(124, 58, 237, 0.15);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 32px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(124, 58, 237, 0.25);
    animation: fadeIn 1s ease forwards, float 3s ease-in-out infinite;
  }
  
  .hero-badge::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .hero h1 {
    font-size: 76px;
    background-color: #fff;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2.5px;
    margin-bottom: 3px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 1.2s ease forwards;
  }
  
  .hero p {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 48px;
    line-height: 1.7;
    animation: slideInLeft 1.4s ease forwards;
  }
  
  .hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeIn 1.6s ease forwards;
  }
  
  .secondary-button {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
  }
  
  .secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
  }
  
  .cta-button {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
  }
  
  .cta-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
  }
  

  .section {
    padding: 80px 0;
    background: #12121a;
    text-align: center;
  }
  
  .section.dark {
    background: #0d0d14;
  }
  
  .why-us-section {
    background: #0f0f1a;
    padding: 100px 20px;
    text-align: center;
  }
  
  .why-us-header h2 {
    font-size: 36px;
    color: #b47bff;
    margin-bottom: 10px;
  }
  
  .why-us-header p {
    color: #ccc;
    font-size: 18px;
    margin-bottom: 50px;
  }
  
  .why-us-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  
  .feature-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(145deg, #1a1a2e, #151520);
    padding: 20px;
    width: 320px;
    color: #fff;
    clip-path: polygon(
      30px 0%, 100% 0%, 
      100% calc(100% - 30px), calc(100% - 30px) 100%, 
      0% 100%, 0% 30px
    );
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(180,123,255,0.3);
  }

  .feature-icon-box {
    flex: 0 0 48px;
    height: 48px;
    background: linear-gradient(135deg, #5e3ca6, #b47bff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
  }
  
  .feature-text h3 {
    margin: 0 0 6px;
    font-size: 20px;
    color: #b47bff;
  }
  
  .feature-text p {
    margin: 0;
    font-size: 15px;
    color: #ccc;
    line-height: 1.5;
  }
  
  .offer-section-new {
    background: linear-gradient(120deg, #0e0e17 0%, #14141f 100%);
    padding: 100px 20px;
  }
  
  .offer-header-left {
    max-width: 600px;
    margin: 0 auto 60px auto;
    text-align: left;
  }
  
  .offer-header-left h2 {
    font-size: 40px;
    color: #b47bff;
    margin-bottom: 10px;
  }
  
  .paint-underline {
    width: 200px;
    height: 12px;
    background: linear-gradient(135deg, #b47bff, #5e3ca6);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
    margin-bottom: 20px;
  }
  
  .offer-header-left p {
    color: #ccc;
    font-size: 18px;
  }
  
  .offer-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .offer-card-new {
    background: #1a1a2e;
    border-radius: 16px;
    padding: 40px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transform: perspective(600px) rotateX(0deg) rotateY(0deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }
  
  .offer-card-new:hover {
    transform: translate(6px, -6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  }
  
  .icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: radial-gradient(circle, #5e3ca6, #1a1a2e);
    border: 3px solid #b47bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease;
  }
  
  .offer-card-new:hover .icon-circle {
    background: radial-gradient(circle, #b47bff, #5e3ca6);
  }
  
  .offer-card-new h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 12px;
  }
  
  .offer-card-new p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
  }

  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-60px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
  }
  
  
  .how-to-play {
    background: linear-gradient(120deg, #0e0e17 0%, #14141f 100%);
    padding: 100px 20px;
  }
  
  .how-box {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    background: radial-gradient(circle at top left, #1f1f2e 0%, #14141f 100%);
    border: 2px solid rgba(180, 123, 255, 0.2);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    box-shadow: 0 20px 60px rgba(180, 123, 255, 0.1);
    overflow: visible;
  }
  
  .how-box::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: conic-gradient(from 180deg, transparent, #b47bff20, transparent);
    top: -60px;
    right: -60px;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
  }
  
  .how-text {
    flex: 1;
    position: relative;
    z-index: 2;
  }
  
  .section-title {
    color: #fff;
    font-size: 32px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
  }
  
  .underline {
    width: 160px;
    height: 24px;
    margin-bottom: 30px;
    object-fit: contain;
  }
  
  .steps {
    list-style: none;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .steps li {
    color: #eee;
    font-size: 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
  }
  
  .steps li span {
    font-weight: bold;
    color: #b47bff;
    margin-right: 10px;
    font-size: 18px;
  }
  
  .steps code {
    background: #000;
    padding: 4px 8px;
    border-radius: 6px;
    font-family: monospace;
    color: #fff;
  }
  
  .how-image {
    position: absolute;
    top: -80px; 
    right: -100px; 
    width: 380px;
    z-index: 3;
  }
  
  .how-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(180, 123, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.05);
  }
  
@media (max-width: 768px) {
  .how-box {
    flex-direction: column;
    padding: 30px 20px;
    align-items: center;
    text-align: center;
  }

  .how-text {
    width: 100%;
  }

  .steps {
    padding: 16px;
  }

  .steps li {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .how-image {
    position: relative;
    top: 20px;
    right: 0;
    width: 100%;
    max-width: 320px;
    margin-top: 30px;
  }

  .how-image img {
    width: 100%;
    border-radius: 16px;
  }

  .section-title {
    font-size: 24px;
  }

  .underline {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
  }
}

  
  .stats-section {
    background: linear-gradient(120deg, #0e0e17 0%, #14141f 100%);
    padding: 50px 20px 80px;
    display: flex;
    justify-content: center;
  }
  
  .stats-box {
    display: flex;
    gap: 60px;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px 60px;
    border-radius: 24px;
    box-shadow: 0 0 30px rgba(180, 123, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 200px;
  }
  
  .stat-icon {
    font-size: 36px;
    color: #b47bff;
    flex-shrink: 0;
  }
  
  .stat-item h3 {
    font-size: 36px;
    color: #fff;
    margin: 0;
  }
  
  .stat-item p {
    margin: 0;
    color: #ccc;
    font-size: 16px;
  }
  
  
  .team-section {
    background: #0d0d17;
    padding: 80px 20px;
  }
  
  .team-header {
    max-width: 600px;
    margin: 0 auto 60px auto;
    text-align: center;
  }
  
  .team-header h2 {
    font-size: 40px;
    color: #b47bff;
    margin-bottom: 10px;
  }
  
  .paint-underline-team {
    width: 200px;
    height: 12px;
    background: linear-gradient(135deg, #b47bff, #5e3ca6);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
    margin: 0 auto 10px auto;
  }
  
  .team-header p {
    color: #ccc;
    font-size: 18px;
  }
  
.team-tabs {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  padding: 10px 0;
  box-sizing: border-box;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 40px;
}

.team-tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 10px 20px;
  background: #1b1b2f;
  border-radius: 8px;
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .team-tabs {
    justify-content: center;
  }
}


.tab.active {
  background: var(--primary);
}

  .tab-btn {
    background: transparent;
    border: none;
    font-size: 16px;
    padding: 10px 20px;
    color: #ccc;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
  }
  .tab-btn.active,
  .tab-btn:hover {
    color: #b47bff;
  }
  .tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 50%;
    height: 3px;
    background: #b47bff;
    transform: translateX(-50%);
    border-radius: 2px;
  }
  

  .team-grids {
    position: relative;
  }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
  }
  .hidden {
    display: none;
  }

.team-card {
  position: relative;
  background: #14141f;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.team-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px; 
  background: conic-gradient(from 90deg, #b47bff, #5e3ca6, #9c59ff, #b47bff);
  -webkit-mask:

    linear-gradient(#fff 0 0) content-box, 

    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
          mask-composite: exclude;
  z-index: 1;
  border-radius: 18px;
}


.team-card > * {
  position: relative;
  z-index: 2;
}


.team-card img {
  width: 70%;           
  max-width: 150px;     
  height: auto;
  display: block;
  margin: 20px auto 10px;
  border-radius: 8px;    
  transition: transform 0.4s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.team-card:hover img {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(180,123,255,0.3);
}

.team-card h3 {
  margin: 15px 0 5px;
  color: #fff;
  font-size: 18px;
}
.team-card p {
  margin-bottom: 20px;
  color: #ccc;
  font-size: 14px;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(180,123,255,0.4);
}
.team-card:hover img {
  transform: scale(1.08);
}

  
  
  .partners-static {
    padding: 60px 20px;
    background: transparent;
    text-align: center;
  }
  
  .partners-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px;
    align-items: center;
  }
  
  .partners-container img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0%) brightness(1.2);
    transition: filter 0.3s ease, transform 0.3s ease;
  }
  
  .partners-container img:hover {
    filter: grayscale(100%) brightness(0.9);
    transform: scale(1.05);
  }
  
  .partner-header-left {
    max-width: 600px;
    margin: 0 auto 60px auto;
    text-align: center;
  }
  
  .partner-header-left h2 {
    font-size: 40px;
    color: #b47bff;
    margin-bottom: 10px;
  }

@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .partner-item img {
    max-width: 90%;
  }
}


  .footer {
    background: #0f0f17;
    padding: 40px 20px 10px; 
    color: #ccc;
    font-family: 'Poppins', sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
  }
  
  .footer-left {
    flex: 1 1 300px;
    text-align: left;
  }
  
  .footer-logo {
    height: 60px;
    margin-bottom: 10px;
  }
  
  .footer-left h2 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .footer-disclaimer {
    font-size: 12px;
    color: #777;
    margin: 10px 0;
    max-width: 300px;
    margin-left: unset;  
  }
  
  .footer-email {
    color: #999;
    font-size: 14px;
  }
  
  .footer-right {
    display: flex;
    flex: 2 1 500px;
    justify-content: flex-end; 
    flex-wrap: wrap;
    text-align: left;
  }
  
  .footer-column {
    min-width: 150px;
  }
  
  .footer-column h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column li {
    margin: 8px 0;
  }
  
  .footer-column a {
    color: #b47bff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-column a:hover {
    color: #fff;
  }
  
  .footer-bottom {
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    text-align: center;
  }
  
  .footer-bottom p {
    font-size: 14px;
    color: #777;
  }

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-left {
    text-align: center;
    margin-bottom: 10px;
  }

  .footer-disclaimer {
    margin: 5px auto;
    font-size: 11px;
    max-width: 90%;
  }

  .footer-right {
    justify-content: center;
    margin-top: 10px;
    gap: 10px;
    text-align: center;
  }

  .footer-column {
    min-width: unset;
  }

  .footer-column h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footer-column li {
    margin: 6px 0;
  }

  .footer-column a {
    font-size: 13px;
  }

.footer-bottom {
  margin-top: 20px;  
  padding-top: 10px;
}


  .footer-bottom p {
    font-size: 12px;
  }
}
.footer *,
.footer {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}



  .rules-wrapper {
  padding: 60px 20px;
  background-color: #0c0c0c;
  color: #ddd;
}

.rules-container {
  display: flex;
  gap: 40px;
}

.rules-sidebar {
  flex: 1;
  margin-right: 40px;
}

.toc-box {
  background: #141414;
  border: 1px solid #2c2c2c;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 100px;
  display: inline-block;
  min-width: 240px;
  max-width: 280px;
}

.toc-box h3 {
  margin-bottom: 15px;
  color: #b47bff;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.toc-box ul {
  list-style: none;
  padding-left: 0;
}

.toc-box ul li {
  margin: 10px 0;
}

.toc-box ul li a {
  color: #ccc;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.toc-box ul li a::before {
  content: '➤';
  color: #b47bff;
  margin-right: 8px;
}

.toc-box ul li a:hover {
  color: #b47bff;
  transform: translateX(3px);
}

.toc-box ul li a.active {
  color: #fff;
  font-weight: bold;
  background: rgba(180, 123, 255, 0.1);
  border-left: 3px solid #b47bff;
  padding-left: 10px;
}

.regulations-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.regulations-content {
  flex: 1;
}

.regulations-content h2 {
  text-align: left;
  font-size: 28px;
  margin-top: 60px;
  font-family: monospace;
}

.rulesheader {
  text-align: center;
  font-size: 25px;
  font-family: monospace;
  text-decoration: none;
}

.updated-date {
  text-align: center;
  margin-bottom: 40px;
  color: #999;
}

.rules-content {
  flex: 1;
}

.rules-content h2 {
  text-align: center;
  font-size: 2rem;
  margin-top: 60px;
  margin-bottom: 20px;
  color: #b47bff;
}

.rules-content p {
  margin-bottom: 20px;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

.rules-intro {
  background-color: #0c0c0c;
  padding-top: 40px;
  padding-bottom: 20px;
  text-align: center;
  color: #ddd;
}

.rules-title {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #b47bff;
}

.last-update {
  font-size: 1rem;
  color: #999;
}

.rulesdesc {
  text-align: left;
}

@media (max-width: 768px) {
  .regulations-container {
    flex-direction: column;
    gap: 20px;
    padding: 40px 15px;
  }

  .rules-sidebar {
    margin-right: 0;
    width: 100%;
  }

  .toc-box {
    max-width: 100%;
    width: 100%;
    position: relative;
    top: unset;
  }

  .rules-content {
    width: 100%;
  }

  .rulesdesc {
    text-align: left;
    padding: 0 5px;
  }

  .rules-content h2 {
    text-align: left;
    font-size: 1.5rem;
  }

  .rules-content p {
    font-size: 14px;
  }
}

.hero-rules {
  position: relative;
  background: linear-gradient(to right, rgba(10, 10, 20, 0.95), rgba(10, 10, 20, 0.6)),
    url('https://w0.peakpx.com/wallpaper/738/569/HD-wallpaper-gta-5-franklin-character-gta-5-characters-games.jpg');
  background-size: cover;
  background-position: center;
  padding: 160px 20px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-rules-inner {
  text-align: center;
  color: #fff;
}

.hero-rules h1 {
  font-size: 60px;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero-rules .breadcrumb {
  font-size: 16px;
  color: #ccc;
}

.hero-rules-text {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.regulations-table-wrapper {
  overflow-x: auto;
  margin-top: 20px;
}

.regulations-table {
  width: 100%;
  border-collapse: collapse;
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 8px;
  overflow: hidden;
  font-size: 15px;
}

.regulations-table th,
.regulations-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #333;
}

.regulations-table thead {
  background-color: #2a2a2a;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
}

.regulations-table tbody tr:hover {
  background-color: #252525;
}

.regulations-table td {
  color: #ccc;
}



  .hero-applications {
  position: relative;
  background: linear-gradient(to right, rgba(10, 10, 20, 0.95), rgba(10, 10, 20, 0.6)),
    url('https://files.bo3.gg/uploads/image/65128/image/webp-4fed54fc80b0a8dfa2cc14ca77664954.webp');
  background-size: cover;
  background-position: center;
  padding: 160px 20px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-applications-inner {
  text-align: center;
  color: #fff;
}

.hero-applications h1 {
  font-size: 60px;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero-applications .breadcrumb {
  font-size: 16px;
  color: #ccc;
}


.hero-applications-text {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.applications-section {
  padding: 1px 20px;
  background-color: #0f0f1a;
}

.application-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #14141f;
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.application-entry i {
  margin-right: 12px;
  font-size: 20px;
  color: #b47bff;
}

.application-entry span:first-of-type {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-grow: 1;
}

.status {
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: #333;
}

.status.on {
  background: #2ecc71;
}

.status.off {
  background: #e74c3c;
}


.application-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-label {
  color: #fff;
  font-weight: 500;
  margin-right: 5px;
  font-weight: bold;
}


.applications-info {
  padding: 80px 20px 60px;
  text-align: center;
  background: #0f0f1a;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.applications-info h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #b47bff;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.paint-underline-applications {
  width: 180px;
  height: 12px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #b47bff, #5e3ca6);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.applications-info p {
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
  color: #ccc;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.applications-info::before,
.applications-info::after {
  content: '';
  position: absolute;
  opacity: 0.06;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: 120px;
  filter: blur(1px);
}

.applications-info::before {
  top: 20%;
  left: 5%;
  width: 120px;
  height: 120px;
  background-image: url('https://cdn-icons-png.flaticon.com/512/1077/1077012.png');
}

.applications-info::after {
  bottom: 10%;
  right: 8%;
  width: 100px;
  height: 100px;
  background-image: url('https://cdn-icons-png.flaticon.com/512/1828/1828817.png');
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  background-color: #222;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background 0.3s ease, color 0.3s ease;
}

.status-badge.on {
  background-color: #2ecc71;
  color: #fff;
}

.status-badge.on i {
  color: #fff;
}

.status-badge.off {
  background-color: #e74c3c; 
  color: #fff;
}

.status-badge.off i {
  color: #fff;
}

.glow-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #b47bff, #5e3ca6);
  color: white;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(180, 123, 255, 0.5);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.glow-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 10%, transparent 50%);
  transform: rotate(45deg);
  pointer-events: none;
  animation: shine 3s infinite linear;
}

.glow-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(180, 123, 255, 0.7);
}

@keyframes shine {
  from {
    transform: rotate(45deg) translate(-50%, -50%);
  }
  to {
    transform: rotate(45deg) translate(100%, 100%);
  }
}


.hero-applications {
  position: relative;
  background: linear-gradient(to right, rgba(10, 10, 20, 0.95), rgba(10, 10, 20, 0.6)),
    url('https://static0.gamerantimages.com/wordpress/wp-content/uploads/2023/11/featured-gta-5-how-to-switch-characters-guide.jpg');
  background-size: cover;
  background-position: center;
  padding: 160px 20px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-applications-inner {
  text-align: center;
  color: #fff;
}

.hero-applications h1 {
  font-size: 60px;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero-applications .breadcrumb {
  font-size: 16px;
  color: #ccc;
}


.hero-applications-text {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.faq-section {
  background: #0f0f1a;
  padding: 60px 20px;
}

.faq-container {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}


.faq-keybinds {
  flex: 1 1 280px;
  background: #14141f;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.faq-keybinds h2 {
  color: #b47bff;
  margin-bottom: 20px;
}

.faq-keybinds ul {
  list-style: none;
  padding: 0;
}

.faq-keybinds li {
  margin-bottom: 12px;
  color: #ccc;
  font-size: 15px;
}


.accordion {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 8px;
}

.accordion-item + .accordion-item {
  margin-top: 10px;
}

.accordion-header {
  width: 100%;
  background: #1a1a2e;
  color: #fff;
  padding: 15px 20px;
  font-size: 16px;
  text-align: left;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: #26263a;
}

.accordion-icon {
  transition: transform 0.3s;
  color: #b47bff;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  background: #14141f;
  transition: max-height 0.4s ease;
}

.accordion-body p {
  padding: 15px 20px;
  margin: 0;
  color: #ccc;
  line-height: 1.6;
}


.accordion-item.active .accordion-body {
  max-height: 500px; 
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
    gap: 30px;
  }

  .faq-keybinds,
  .accordion {
    width: 100%;
  }
}


    .error-container {
      height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      padding: 20px;
    }

    .error-container h1 {
      font-size: 8rem;
      margin: 0;
      background: linear-gradient(45deg, #b47bff, #5e3ca6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .error-container h2 {
      font-size: 2rem;
      margin-bottom: 10px;
    }

    .error-container p {
      font-size: 1.1rem;
      color: #ccc;
      margin-bottom: 30px;
    }

    .error-container a {
      display: inline-block;
      padding: 12px 24px;
      background: #5e3ca6;
      color: white;
      text-decoration: none;
      border-radius: 8px;
      transition: background 0.3s ease;
    }

    .error-container a:hover {
      background: #b47bff;
    }

    .bg-gta {
      position: absolute;
      inset: 0;
      z-index: -1;
      background: url('https://images.ctfassets.net/wn7ipiv9ue5v/NwgElAZU8ZdLmW6v7812Y/3d8a8eb721c109b12bbc2422ba8b4f68/3-4_GTA--Gen_9_Vista_Reshoot_CF__3___1_.jpg') no-repeat center center/cover;
      opacity: 0.15;
      filter: blur(3px);
    }

    .glow-text {
      animation: glow 2s ease-in-out infinite alternate;
    }

    @keyframes glow {
      from {
        text-shadow: 0 0 10px #b47bff, 0 0 20px #5e3ca6;
      }
      to {
        text-shadow: 0 0 20px #b47bff, 0 0 30px #5e3ca6;
      }
    }