        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #1a2a6c, #4e6671, #1a2a6c);
            color: white;
            padding: 20px;
            min-height: 100vh;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        header {
            text-align: center;
            padding: 20px 0;
            margin-bottom: 30px;
        }
        
        header h1 {
            font-size: 2.8rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
            background: linear-gradient(90deg, #ffffff, #00d0ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }
        .logo-container {
    text-align: center;
    padding-top: 20px;
    order: 1; /* Первый элемент */
    margin-bottom: 5px;
  }
  
  .logo-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: inline-block;
  }
  
  .logo-btn img {
    max-width: 692px;
    width: 100%;
    height: auto;
  }

        .nav-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    position: relative;
    z-index: 10;
    margin: 0 auto 5px !important; /* Убираем верхний отступ, оставляем снизу 5px */
    padding: 20px 20px;
    margin-bottom: 0; /* Убираем отступ снизу */
    order: 2;
  }
  
  .nav-btn {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    color: white;
    border: 3px solid #1100ff;
    border-radius: 20px;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s;
    min-width: 150px;
    text-align: center;
  }
  .nav-btn:hover {
    background-color: #6b6b6b; 
    transform: scale(1.02); 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
  }
  .nav-btn:active {
    transform: scale(0.98); 
  }
  
        
        .hero {
            background: rgba(0, 0, 0, 0.4);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 40px;
            text-align: center;
            border: 2px solid #1100ff;
        }
        
        .hero h2 {
            color: #d7d4ff;
            margin-bottom: 20px;
            font-size: 2rem;
        }
        
        .instructions {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .instruction-card {
            flex: 1;
            min-width: 300px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }
        
        .instruction-card h3 {
            color: #d7d4ff;
            font-size: 1.5rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .step-number {
            background: #453ce7;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        
        .product-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            transition: transform 0.3s;
            border: 2px solid transparent;
        }
        
        .product-card:hover {
            transform: translateY(-8px);
            border-color: #1100ff;
        }
        
        .product-image {
            width: 100%;
            height: 180px;
            background-color: #2c3e50;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-title {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: #d7d4ff;
        }
        
        .product-price {
            font-size: 1.8rem;
            font-weight: bold;
            margin: 15px 0;
            color: #00f2ff;
        }
        
        .buy-btn {
            display: block;
            width: 100%;
            padding: 12px;
            background: #e74c3c;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s;
            font-weight: bold;
        }
        
        .buy-btn:hover {
            background: #c0392b;
            transform: scale(1.03);
        }
        
        .payment-link {
            display: block;
            text-align: center;
            background: #3498db;
            color: white;
            padding: 15px;
            border-radius: 10px;
            margin: 30px 0;
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .payment-link:hover {
            background: #2980b9;
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .discord-info {
            background: rgba(88, 101, 242, 0.2);
            border-radius: 15px;
            padding: 25px;
            margin: 40px 0;
            text-align: center;
            border: 2px solid #5865F2;
        }
        
        .discord-info h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #7289da;
        }
        
        footer {
            text-align: center;
            padding: 30px 0;
            margin-top: 40px;
            border-top: 2px solid rgba(255,255,255,0.1);
            color: #95a5a6;
        }
        
        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .instructions {
                flex-direction: column;
            }
        }