/* Сброс и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background-color: #0a0e17;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(28, 58, 173, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 20%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Навигация */
.navbar {
    background-color: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(46, 213, 115, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #2ed573;
}

.logo-text {
    font-weight: 700;
    color: #fff;
}

.tagline {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-top: -5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #2ed573;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2ed573;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Герой секция */
.hero {
    padding: 150px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 100%);
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #2ed573, #1e90ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: #bdc3c7;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(90deg, #2ed573, #1e90ff);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #2ed573;
    border: 2px solid #2ed573;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 213, 115, 0.3);
}

.btn-secondary:hover {
    background: rgba(46, 213, 115, 0.1);
    transform: translateY(-3px);
}

/* Секции */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: white;
    font-family: 'Orbitron', sans-serif;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Команда */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: rgba(30, 35, 50, 0.8);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(46, 213, 115, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(46, 213, 115, 0.1);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2ed573, #1e90ff);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.team-card h3 {
    color: white;
    margin-bottom: 5px;
}

.team-role {
    color: #2ed573;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-desc {
    color: #bdc3c7;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.telegram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0088cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.telegram-link:hover {
    color: #2ed573;
}

/* Соцсети */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.social-card {
    background: rgba(30, 35, 50, 0.8);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: #2ed573;
}

.social-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.tiktok i { color: #ff0050; }
.youtube i { color: #ff0000; }
.telegram i { color: #0088cc; }

.social-card h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.social-card p {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.social-link {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s;
}

.social-link:hover {
    background: #2ed573;
    color: white;
}

/* VIP Каналы */
.vip-section {
    background: linear-gradient(135deg, #0c1120 0%, #1a1f2e 100%);
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vip-card {
    background: rgba(20, 25, 40, 0.9);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s;
}

.vip-card.featured {
    border: 2px solid gold;
    transform: scale(1.05);
}

.vip-card:hover {
    transform: translateY(-10px);
}

.vip-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.vip-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ffd700, #ff9500);
    color: #0a0e17;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.vip-card h3 {
    text-align: center;
    color: white;
    margin: 20px 0 25px;
    font-size: 1.5rem;
}

.vip-features {
    list-style: none;
    margin-bottom: 30px;
}

.vip-features li {
    color: #bdc3c7;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-features li:last-child {
    border-bottom: none;
}

.vip-features li::before {
    content: '✓';
    color: #2ed573;
    margin-right: 10px;
    font-weight: bold;
}

.vip-price {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
}

.btn-vip {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #ffd700, #ff9500);
    color: #0a0e17;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-vip:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Биржи */
.exchanges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.exchange-card {
    background: rgba(30, 35, 50, 0.8);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(46, 213, 115, 0.2);
    transition: all 0.3s;
}

.exchange-card:hover {
    transform: translateY(-5px);
    border-color: #2ed573;
    box-shadow: 0 10px 20px rgba(46, 213, 115, 0.1);
}

.exchange-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
}

.bingx { color: #00b894; }
.weex { color: #0984e3; }
.bitunix { color: #6c5ce7; }
.toobit { color: #e17055; }

.exchange-card p {
    color: #bdc3c7;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.exchange-link {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(46, 213, 115, 0.2);
    color: #2ed573;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s;
}

.exchange-link:hover {
    background: #2ed573;
    color: white;
}

/* Футер */
.footer {
    background: rgba(10, 14, 23, 0.95);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(46, 213, 115, 0.2);
}

.footer-content {
    text-align: center;
}

.footer-logo h3 {
    color: #2ed573;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #7f8c8d;
    margin-bottom: 30px;
}

.footer-disclaimer {
    background: rgba(231, 76, 60, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid #e74c3c;
}

.footer-disclaimer i {
    color: #e74c3c;
    margin-right: 10px;
}

.footer-disclaimer p {
    color: #bdc3c7;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-copyright {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Адаптивность */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .vip-card.featured {
        transform: none;
    }

    .vip-card.featured:hover {
        transform: translateY(-10px);
    }

    .footer-disclaimer p {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Плавная прокрутка */
html {
    scroll-behavior: smooth;
}
/* Секция игры */
.game-section {
    background: linear-gradient(135deg, #1a1f2e 0%, #0c1120 100%);
}

.game-card {
    text-align: center;
    background: rgba(20, 25, 40, 0.8);
    border-radius: 20px;
    padding: 50px 30px;
    border: 2px solid rgba(155, 89, 182, 0.3);
    box-shadow: 0 15px 35px rgba(155, 89, 182, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.game-icon {
    font-size: 4rem;
    color: #9b59b6;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.game-text {
    color: #bdc3c7;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.game-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    margin: 20px 0 5px;
    background: linear-gradient(90deg, #9b59b6, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-subtitle {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.game-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #9b59b6, #3498db);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.game-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(155, 89, 182, 0.4);
}

.game-button i {
    font-size: 0.9rem;
}

/* Адаптивность для игры */
@media (max-width: 768px) {
    .game-card {
        padding: 30px 20px;
    }
    
    .game-name {
        font-size: 2rem;
    }
    
    .game-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
/* Стили для соцсетей (дополните существующие) */
.instagram i { 
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.instagram {
    border: 1px solid rgba(225, 48, 108, 0.2);
}

.instagram:hover {
    border-color: #e1306c;
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.2);
}

/* Обновите медиа-запрос для адаптивности сетки соцсетей */
@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
}
/* Триггер-кнопка (если нужно) */
.offer-trigger {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right top;
  background: linear-gradient(90deg, #ff6b6b, #ff8e53);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  font-weight: bold;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

/* Затемнение фона */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Сама боковая панель */
.offer-sidebar {
  position: fixed;
  top: 0;
  right: -400px; /* Скрыта за экраном */
  width: 380px;
  height: 100vh;
  background: linear-gradient(180deg, #0f0c29, #302b63, #24243e);
  color: white;
  z-index: 1001;
  padding: 25px;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  overflow-y: auto;
}

.offer-sidebar.active {
  right: 0; /* Появляется */
}

/* Кнопка закрытия */
.close-offer {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.close-offer:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Контент */
.offer-content h3 {
  color: #00d4ff;
  margin-top: 0;
  font-size: 24px;
}

.subtitle {
  color: #a0a0ff;
  margin-bottom: 25px;
}

.courses {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 25px 0;
}

.course-card {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #00d4ff;
  padding: 15px;
  border-radius: 8px;
}

.course-card h4 {
  margin-top: 0;
  color: #fff;
}

.course-card ul {
  padding-left: 20px;
  color: #ccc;
  font-size: 14px;
}

.price {
  font-size: 22px;
  font-weight: bold;
  color: #4dffea;
  text-align: right;
  margin-top: 10px;
}

/* Баннер с ценой */
.offer-banner {
  background: linear-gradient(90deg, #11998e, #38ef7d);
  padding: 20px;
  border-radius: 12px;
  margin: 25px 0;
  text-align: center;
}

.total {
  margin-bottom: 15px;
}

.total s {
  color: rgba(0, 0, 0, 0.7);
  font-size: 18px;
}

.final-price {
  font-size: 36px;
  font-weight: bold;
  color: #000;
  margin: 5px 0;
}

.economy {
  background: #000;
  color: #38ef7d;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
}

.buy-button {
  background: #000;
  color: white;
  border: none;
  padding: 18px 30px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 10px;
}

.buy-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.notice {
  font-size: 13px;
  opacity: 0.9;
  margin-top: 10px;
}

/* Таймер */
.timer {
  background: rgba(255, 107, 107, 0.2);
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  border: 1px dashed #ff6b6b;
}

.timer span {
  color: #ffd166;
  font-size: 18px;
}

/* Адаптив */
@media (max-width: 480px) {
  .offer-sidebar {
    width: 100%;
    right: -100%;
  }
}