
  @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
  
  :root {
    --primary: #0f2027;
    --secondary: #203a43;
    --accent: #00c6ff;
    --text: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.1);
    --neon-purple: #8a2be2;
    --neon-blue: #0072ff;
    --dark-bg: #000428;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    background: linear-gradient(135deg, var(--primary), var(--secondary), #2c5364);
    line-height: 1.6;
    min-height: 100%;
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
  }
  
  .header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
  }
  
  .header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
  }
  
  h1, h2, h3, h4 {
    font-weight: 500;
    margin: 1.5rem 0;
    line-height: 1.3;
  }
  
  h1 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--accent), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.3);
  }
  
  h2 {
    font-size: 1.8rem;
    color: var(--accent);
    position: relative;
    padding-left: 1rem;
  }
  
  h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 80%;
    background: var(--accent);
    border-radius: 5px;
  }
  
  h3 {
    font-size: 1.5rem;
    color: var(--neon-blue);
    margin-top: 2rem;
  }
  
  p {
    font-size: 1.1rem;
    margin: 1rem 0;
  }
  
  .card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  }
  
  .image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
  }
  
  .tech-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .tech-image:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 198, 255, 0.3);
  }
  
  pre {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    overflow-x: auto;
    border-left: 4px solid var(--accent);
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  code {
    font-family: 'Roboto Mono', monospace;
    background: rgba(0, 198, 255, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    color: var(--accent);
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--card-bg);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    overflow: hidden;
  }
  
  th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  th {
    background: rgba(0, 198, 255, 0.2);
    color: var(--accent);
    font-weight: 500;
  }
  
  tr:hover {
    background: rgba(255, 255, 255, 0.05);
  }
  
  .note {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    max-width: 300px;
    backdrop-filter: blur(5px);
    z-index: 100;
  }
  
  .particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
    background-image: 
      radial-gradient(circle at 20% 30%, rgba(0, 198, 255, 0.1) 0%, transparent 20%),
      radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.1) 0%, transparent 20%);
    animation: moveParticles 30s linear infinite;
  }
  
  @keyframes moveParticles {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-5%, -5%); }
    50% { transform: translate(-10%, 0); }
    75% { transform: translate(-5%, 5%); }
    100% { transform: translate(0, 0); }
  }
  
  .glow {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.3), transparent 70%);
    filter: blur(20px);
    z-index: -1;
  }
  
  .glow-1 {
    top: 20%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
  }
  
  .glow-2 {
    bottom: 30%;
    right: 15%;
    animation: float 10s ease-in-out infinite 2s;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
  }
  
  @media (max-width: 768px) {
    .container {
      padding: 1rem;
    }
    
    h1 {
      font-size: 2rem;
    }
    
    h2 {
      font-size: 1.5rem;
    }
    
    .image-grid {
      grid-template-columns: 1fr;
    }
  }

