/* ===== VARIABLES & RESET ===== */
:root {
    --bg: #000000;
    --surface: #0a0a0a;
    --surface-2: #111111;
    --text: #ffffff;
    --text-muted: #888888;
    --border: #222222;
    --accent: #ffffff;

    --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 12px;
    --border-radius-sm: 6px;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* ===== BASE STYLES ===== */
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
  }
  
  /* ===== TYPOGRAPHY ===== */
  h1 {
    font-size: 3rem;
    font-weight: 300;
    color: var(--text);
    margin-bottom: 2.5rem;
    letter-spacing: 8px;
    text-transform: lowercase;
  }
  
  /* ===== LAYOUT COMPONENTS ===== */
  .container {
    width: 100%;
    max-width: 500px;
    padding: 4rem 2rem;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
  }
  
  .social-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 0 auto 2rem;
  }

  .social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 0.5rem;
    border-radius: var(--border-radius);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-decoration: none;
  }

  .social-link:hover {
    border-color: var(--accent);
    background: var(--surface-2);
  }

  .social-link img {
    width: 24px;
    height: 24px;
    display: block;
  }

  .social-link span {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: lowercase;
    letter-spacing: 0.5px;
  }

  .social-link:hover span {
    color: var(--text);
  }
  
  .img-container {
    position: relative;
    margin: 3rem auto 0;
    width: 100%;
    max-width: 280px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
  }

  .img-container img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  
  /* ===== RESPONSIVE DESIGN ===== */
  @media (max-width: 768px) {
    body {
      padding: 1rem;
    }

    .container {
      padding: 2rem 1.5rem;
    }

    h1 {
      font-size: 2rem;
      letter-spacing: 4px;
    }

    .social-links {
      gap: 0.5rem;
    }

    .social-link {
      padding: 0.75rem 1rem;
      font-size: 0.85rem;
    }
  }
  
  /* ===== ANIMATIONS ===== */
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* Star styles */
  #stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }

  .star {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: twinkle infinite ease-in-out;
  }

  @keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
  }

  .spinning {
    animation: spin 0.8s linear infinite;
  }

  html, body {
    overflow: hidden;
    height: 100%;
  }
  