/* === BASE STYLES === */:root {
      --primary-dark: #0a0e27;
      --primary-mid: #1a1f3a;
      --accent-cyan: #00f0ff;
      --accent-purple: #b447ff;
      --accent-pink: #ff2e97;
      --text-light: #e8eaf6;
      --text-gray: #a0a8c0;
      --gradient-primary: linear-gradient(135deg, #00f0ff 0%, #b447ff 50%, #ff2e97 100%);
      --gradient-dark: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
      --shadow-glow: 0 0 40px rgba(0, 240, 255, 0.3);
      --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.5);
      --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: var(--primary-dark);
      color: var(--text-light);
      line-height: 1.7;
      overflow-x: hidden;
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
    }

.inner-page {
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding-top: 6.5rem;
}

    h1, h2, h3, h4 {
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }

    h1 {
      font-size: clamp(2.5rem, 6vw, 5rem);
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.02em;
    }

    h2 {
      font-size: clamp(2rem, 4vw, 3.5rem);
      color: var(--text-light);
      position: relative;
      display: inline-block;
    }

    h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 60%;
      height: 4px;
      background: var(--gradient-primary);
      border-radius: 2px;
    }

    h3 {
      font-size: clamp(1.5rem, 3vw, 2rem);
      color: var(--accent-cyan);
    }

    h4 {
      font-size: clamp(1.2rem, 2.5vw, 1.5rem);
      color: var(--text-light);
    }

    p {
      color: var(--text-gray);
      margin-bottom: 1.5rem;
      font-size: clamp(1rem, 1.5vw, 1.125rem);
    }

    a {
      color: var(--accent-cyan);
      text-decoration: none;
      transition: var(--transition-smooth);
    }

    a:hover {
      color: var(--accent-purple);
    }

    .btn-primary {
      background: var(--gradient-primary);
      color: white;
      padding: 1rem 2.5rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.125rem;
      border: none;
      cursor: pointer;
      transition: var(--transition-smooth);
      box-shadow: var(--shadow-glow);
      position: relative;
      overflow: hidden;
      display: inline-block;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

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

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 0 60px rgba(0, 240, 255, 0.5);
    }

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

    .card {
      background: var(--primary-mid);
      border-radius: 20px;
      padding: 2rem;
      transition: var(--transition-smooth);
      border: 1px solid rgba(0, 240, 255, 0.2);
      box-shadow: var(--shadow-deep);
    }

    .card:hover {
      transform: translateY(-10px);
      border-color: var(--accent-cyan);
      box-shadow: 0 30px 80px rgba(0, 240, 255, 0.3);
    }

    .card img {
      width: 100%;
      height: auto;
      border-radius: 12px;
      margin-bottom: 1.5rem;
    }

    ul {
      list-style: none;
      padding-left: 0;
    }

    ul li {
      padding: 0.75rem 0;
      padding-left: 2rem;
      position: relative;
      color: var(--text-gray);
    }

    ul li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--accent-cyan);
      font-weight: bold;
    }

    table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      margin: 2rem 0;
      background: var(--primary-mid);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow-deep);
    }

    thead {
      background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(180, 71, 255, 0.2));
    }

    th {
      padding: 1.5rem 1rem;
      text-align: left;
      font-weight: 600;
      color: var(--text-light);
      font-size: 1.125rem;
    }

    td {
      padding: 1.25rem 1rem;
      border-top: 1px solid rgba(0, 240, 255, 0.1);
      color: var(--text-gray);
    }

    tbody tr {
      transition: var(--transition-smooth);
    }

    tbody tr:hover {
      background: rgba(0, 240, 255, 0.05);
    }

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

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 2rem;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 72px;
      height: 72px;
      text-decoration: none;
    }

    .logo-icon {
      width: 100%;
      height: auto;
      display: block;
    }

    .nav {
      display: flex;
      align-items: center;
      flex: 1;
      justify-content: center;
    }

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

    .nav-list li a {
      color: var(--text-light);
      font-weight: 500;
      font-size: 1.125rem;
      transition: var(--transition-smooth);
      position: relative;
    }

    .nav-list li a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gradient-primary);
      transition: var(--transition-smooth);
    }

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

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
    }

    .hamburger span {
      width: 30px;
      height: 3px;
      background: var(--gradient-primary);
      border-radius: 2px;
      transition: var(--transition-smooth);
    }

    .footer {
      background: var(--primary-mid);
      padding: 3rem 0;
      margin-top: 5rem;
      border-top: 1px solid rgba(0, 240, 255, 0.2);
    }

    .footer-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .footer-links ul {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .footer-links ul li::before {
      display: none;
    }

    .footer-info {
      text-align: right;
    }

    .footer-info p {
      margin-bottom: 0.5rem;
      font-size: 0.95rem;
    }

@media (max-width: 767px) {
      .header-content {
        flex-wrap: wrap;
      }

      .inner-page {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
    padding-top: 9.5rem;
      }

      .nav {
        order: 2;
        width: auto;
        margin-left: auto;
        justify-content: flex-end;
      }

      .nav-list {
        position: fixed;
        top: 150px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 150px);
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition-smooth);
        align-items: flex-start;
      }

      .nav-list.active {
        left: 0;
      }

      .hamburger {
        display: flex;
      }

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

      .hamburger.active span:nth-child(2) {
        opacity: 0;
      }

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

      .header-content > .btn-primary {
        order: 3;
        width: 100%;
        margin-top: 1rem;
      }

      .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
      }

      .footer-links ul {
        justify-content: center;
      }

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

      h1 {
        font-size: 2.5rem;
      }

      h2 {
        font-size: 2rem;
      }

      section {
        padding: 3rem 0;
      }

      .hero-section {
        min-height: 80vh;
      }
    }