/* киберпанк основа */
.cyber-body {
    background: #0b0f0e;
    background-image: 
      linear-gradient(rgba(0, 255, 200, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 255, 200, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 0;
    color: #b3ffe0;
  }
  
  .cyber-container {
    max-width: 800px;
    width: 100%;
    position: relative;
  }
  
  .glitch-wrapper {
    text-align: center;
    margin-bottom: 10px;
  }
  
  .glitch {
    font-size: 3.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #0ff;
    text-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 40px #0ff;
    letter-spacing: 8px;
    position: relative;
    animation: glitch-skew 4s infinite;
  }
  
  .glitch::before,
  .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #0ff;
  }
  
  .glitch::before {
    animation: glitch 0.3s infinite;
    color: #f0f;
    z-index: -1;
    text-shadow: 2px 0 #f0f;
    clip: rect(0, 900px, 0, 0);
  }
  
  .glitch::after {
    animation: glitch 0.3s infinite reverse;
    color: #0ff;
    z-index: -2;
    text-shadow: -2px 0 #0ff;
    clip: rect(0, 900px, 0, 0);
  }
  
  @keyframes glitch {
    0% { clip: rect(42px, 9999px, 44px, 0); }
    20% { clip: rect(12px, 9999px, 59px, 0); }
    40% { clip: rect(48px, 9999px, 29px, 0); }
    60% { clip: rect(73px, 9999px, 89px, 0); }
    80% { clip: rect(6px, 9999px, 32px, 0); }
    100% { clip: rect(25px, 9999px, 88px, 0); }
  }
  
  .cyber-subtitle {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .cyber-tag {
    background: #0f2a2a;
    padding: 5px 20px;
    border: 1px solid #0ff;
    color: #0ff;
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
    box-shadow: 0 0 10px #0ff8;
  }
  
  .cyber-card {
    background: rgba(10, 20, 18, 0.85);
    border: 2px solid #0ff;
    box-shadow: 0 0 30px #0ff6, inset 0 0 20px #0ff2;
    padding: 30px 28px;
    border-radius: 16px;
    backdrop-filter: blur(5px);
    margin-bottom: 30px;
  }
  
  .terminal-line {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  
  .prompt {
    color: #0f0;
    font-weight: bold;
  }
  
  .cmd {
    color: #0ff;
  }
  
  .terminal-output {
    font-family: 'Courier New', monospace;
    color: #adf0d5;
    margin-left: 20px;
    margin-bottom: 10px;
    font-size: 1.1rem;
  }
  
  .routine {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .routine-item {
    display: flex;
    align-items: baseline;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .time-of-day {
    font-weight: bold;
    min-width: 80px;
  }
  
  .day {
    color: #ffd966;
    text-shadow: 0 0 5px #ffb347;
  }
  
  .night {
    color: #9b9bff;
    text-shadow: 0 0 5px #6a6aff;
  }
  
  .lang {
    font-weight: bold;
    color: #0ff;
    min-width: 70px;
  }
  
  .comment {
    color: #7a9e8f;
    font-style: italic;
  }
  
  .cyber-link {
    color: #0ff;
    text-decoration: none;
    border-bottom: 1px dashed #0ff;
    font-size: 1.2rem;
    transition: 0.2s;
  }
  
  .cyber-link:hover {
    text-shadow: 0 0 8px #0ff;
    border-bottom-style: solid;
  }
  
  .cyber-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-family: 'Courier New', monospace;
    color: #6f9e8a;
    border-top: 1px solid #1a4a4a;
    padding-top: 20px;
  }
  
  .scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg, rgba(0,255,200,0.02) 0px, rgba(0,0,0,0.2) 2px, transparent 3px);
    pointer-events: none;
    z-index: 999;
  }
  
  /* адаптив */
  @media (max-width: 600px) {
    .glitch { font-size: 2.4rem; letter-spacing: 3px; }
    .cyber-card { padding: 20px 15px; }
  }