
  :root {
    --primary: #1e3c72;
    --secondary: #2a5298;
    --accent: #6a11cb;
    --text: #ffffff;
    --bg: #0a192f;
    --card-bg: rgba(255, 255, 255, 0.1);
    --border: rgba(255, 255, 255, 0.3);
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
  }

  body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(106, 17, 203, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 70%, rgba(30, 60, 114, 0.1) 0%, transparent 50%);
  }

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

  header {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
    max-width: 800px;
  }

  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff, #6a11cb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 8s ease infinite;
  }

  @keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
  }

  .notice {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    z-index: 1000;
    backdrop-filter: blur(5px);
  }

  .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: float 15s linear infinite;
    opacity: 0.6;
  }

  @keyframes float {
    0% { transform: translate(0, 0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translate(100vw, -100vh); opacity: 0; }
  }

  article {
    padding: 80px 0;
  }

  article h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffffff;
    position: relative;
    display: inline-block;
  }

  article h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
  }

  article h3 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #ffffff;
  }

  article p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
  }

  pre {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    overflow: auto;
    border-left: 4px solid var(--accent);
  }

  code {
    font-family: 'Courier New', monospace;
    color: #f8f8f2;
  }

  table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
  }

  th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  th {
    background: rgba(106, 17, 203, 0.3);
    font-weight: 600;
  }

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

  .image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
  }

  .image-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }

  .image-card img {
    width: 100%;
    height: auto;
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
  }

  .nav-link {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .nav-link.active {
    background: var(--accent);
    transform: scale(1.3);
  }

  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.5rem;
    }
    
    article h2 {
      font-size: 2rem;
    }
    
    article h3 {
      font-size: 1.5rem;
    }
    
    .nav-links {
      display: none;
    }
  }

  @media (max-width: 480px) {
    .hero h1 {
      font-size: 2rem;
    }
    
    article {
      padding: 40px 0;
    }
  }

