/* theme.css — Unified site style for whykusanagi.xyz */

:root {
    --accent: #d94f90;
    --bg: #0a0a0a;
    --overlay: rgba(0, 0, 0, 0.85);
    --glass: rgba(28, 18, 48, 0.8);
    --border: #4c2967;
    --text: #fdf3f8;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    color: var(--text);
    background: url('https://pub-99b382d99f3c49f49fbbd88da5b3ce92.r2.dev/hero_image.png') no-repeat center center fixed,
                linear-gradient(180deg, rgba(5, 0, 16, 0.7), rgba(10, 10, 10, 0.7) 50%, rgba(21, 14, 32, 0.8));
    background-size: cover;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
  }
  
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(5, 0, 16, 0.7), rgba(10, 10, 10, 0.7) 50%, rgba(21, 14, 32, 0.8));
    backdrop-filter: blur(4px);
    pointer-events: none;
  }
  
  .container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    flex-wrap: wrap;
  }
  
  .content {
    flex: 1 1 500px;
    max-width: 600px;
    padding: 2rem;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(217, 79, 144, 0.3);
    animation: slideIn 1.2s ease-in-out;
  }
  
  .logo {
    display: block;
    max-width: 300px;
    margin: 0 auto 1.5rem;
  }
  
  .intro {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  
  .buttons a {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .buttons a:hover {
    background: #ad1b6d;
    transform: translateY(-2px);
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 1.5rem;
  }
  
  .social-icons a {
    color: var(--text);
    transition: transform 0.2s ease, color 0.2s ease;
  }
  
  .social-icons a:hover {
    color: var(--accent);
    transform: scale(1.1);
  }
  
  .character {
    flex: 1;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
  }
  
  .character img {
    max-height: 90vh;
    width: auto;
  }
  
  footer {
    text-align: center;
    font-size: 0.85rem;
    color: #ccc;
    padding: 1rem;
    z-index: 1;
    position: relative;
  }
  
  footer a {
    color: #aaa;
    text-decoration: none;
  }
  
  footer a:hover {
    color: var(--accent);
  }
  
  @keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  @keyframes slideIn {
    0% { transform: translateY(40px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
  }
  
  @media screen and (max-width: 1000px) {
    .container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .character {
      margin-top: 2rem;
    }
  
    .character img {
      max-width: 80%;
      max-height: none;
    }
  }
  
  .glitch-word {
    position: relative;
    display: inline-block;
    color: #fdf3f8;
  }
  
  .glitch-word::before,
  .glitch-word::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    color: var(--accent);
    z-index: -1;
    opacity: 0.7;
  }
  
  .glitch-word::before {
    animation: glitchShift1 1.8s infinite linear alternate-reverse;
  }
  
  .glitch-word::after {
    animation: glitchShift2 1.5s infinite linear alternate;
  }
  
  @keyframes glitchShift1 {
    0% { transform: translate(0px, 0px); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -1px); }
    60% { transform: translate(1px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0px, 0px); }
  }
  
  @keyframes glitchShift2 {
    0% { transform: translate(0px, 0px); }
    25% { transform: translate(2px, -2px); }
    50% { transform: translate(-1px, 2px); }
    75% { transform: translate(2px, 1px); }
    100% { transform: translate(0px, 0px); }
  }
  