/* === BASE STYLES === */:root {
      --primary: #00ff88;
      --secondary: #ff00ff;
      --accent: #00d4ff;
      --dark: #0a0e27;
      --darker: #050714;
      --light: #ffffff;
      --gradient-primary: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
      --gradient-secondary: linear-gradient(135deg, #ff00ff 0%, #00d4ff 100%);
      --gradient-dark: linear-gradient(180deg, #0a0e27 0%, #050714 100%);
      --shadow-sm: 0 4px 6px rgba(0, 255, 136, 0.1);
      --shadow-md: 0 8px 16px rgba(0, 255, 136, 0.15);
      --shadow-lg: 0 16px 48px rgba(0, 255, 136, 0.2);
      --shadow-glow: 0 0 40px rgba(0, 255, 136, 0.4);
      --border-radius: 16px;
      --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      overflow-x: hidden;
      max-width: 100vw;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--darker);
      color: var(--light);
      overflow-x: hidden;
      position: relative;
      max-width: 100vw;
      width: 100%;
    }

    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
                  radial-gradient(circle at 80% 50%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
                  radial-gradient(circle at 50% 100%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
      pointer-events: none;
      z-index: 1;
    }

    .container {
      max-width: 1200px;
      position: relative;
      z-index: 2;
      width: 100%;
      padding-left: 20px;
      padding-right: 20px;
      margin-left: auto;
      margin-right: auto;
    }

    h1, h2, h3, h4 {
      font-family: 'Orbitron', sans-serif;
      font-weight: 900;
      line-height: 1.2;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    h1 {
      font-size: 72px;
      margin-bottom: 24px;
      text-transform: uppercase;
      letter-spacing: -2px;
    }

    h2 {
      font-size: 48px;
      margin-bottom: 32px;
      text-transform: uppercase;
    }

    h3 {
      font-size: 32px;
      margin-bottom: 20px;
    }

    p {
      font-size: 18px;
      line-height: 1.8;
      margin-bottom: 20px;
      color: rgba(255, 255, 255, 0.9);
    }

    a {
      color: var(--primary);
      text-decoration: none;
      transition: var(--transition);
      position: relative;
    }

    a:hover {
      color: var(--accent);
      text-shadow: 0 0 20px currentColor;
    }

    .btn-primary {
      display: inline-block;
      padding: 18px 48px;
      background: var(--gradient-primary);
      color: var(--dark);
      font-size: 18px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      border-radius: var(--border-radius);
      transition: var(--transition);
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-glow);
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transition: left 0.6s;
    }

    .btn-primary:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 0 60px rgba(0, 255, 136, 0.6);
    }

    .btn-primary:hover::before {
      left: 100%;
    }

    .card {
      background: rgba(10, 14, 39, 0.6);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(0, 255, 136, 0.2);
      border-radius: var(--border-radius);
      padding: 40px;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.4s;
      pointer-events: none;
    }

    .card:hover {
      transform: translateY(-5px);
      border-color: var(--primary);
      box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 255, 136, 0.2);
    }

    .card:hover::before {
      opacity: 1;
    }

    .table {
      background: #0a0e27;
      color: var(--light);
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }

    .table thead {
      background: var(--gradient-primary);
    }

    .table thead th {
      color: var(--dark);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 20px;
      border: none;
    }

    .table tbody {
      background: #0a0e27;
    }

    .table tbody td {
      padding: 18px 20px;
      border-color: rgba(0, 255, 136, 0.1);
      color: #ffffff;
      background: #0a0e27;
    }

    .table tbody tr {
      transition: var(--transition);
      background: #0a0e27;
    }

    .table tbody tr:hover {
      background: rgba(0, 255, 136, 0.1);
    }

    /* === LAYOUT STYLES === */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(10, 14, 39, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0, 255, 136, 0.2);
      z-index: 1000;
      padding: 20px 0;
      transition: var(--transition);
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
    }

    .logo {
      position: relative;
    }

    .logo a {
      display: inline-block;
      text-decoration: none;
    }

    .logo-img {
      height: 40px;
      width: auto;
      display: block;
      transition: var(--transition);
    }

    .logo:hover .logo-img {
      transform: scale(1.05);
      opacity: 0.9;
    }

    .logo-text {
      font-family: 'Orbitron', sans-serif;
      font-size: 28px;
      font-weight: 900;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-transform: uppercase;
      letter-spacing: 2px;
      position: relative;
      display: inline-block;
    }

    .logo-text::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--gradient-primary);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s;
    }

    .logo:hover .logo-text::after {
      transform: scaleX(1);
    }

    .main-nav {
      display: flex;
      align-items: center;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 32px;
      height: 24px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1002;
      position: relative;
      margin-left: auto;
      margin-right: 15px;
    }

    .menu-toggle span {
      display: block;
      width: 100%;
      height: 3px;
      background: var(--primary);
      transition: var(--transition);
      border-radius: 2px;
      transform-origin: center;
    }

    .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(7px, 7px);
    }

    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }

    .menu-toggle:hover span {
      background: var(--accent);
    }

    .nav-list {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: 40px;
    }

    .nav-list a {
      color: var(--light);
      font-size: 16px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: var(--transition);
      position: relative;
    }

    .nav-list a.btn-primary {
      color: var(--dark);
      background: var(--gradient-primary);
      padding: 12px 24px;
    }

    .nav-list a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--primary);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.3s;
    }

    .nav-list a:hover {
      color: var(--primary);
    }

    .nav-list a:hover::after {
      transform: scaleX(1);
    }

    .site-footer {
      background: var(--gradient-dark);
      padding: 60px 0 40px;
      border-top: 1px solid rgba(0, 255, 136, 0.2);
      margin-top: 100px;
    }

    .footer-content {
      text-align: center;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      list-style: none;
      gap: 40px;
      padding: 0;
      margin: 0;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: var(--transition);
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    @media (max-width: 767px) {
      .site-header {
        padding: 15px 0;
      }

      .header-content {
        flex-wrap: nowrap;
      }

      .logo {
        flex: 1;
      }

      .logo-text {
        font-size: 24px;
      }

      .logo-img {
        height: 32px;
      }

      .menu-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
        margin-right: 10px;
      }

      .header-content .btn-primary {
        display: inline-block;
        order: 3;
        padding: 12px 24px;
        font-size: 14px;
      }

      .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 80px 20px 40px;
        z-index: 1001;
        overflow-y: auto;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
      }

      .main-nav.active {
        transform: translateX(0);
      }

      .main-nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: rgba(10, 14, 39, 0.95);
        border-bottom: 1px solid rgba(0, 255, 136, 0.2);
      }

      .nav-list {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
      }

      .nav-list li {
        width: 100%;
      }

      .nav-list a {
        font-size: 18px;
        display: block;
        padding: 15px 20px;
        border-radius: var(--border-radius);
        background: rgba(0, 255, 136, 0.05);
        border: 1px solid rgba(0, 255, 136, 0.1);
        transition: var(--transition);
      }

      .nav-list a:hover {
        background: rgba(0, 255, 136, 0.15);
        border-color: var(--primary);
        transform: translateX(5px);
        color: var(--primary);
      }



      body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
      }

      body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1000;
        animation: fadeIn 0.4s ease-out;
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

      .site-header {
        z-index: 1003;
      }

      .menu-toggle {
        z-index: 1004;
      }

      .footer-links {
        flex-direction: column;
        gap: 15px;
      }
    }