    * { margin:0; padding:0; box-sizing:border-box; }
    
    body {
      min-height: 100vh;
      background: linear-gradient(135deg, #0f1225, #1a1f3a, #0f0a20);
      color: #f0f0ff;
      font-family: 'Inter', system-ui, sans-serif;
      overflow-x: hidden;
    }
    
    .interactive-bg {
      position: fixed;
      inset: 0;
      background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(80, 60, 200, 0.12) 0%, transparent 60%);
      pointer-events: none;
      transition: background 0.4s ease;
      z-index: -2;
    }
    
    .particles {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
    }
    
    .particle {
      position: absolute;
      border-radius: 50%;
      background: var(--particle-color);
      box-shadow: 0 0 12px var(--particle-color);
      opacity: 0.7;
      animation: floatParticle linear infinite;
    }
    
    @keyframes floatParticle {
      0%   { transform: translateY(120vh) scale(0.4); opacity: 0; }
      5%   { opacity: 0.8; }
      95%  { opacity: 0.8; }
      100% { transform: translateY(-30vh) scale(1); opacity: 0; }
    }
    
    .container {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 60px 20px 140px;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    
    h1 {
      font-size: clamp(4rem, 14vw, 6rem);
      font-weight: 900;
      margin-bottom: 8px;
      background: linear-gradient(90deg, #a970ff, #ff4d4d, #40c4ff, #ff2d55, #e1306c, #a970ff);
      background-size: 300% 300%;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: gradientFlow 7s linear infinite;
      text-shadow: 0 0 30px rgba(169, 112, 255, 0.5);
    }
    
    .subtitle {
      font-size: 1.35rem;
      font-weight: 500;
      margin-bottom: 40px;
      background: linear-gradient(90deg, #c0c0ff, #a0e0ff, #d0a5ff, #ffccdd, #c0c0ff);
      background-size: 300% 300%;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: gradientFlowSub 12s linear infinite;
    }
    
    .donate-btn {
      margin: 0 0 48px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 18px 36px;
      font-size: 1.3rem;
      font-weight: 700;
      color: white;
      background: linear-gradient(90deg, #f59e0b, #d97706);
      border-radius: 999px;
      text-decoration: none;
      box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
      transition: all 0.3s;
    }
    
    .donate-btn:hover {
      transform: translateY(-4px) scale(1.05);
      box-shadow: 0 20px 50px rgba(245, 158, 11, 0.5);
    }
    
    /* ===== СТИЛИ ДЛЯ ИНДИКАТОРА СТАТУСА ===== */
    #streamStatusContainer {
      margin: 20px 0 35px;
      display: flex;
      justify-content: center;
      width: 100%;
      max-width: 500px;
    }

    .status-card {
      background: linear-gradient(135deg, rgba(30, 35, 70, 0.85), rgba(50, 40, 90, 0.8));
      backdrop-filter: blur(12px);
      border-radius: 22px;
      padding: 22px 30px;
      border: 2px solid rgba(120, 100, 255, 0.4);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
      text-align: center;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      width: 100%;
      position: relative;
      overflow: hidden;
    }

    .status-card:hover {
      transform: translateY(-8px);
      border-color: rgba(120, 100, 255, 0.7);
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(120, 100, 255, 0.3);
    }

    .status-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      margin-bottom: 18px;
    }

    .status-dot {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: #6b7280;
      position: relative;
      transition: all 0.3s ease;
    }

    .live-pulse {
      position: absolute;
      top: -6px;
      left: -6px;
      right: -6px;
      bottom: -6px;
      border-radius: 50%;
      background: #ef4444;
      opacity: 0;
      z-index: -1;
    }

    @keyframes pulse {
      0% { 
        transform: scale(0.95); 
        opacity: 0.8; 
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
      }
      70% { 
        transform: scale(1.1); 
        opacity: 0.4;
        box-shadow: 0 0 0 12px rgba(239, 68, 68, 0);
      }
      100% { 
        transform: scale(0.95); 
        opacity: 0.8;
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
      }
    }

    @keyframes pulse-green {
      0% { 
        transform: scale(0.95); 
        opacity: 0.8; 
        box-shadow: 0 0 0 0 rgba(83, 252, 24, 0.7);
      }
      70% { 
        transform: scale(1.1); 
        opacity: 0.4;
        box-shadow: 0 0 0 12px rgba(83, 252, 24, 0);
      }
      100% { 
        transform: scale(0.95); 
        opacity: 0.8;
        box-shadow: 0 0 0 0 rgba(83, 252, 24, 0);
      }
    }

    .status-text {
      margin: 0;
      font-size: 1.5rem;
      color: #f0f0ff;
      font-weight: 800;
      transition: all 0.3s ease;
      text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }

    .status-details {
      color: #c7d2fe;
      font-size: 1.05rem;
      line-height: 1.6;
      margin-bottom: 15px;
      min-height: 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .status-footer {
      margin-top: 15px;
      font-size: 0.9rem;
      color: #a5b4fc;
      opacity: 0.9;
    }

    .watch-btn {
      display: inline-block;
      background: linear-gradient(90deg, #9146FF, #7c3aed);
      color: white;
      padding: 14px 32px;
      border-radius: 16px;
      text-decoration: none;
      font-weight: 700;
      margin-top: 15px;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(145, 70, 255, 0.3);
    }

    .watch-btn:hover {
      transform: translateY(-4px);
      box-shadow: 0 15px 35px rgba(145, 70, 255, 0.5);
    }

    .watch-btn-kick {
      background: linear-gradient(90deg, #53fc18, #39ff14);
      color: #000;
      box-shadow: 0 8px 25px rgba(83, 252, 24, 0.3);
    }

    .watch-btn-kick:hover {
      box-shadow: 0 15px 35px rgba(83, 252, 24, 0.5);
    }

    /* Адаптивность */
    @media (max-width: 480px) {
      .status-card {
        padding: 18px 22px;
        border-radius: 18px;
      }
      
      .status-header {
        gap: 12px;
      }
      
      .status-dot {
        width: 18px;
        height: 18px;
      }
      
      .status-text {
        font-size: 1.3rem;
      }
      
      .status-details {
        font-size: 1rem;
      }
      
      .watch-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
      }
    }
    /* ===== КОНЕЦ СТИЛЕЙ ИНДИКАТОРА ===== */
    
    .links {
      display: flex;
      flex-direction: column;
      gap: 18px;
      width: 100%;
      max-width: 440px;
      margin-bottom: 60px;
    }
    
    .btn {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      padding: 20px 28px;
      font-size: 1.2rem;
      font-weight: 600;
      color: white;
      text-decoration: none;
      border-radius: 22px;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      background-size: 200% 200%;
      animation: gradientShift 6s linear infinite;
      box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }
    
    .btn:hover {
      transform: translateY(-10px) scale(1.05);
      box-shadow: 0 20px 50px rgba(0,0,0,0.6);
      animation-duration: 3s;
    }
    
    .btn i { font-size: 1.6rem; transition: transform 0.4s ease; }
    .btn:hover i { transform: scale(1.25) translateY(-3px); }
    
    /* Цвета кнопок с переливом */
    .twitch { background: linear-gradient(90deg, #7c3aed, #a78bfa, #c084fc, #7c3aed); }
    .youtube { background: linear-gradient(90deg, #ef4444, #f87171, #dc2626, #ef4444); }
    .tg { background: linear-gradient(90deg, #38bdf8, #60a5fa, #3b82f6, #38bdf8); }
    .tiktok { background: linear-gradient(90deg, #000000, #ee1d52, #000000, #25f4ee, #000000); background-size: 400% 400%; animation: gradientShift 10s linear infinite; }
    .instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); background-size: 300% 300%; animation: gradientShift 9s linear infinite; }
    
    /* Kick — зелёный с переливом */
    .kick { background: linear-gradient(90deg, #53fc18, #7fff00, #39ff14, #53fc18); color: #000; text-shadow: 0 1px 4px rgba(0,0,0,0.6); }
    
    /* Личный ТГ — голубой с переливом */
    .personal-tg { background: linear-gradient(90deg, #00bfff, #1e90ff, #00ced1, #00bfff); }
    
    @keyframes gradientShift {
      0%   { background-position: 0% 50%; }
      50%  { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    
    @keyframes gradientFlow { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
    @keyframes gradientFlowSub { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
    
    /* ===== БЛОК С SHORTS ===== */
    .shorts-section {
      width: 100%;
      max-width: 1200px;
      margin: 40px auto 60px;
      padding: 0 20px;
    }
    
    .section-title {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 30px;
      background: linear-gradient(90deg, #ff6b6b, #ffa500, #ffd93d, #6bcf7f, #4d96ff);
      background-size: 300% 300%;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: gradientFlow 8s linear infinite;
      text-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
    }
    
    .shorts-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin-bottom: 40px;
    }
    
    .short-item {
      background: linear-gradient(145deg, rgba(30, 35, 70, 0.7), rgba(50, 40, 90, 0.6));
      backdrop-filter: blur(16px);
      border: 1px solid rgba(120, 100, 255, 0.25);
      border-radius: 24px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      box-shadow: 0 12px 40px rgba(0,0,0,0.4);
      position: relative;
      min-height: 500px;
    }
    
    .short-item:hover {
      transform: translateY(-12px);
      border-color: rgba(120, 100, 255, 0.6);
      box-shadow: 0 24px 60px rgba(80, 60, 200, 0.5), 0 0 30px rgba(120, 100, 255, 0.3);
    }
    
    .short-embed {
      width: 100%;
      height: 100%;
      min-height: 500px;
      border: none;
    }
    
    /* Скрытая админ-панель */
    .admin-panel-hidden {
      display: none;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: all 0.5s ease;
    }
    
    .admin-panel-visible {
      display: block;
      max-height: 1000px;
      opacity: 1;
      margin-top: 20px;
    }
    
    /* Кнопка доступа к админке */
    .admin-access-btn {
      background: linear-gradient(145deg, rgba(30, 35, 70, 0.85), rgba(50, 40, 90, 0.75));
      backdrop-filter: blur(16px);
      border: 1px solid rgba(120, 100, 255, 0.3);
      border-radius: 20px;
      padding: 20px;
      margin: 20px auto 0;
      width: 100%;
      max-width: 500px;
      text-align: center;
      cursor: pointer;
      transition: all 0.4s ease;
      box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    }
    
    .admin-access-btn:hover {
      transform: translateY(-5px);
      border-color: rgba(120, 100, 255, 0.6);
      box-shadow: 0 15px 50px rgba(0,0,0,0.5), 0 0 25px rgba(120, 100, 255, 0.3);
    }
    
    .admin-access-btn .lock-icon {
      font-size: 1.8rem;
      color: #a78bfa;
      margin-bottom: 12px;
      transition: transform 0.3s ease;
    }
    
    .admin-access-btn:hover .lock-icon {
      transform: scale(1.2);
    }
    
    .admin-access-btn .admin-text {
      font-size: 1.2rem;
      color: #a78bfa;
      font-weight: 600;
    }
    
    /* Форма ввода пароля */
    .password-form {
      background: linear-gradient(145deg, rgba(30, 35, 70, 0.85), rgba(50, 40, 90, 0.75));
      backdrop-filter: blur(16px);
      border: 1px solid rgba(120, 100, 255, 0.3);
      border-radius: 20px;
      padding: 30px;
      margin-top: 20px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    }
    
    .password-input {
      width: 100%;
      padding: 18px 24px;
      background: rgba(20, 25, 50, 0.7);
      border: 1px solid rgba(120, 100, 255, 0.4);
      border-radius: 16px;
      color: #f0f0ff;
      font-size: 1.1rem;
      font-family: 'Inter', sans-serif;
      margin-bottom: 20px;
      transition: all 0.3s;
    }
    
    .password-input:focus {
      outline: none;
      border-color: #a78bfa;
      box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.2);
    }
    
    .password-submit {
      width: 100%;
      padding: 18px;
      background: linear-gradient(90deg, #7c3aed, #a78bfa);
      border: none;
      border-radius: 16px;
      color: white;
      font-size: 1.1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s;
      font-family: 'Inter', sans-serif;
    }
    
    .password-submit:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(167, 139, 250, 0.4);
    }
    
    /* Панель управления админа */
    .admin-controls {
      background: linear-gradient(145deg, rgba(30, 35, 70, 0.85), rgba(50, 40, 90, 0.75));
      backdrop-filter: blur(16px);
      border: 1px solid rgba(120, 100, 255, 0.3);
      border-radius: 20px;
      padding: 30px;
      margin-top: 20px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    }
    
    .controls-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: #a78bfa;
      text-align: center;
    }
    
    .embed-input-group {
      display: flex;
      gap: 15px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }
    
    .embed-input {
      flex: 1;
      min-width: 200px;
      padding: 16px 20px;
      background: rgba(20, 25, 50, 0.7);
      border: 1px solid rgba(120, 100, 255, 0.4);
      border-radius: 14px;
      color: #f0f0ff;
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      transition: all 0.3s;
    }
    
    .embed-input:focus {
      outline: none;
      border-color: #a78bfa;
      box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.2);
    }
    
    .embed-button {
      padding: 16px 30px;
      background: linear-gradient(90deg, #7c3aed, #a78bfa);
      border: none;
      border-radius: 14px;
      color: white;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s;
      font-family: 'Inter', sans-serif;
    }
    
    .embed-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(167, 139, 250, 0.4);
    }
    
    .embed-button.reset {
      background: linear-gradient(90deg, #ef4444, #f87171);
    }
    
    .embed-button.logout {
      background: linear-gradient(90deg, #f59e0b, #d97706);
    }
    
    .instructions {
      margin-top: 25px;
      padding: 20px;
      background: rgba(20, 25, 50, 0.5);
      border-radius: 16px;
      border-left: 4px solid #a78bfa;
    }
    
    .instructions h4 {
      color: #a78bfa;
      margin-bottom: 10px;
      font-size: 1.2rem;
    }
    
    .instructions ol {
      padding-left: 20px;
      color: #d0d0ff;
      line-height: 1.6;
    }
    
    .instructions li {
      margin-bottom: 10px;
    }
    
    .instructions code {
      background: rgba(0,0,0,0.3);
      padding: 4px 8px;
      border-radius: 6px;
      font-family: monospace;
      color: #ffcc00;
    }
    
    @media (max-width: 768px) {
      .section-title {
        font-size: 2rem;
      }
      
      .shorts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .short-item {
        min-height: 450px;
      }
      
      .short-embed {
        min-height: 450px;
      }
      
      .embed-input-group {
        flex-direction: column;
      }
      
      .embed-input, .embed-button {
        width: 100%;
      }
      
      .admin-access-btn {
        padding: 16px;
      }
    }
    /* ===== КОНЕЦ БЛОКА С SHORTS ===== */
    
    .features {
      display: flex;
      flex-direction: column;
      gap: 28px;
      width: 100%;
      max-width: 560px;
      margin-top: 48px;
      padding: 0 12px;
    }
    
    .feature-item {
      position: relative;
      background: linear-gradient(145deg, rgba(30, 35, 70, 0.5), rgba(50, 40, 90, 0.4));
      backdrop-filter: blur(16px);
      border: 1px solid rgba(120, 100, 255, 0.22);
      border-radius: 20px;
      padding: 28px 28px 28px 88px;
      text-align: left;
      opacity: 0;
      transform: translateY(60px);
      transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
      animation: fadeInUp 0.9s ease-out forwards;
      box-shadow: 0 10px 40px rgba(0,0,0,0.5);
      overflow: hidden;
    }
    
    .feature-item:nth-child(1) { animation-delay: 1.2s; }
    .feature-item:nth-child(2) { animation-delay: 1.4s; }
    
    .feature-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(120,100,255,0.12), transparent);
      transform: translateX(-100%);
      transition: transform 0.8s ease;
    }
    
    .feature-item:hover::before {
      transform: translateX(100%);
    }
    
    .feature-item:hover {
      transform: translateY(-12px);
      border-color: rgba(120, 100, 255, 0.5);
      box-shadow: 0 24px 70px rgba(80, 60, 200, 0.4);
    }
    
    .feature-icon {
      position: absolute;
      left: 28px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 2.8rem;
      color: rgba(160, 140, 255, 0.8);
      opacity: 0.85;
      transition: all 0.5s ease;
    }
    
    .feature-item:hover .feature-icon {
      color: #a78bfa;
      opacity: 1;
      transform: translateY(-50%) scale(1.2) rotate(10deg);
    }
    
    .feature-content h3 {
      font-size: 1.38rem;
      margin-bottom: 12px;
      color: #ffffff;
      font-weight: 700;
      text-shadow: 0 1px 6px rgba(0,0,0,0.6);
    }
    
    .feature-content p {
      font-size: 1.08rem;
      color: #d0d0ff;
      line-height: 1.65;
      opacity: 0.94;
    }
    
    .feature-item:hover .feature-content p {
      color: #e0e0ff;
    }
    
    @keyframes fadeInUp {
      to { opacity: 1; transform: translateY(0); }
    }
    
    /* Мини-игра "Собери угарики" – с локальным фото kulai.jpg */
    #minigame {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 999;
      width: 180px;
      background: linear-gradient(145deg, rgba(30, 35, 70, 0.92), rgba(50, 40, 90, 0.82));
      backdrop-filter: blur(14px);
      border: 2px solid rgba(120,100,255,0.35);
      border-radius: 20px;
      padding: 14px;
      box-shadow: 0 8px 35px rgba(0,0,0,0.65), 0 0 20px rgba(120,100,255,0.25);
      text-align: center;
      cursor: pointer;
      user-select: none;
      transition: all 0.3s ease;
    }
    
    #minigame:hover {
      transform: translateY(-6px);
      box-shadow: 0 14px 45px rgba(0,0,0,0.75), 0 0 35px rgba(120,100,255,0.45);
    }
    
    .minigame-avatar {
      width: 70px;
      height: 70px;
      margin: 0 auto 8px;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid rgba(167,139,250,0.6);
      box-shadow: 0 0 18px rgba(167,139,250,0.5);
      transition: all 0.3s ease;
    }
    
    .minigame-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    #minigame-title {
      font-size: 1.05rem;
      font-weight: 800;
      color: #a78bfa;
      margin-bottom: 4px;
    }
    
    #counter {
      font-size: 2.1rem;
      font-weight: 900;
      color: #ffffff;
      text-shadow: 0 0 18px #a970ff;
      margin: 4px 0;
    }
    
    #minigame-hint {
      font-size: 0.8rem;
      color: #c0c0ff;
      opacity: 0.9;
    }
    
    @media (max-width: 480px) {
      #minigame {
        bottom: 16px;
        right: 16px;
        width: 160px;
        padding: 12px;
      }
      .minigame-avatar { width: 60px; height: 60px; }
      #minigame-title { font-size: 0.95rem; }
      #counter { font-size: 1.8rem; }
      #minigame-hint { font-size: 0.75rem; }
    }