|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="ru"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <title>Wokera Builds — Grand Mobile</title> |
| 7 | + <style> |
| 8 | + @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); |
| 9 | + |
| 10 | + :root{ |
| 11 | + --bg-dark:#0b0b0b; |
| 12 | + --red-neon:#ff2a2a; |
| 13 | + --red-dark:#1a0000; |
| 14 | + --muted:#ccc; |
| 15 | + } |
| 16 | + |
| 17 | + *{margin:0;padding:0;box-sizing:border-box;} |
| 18 | + body{font-family:'Poppins',sans-serif;background:var(--bg-dark);color:#fff;overflow-x:hidden;scroll-behavior:smooth;} |
| 19 | + |
| 20 | + header{ |
| 21 | + position:sticky;top:0;background:rgba(20,0,0,0.9); |
| 22 | + display:flex;justify-content:space-between;align-items:center;padding:15px 25px; |
| 23 | + z-index:100;box-shadow:0 0 10px #000; |
| 24 | + } |
| 25 | + .logo{font-size:22px;font-weight:600;color:var(--red-neon);text-shadow:0 0 15px #ff2a2a;} |
| 26 | + nav a{color:#fff;margin-left:20px;text-decoration:none;font-weight:500;transition:0.3s;} |
| 27 | + nav a:hover{color:var(--red-neon);text-shadow:0 0 10px #ff2a2a;} |
| 28 | + |
| 29 | + /* Burger */ |
| 30 | + .burger{display:none;flex-direction:column;gap:4px;cursor:pointer;} |
| 31 | + .burger span{width:25px;height:3px;background:var(--red-neon);border-radius:2px;display:block;} |
| 32 | + @media(max-width:768px){nav{display:none;position:absolute;top:60px;right:0;background:var(--red-dark);flex-direction:column;padding:15px;border-radius:10px} nav.active{display:flex} .burger{display:flex;}} |
| 33 | + |
| 34 | + section{padding:90px 20px;text-align:center;animation:fadeIn 1s ease;} |
| 35 | + @keyframes fadeIn{0%{opacity:0;transform:translateY(20px);}100%{opacity:1;transform:translateY(0);}} |
| 36 | + h1,h2{color:var(--red-neon);text-shadow:0 0 15px #ff2a2a;margin-bottom:15px;} |
| 37 | + p{color:var(--muted);max-width:720px;margin:0 auto 20px;} |
| 38 | + |
| 39 | + .btn{background:linear-gradient(90deg,#ff2a2a,#ff6666);border:none;padding:15px 35px;border-radius:12px;color:#fff;font-weight:600;cursor:pointer;transition:0.3s;box-shadow:0 0 20px #ff2a2a;} |
| 40 | + .btn:hover{transform:scale(1.05);box-shadow:0 0 35px #ff2a2a;} |
| 41 | + |
| 42 | + /* Секция сборок */ |
| 43 | + .services{display:grid;gap:20px;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));max-width:1100px;margin:0 auto;padding:40px 10px;} |
| 44 | + .card{background:var(--red-dark);border-radius:12px;padding:15px;box-shadow:0 6px 30px rgba(255,0,0,0.4);transition:0.3s;overflow:hidden;} |
| 45 | + .card:hover{transform:translateY(-6px);box-shadow:0 15px 40px rgba(255,0,0,0.6);} |
| 46 | + .card img{width:100%;border-radius:10px;margin-bottom:12px;} |
| 47 | + .card h3{margin-bottom:8px;} |
| 48 | + .price{font-size:20px;font-weight:700;margin-bottom:10px;color:var(--red-neon);} |
| 49 | + .desc{font-size:14px;color:#ccc;margin-bottom:12px;} |
| 50 | + |
| 51 | + footer{padding:20px;text-align:center;background:var(--red-dark);border-top:1px solid #ff2a2a;color:#aaa;} |
| 52 | + footer small{display:block;margin-top:6px;color:#888;font-size:13px;} |
| 53 | + </style> |
| 54 | +</head> |
| 55 | +<body> |
| 56 | + |
| 57 | + <header> |
| 58 | + <div class="logo">Wokera Builds</div> |
| 59 | + <div class="burger" onclick="toggleNav()"><span></span><span></span><span></span></div> |
| 60 | + <nav id="nav"> |
| 61 | + <a href="#home">Главная</a> |
| 62 | + <a href="#services">Сборки</a> |
| 63 | + <a href="#education">Обучение</a> |
| 64 | + <a href="#contact">Контакты</a> |
| 65 | + </nav> |
| 66 | + </header> |
| 67 | + |
| 68 | + <section id="home"> |
| 69 | + <h1>🔥 Самые лучшие сборки у Wokera 🔥</h1> |
| 70 | + <p>Grand RP Mobile — прокачай свой CRMP проект с эксклюзивными сборками и ганами от Wokera!</p> |
| 71 | + <button class="btn" onclick="location.href='#services'">Смотреть сборки</button> |
| 72 | + </section> |
| 73 | + |
| 74 | + <section id="services" class="services"> |
| 75 | + <!-- карточка 1 --> |
| 76 | + <div class="card"> |
| 77 | + <img src="https://i.imgur.com/0Z3Yp0N.jpg" alt="Сборка 1"> |
| 78 | + <h3>Обычная сборка</h3> |
| 79 | + <div class="price">95 ₽</div> |
| 80 | + <div class="desc">Готовая сборка для CRMP Grand Mobile.</div> |
| 81 | + <a class="btn" href="https://t.me/woker444" target="_blank">Купить у Wokera</a> |
| 82 | + </div> |
| 83 | + <!-- карточка 2 --> |
| 84 | + <div class="card"> |
| 85 | + <img src="https://i.imgur.com/3D3y2Xl.jpg" alt="Обучение ган"> |
| 86 | + <h3>Научить делать ганы</h3> |
| 87 | + <div class="price">250 ₽</div> |
| 88 | + <div class="desc">Обучение созданию ган и кастомных сборок.</div> |
| 89 | + <a class="btn" href="https://t.me/woker444" target="_blank">Записаться</a> |
| 90 | + </div> |
| 91 | + <!-- карточка 3 --> |
| 92 | + <div class="card"> |
| 93 | + <img src="https://i.imgur.com/Xm0R1eK.jpg" alt="Анрип сборка"> |
| 94 | + <h3>Анрип сборки</h3> |
| 95 | + <div class="price">105 ₽</div> |
| 96 | + <div class="desc">Защита и улучшение сборки.</div> |
| 97 | + <a class="btn" href="https://t.me/woker444" target="_blank">Купить</a> |
| 98 | + </div> |
| 99 | + </section> |
| 100 | + |
| 101 | + <section id="education"> |
| 102 | + <h2>📘 Обучение</h2> |
| 103 | + <p>Научим создавать самые крутые ганы и сборки для CRMP / Grand Mobile. Все уроки и консультации — через Telegram @woker444</p> |
| 104 | + <button class="btn" onclick="window.location.href='https://t.me/woker444'">Записаться</button> |
| 105 | + </section> |
| 106 | + |
| 107 | + <section id="contact"> |
| 108 | + <h2>📞 Контакты</h2> |
| 109 | + <p>Все вопросы, покупки и обучение — в личные сообщения Wokera (@woker444)</p> |
| 110 | + <button class="btn" onclick="window.location.href='https://t.me/woker444'">Написать Woker</button> |
| 111 | + </section> |
| 112 | + |
| 113 | + <footer> |
| 114 | + <div>© 2025 Wokera Builds</div> |
| 115 | + <small>CRMP / Grand Mobile | Цены: сборка 95 ₽, обучение 250 ₽, анрип 105 ₽. Другие услуги — уточняйте у Wokera.</small> |
| 116 | + </footer> |
| 117 | + |
| 118 | + <script> |
| 119 | + function toggleNav(){document.getElementById('nav').classList.toggle('active');} |
| 120 | + document.querySelectorAll('#nav a').forEach(a=>{a.addEventListener('click',()=>{if(window.innerWidth<=768) toggleNav();})}); |
| 121 | + </script> |
| 122 | + |
| 123 | +</body> |
| 124 | + </html> |
0 commit comments