/* Общие стили и переменные */
:root {
    --primary-neon: #00ff88;
    --secondary-neon: #00d4ff;
    --accent-neon: #ff00ff;
    --purple-neon: #9d00ff;
    --bg-dark: #0a0e27;
    --bg-darker: #050810;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --card-bg: rgba(15, 20, 40, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-darker);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Анимированный фон с частицами */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a3e 50%, #0a0e27 100%);
}

#particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    animation: bgPulse 10s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

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

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.neon-text {
    color: var(--primary-neon);
    text-shadow: 0 0 10px var(--primary-neon),
                 0 0 20px var(--primary-neon),
                 0 0 30px var(--primary-neon);
}

.accent {
    color: var(--secondary-neon);
    text-shadow: 0 0 10px var(--secondary-neon),
                 0 0 20px var(--secondary-neon);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-neon);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-neon);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary-neon);
}

/* Переключатель языков */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--primary-neon);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--primary-neon);
    color: var(--primary-neon);
    text-shadow: 0 0 10px var(--primary-neon);
}

.lang-btn.active {
    background: var(--primary-neon);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger .line {
    width: 25px;
    height: 3px;
    background: var(--primary-neon);
    border-radius: 3px;
    transition: 0.3s;
}

/* Hero секция */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero-content {
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: bold;
    letter-spacing: 3px;
}

/* Glitch эффект */
.glitch {
    position: relative;
    color: var(--primary-neon);
    animation: glitch 3s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--accent-neon);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--secondary-neon);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 40px, 0); }
    20% { clip: rect(80px, 9999px, 20px, 0); }
    40% { clip: rect(50px, 9999px, 90px, 0); }
    60% { clip: rect(30px, 9999px, 60px, 0); }
    80% { clip: rect(70px, 9999px, 10px, 0); }
    100% { clip: rect(20px, 9999px, 80px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 99px, 0); }
    20% { clip: rect(25px, 9999px, 30px, 0); }
    40% { clip: rect(95px, 9999px, 15px, 0); }
    60% { clip: rect(45px, 9999px, 75px, 0); }
    80% { clip: rect(5px, 9999px, 55px, 0); }
    100% { clip: rect(85px, 9999px, 35px, 0); }
}

.neon-glow {
    font-size: 2.5rem;
    color: var(--secondary-neon);
    text-shadow: 0 0 10px var(--secondary-neon),
                 0 0 20px var(--secondary-neon),
                 0 0 40px var(--secondary-neon);
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.name-text {
    font-size: 2rem;
    color: var(--primary-neon);
    text-shadow: 0 0 15px var(--primary-neon),
                 0 0 30px var(--primary-neon),
                 0 0 45px var(--primary-neon);
    margin-bottom: 1rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.btn-neon {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary-neon);
    border: 2px solid var(--primary-neon);
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.btn-neon:hover {
    background: var(--primary-neon);
    color: var(--bg-dark);
    box-shadow: 0 0 40px var(--primary-neon),
                inset 0 0 20px rgba(0, 255, 136, 0.5);
    transform: translateY(-3px);
}

.btn-outline {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--secondary-neon);
    border: 2px solid var(--secondary-neon);
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--secondary-neon);
    color: var(--bg-dark);
    box-shadow: 0 0 40px var(--secondary-neon);
    transform: translateY(-3px);
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    border-radius: 25px;
}

.pulse {
    width: 10px;
    height: 10px;
    background: #ff0000;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px #ff0000, 0 0 40px #ff0000;
        transform: scale(1.2);
    }
}

.live-text {
    color: #ff0000;
    font-weight: bold;
}

/* Hero изображение */
.hero-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--primary-neon);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    transition: box-shadow 0.3s ease;
    animation: scrollDown 8s ease-in-out infinite;
}

.image-frame.paused {
    animation-play-state: paused;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.9) contrast(1.1);
    cursor: pointer;
    user-select: none;
    transition: filter 0.3s ease;
}

.image-frame:hover {
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.7);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes scrollDown {
    0% {
        transform: translateY(-30px);
    }
    50% {
        transform: translateY(30px);
    }
    100% {
        transform: translateY(-30px);
    }
}

.image-frame img:hover {
    filter: brightness(1) contrast(1.2);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.frame-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--primary-neon);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Секции */
.section {
    padding: 6rem 2rem;
    position: relative;
}

.dark-section {
    background: rgba(5, 8, 16, 0.8);
    backdrop-filter: blur(10px);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* О себе секция */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-neon);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-neon);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--primary-neon);
}

.about-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-neon);
}

.achievements-list {
    list-style: none;
    margin-top: 1rem;
}

.achievements-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.achievements-list i {
    color: gold;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-neon);
    text-shadow: 0 0 20px var(--primary-neon);
}

.stat-label {
    display: block;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.content-types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    padding: 0.3rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary-neon);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-neon);
}

/* Расписание */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.schedule-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.schedule-card:hover {
    transform: scale(1.05);
    border-color: var(--secondary-neon);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
}

.schedule-card .day {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-neon);
    margin-bottom: 1rem;
}

.schedule-card .time {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.schedule-card .platform {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.schedule-card .game-info {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.schedule-card .stream-type {
    color: var(--primary-neon);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    text-shadow: 0 0 10px var(--primary-neon);
}

.active-stream {
    border-color: #ff0000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.live-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff0000;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    animation: pulse 1.5s infinite;
}

/* Игры */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.game-card {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

/* Mobile Legends */
.games-grid .game-card:nth-child(1) {
    background-image: url('images/mobilelegends.png');
}

.game-card:hover {
    transform: scale(1.05);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease;
}

.game-card:hover::before {
    background: rgba(0, 0, 0, 0.3);
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 1;
}

.game-overlay h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-neon);
    text-shadow: 0 0 10px var(--primary-neon);
}

.game-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Социальные сети */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.social-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--text-light);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.social-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.social-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.social-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.followers {
    display: block;
    color: var(--primary-neon);
    font-weight: bold;
}

.social-card.twitch:hover {
    border-color: #9146ff;
    box-shadow: 0 0 30px rgba(145, 70, 255, 0.5);
    transform: translateY(-5px);
}

.social-card.youtube:hover {
    border-color: #ff0000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    transform: translateY(-5px);
}

.social-card.vk:hover {
    border-color: #0077ff;
    box-shadow: 0 0 30px rgba(0, 119, 255, 0.5);
    transform: translateY(-5px);
}

.social-card.discord:hover {
    border-color: #5865f2;
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.5);
    transform: translateY(-5px);
}

.social-card.instagram:hover {
    border-color: #e1306c;
    box-shadow: 0 0 30px rgba(225, 48, 108, 0.5);
    transform: translateY(-5px);
}

.social-card.telegram:hover {
    border-color: #0088cc;
    box-shadow: 0 0 30px rgba(0, 136, 204, 0.5);
    transform: translateY(-5px);
}

/* Поддержка */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.support-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 0, 255, 0.3);
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-neon);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.4);
}

.support-card i {
    font-size: 3rem;
    color: var(--accent-neon);
    margin-bottom: 1rem;
}

.support-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.btn-neon.small {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.support-benefits {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.support-benefits h3 {
    font-size: 1.8rem;
    color: var(--primary-neon);
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 8px;
}

.benefit i {
    color: var(--primary-neon);
    font-size: 1.2rem;
}

/* Токен GAM */
.token-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.token-info {
    display: flex;
    gap: 1.5rem;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.token-logo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    overflow: hidden;
}

.token-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.token-symbol {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.token-details h3 {
    font-size: 1.5rem;
    color: var(--primary-neon);
    margin-bottom: 1rem;
}

.token-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.token-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.stat-value {
    color: var(--text-light);
    font-weight: bold;
}

.token-address {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    background: rgba(0, 255, 136, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    border: 1px solid var(--primary-neon);
}

.token-features {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.token-features h3 {
    font-size: 1.5rem;
    color: var(--secondary-neon);
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary-neon);
    transition: all 0.3s ease;
}

.features-list li:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateX(5px);
}

.features-list li i {
    color: var(--primary-neon);
    font-size: 1.2rem;
    width: 20px;
}

.buy-token-section {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    text-align: center;
}

.buy-token-section h3 {
    font-size: 2rem;
    color: var(--primary-neon);
    margin-bottom: 1rem;
}

.buy-token-section p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.coming-soon-text {
    color: var(--primary-neon);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 2rem 0;
    text-shadow: 0 0 15px var(--primary-neon),
                 0 0 30px var(--primary-neon);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 15px var(--primary-neon),
                     0 0 30px var(--primary-neon);
    }
    50% {
        opacity: 0.8;
        text-shadow: 0 0 20px var(--primary-neon),
                     0 0 40px var(--primary-neon),
                     0 0 60px var(--primary-neon);
    }
}

.buy-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-buy-uniswap {
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #ff007a, #ff6b35);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(255, 0, 122, 0.3);
}

.btn-buy-uniswap:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 122, 0.5);
    border-color: #ff007a;
}

.btn-buy-etherscan {
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #627eea, #4f46e5);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(98, 126, 234, 0.3);
}

.btn-buy-etherscan:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(98, 126, 234, 0.5);
    border-color: #627eea;
}

.price-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.current-price, .price-change {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-label, .change-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.price-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-neon);
}

.change-value {
    font-size: 1.2rem;
    font-weight: bold;
}

.change-value.positive {
    color: #00ff88;
}

.change-value.negative {
    color: #ff4444;
}

/* Приглашение в команду */
.recruitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.recruitment-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.recruitment-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-neon);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
}

.recruitment-list {
    list-style: none;
    margin-top: 1rem;
}

.recruitment-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.recruitment-list li i {
    color: var(--primary-neon);
    font-size: 1rem;
}

.games-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.game-tag {
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary-neon);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-neon);
    transition: all 0.3s ease;
}

.game-tag:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: scale(1.05);
}

.benefits-list {
    list-style: none;
    margin-top: 1rem;
}

.benefits-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.benefits-list li i {
    color: gold;
    font-size: 1rem;
}

.contact-info {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    text-align: center;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--secondary-neon);
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid;
}

.contact-btn.discord {
    background: transparent;
    color: #5865f2;
    border-color: #5865f2;
}

.contact-btn.discord:hover {
    background: #5865f2;
    color: white;
    box-shadow: 0 0 20px #5865f2;
    transform: translateY(-3px);
}

.contact-btn.telegram {
    background: transparent;
    color: #0088cc;
    border-color: #0088cc;
}

.contact-btn.telegram:hover {
    background: #0088cc;
    color: white;
    box-shadow: 0 0 20px #0088cc;
    transform: translateY(-3px);
}

.contact-btn.vk {
    background: transparent;
    color: #0077ff;
    border-color: #0077ff;
}

.contact-btn.vk:hover {
    background: #0077ff;
    color: white;
    box-shadow: 0 0 20px #0077ff;
    transform: translateY(-3px);
}

.contact-note {
    color: var(--text-gray);
    font-style: italic;
    margin-top: 1rem;
}

/* Футер */
.footer {
    background: var(--bg-darker);
    padding: 3rem 2rem 1rem;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-logo p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1rem;
    color: var(--primary-neon);
}

.footer-links a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-neon);
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-neon);
    border-radius: 50%;
    color: var(--primary-neon);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: var(--primary-neon);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--primary-neon);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

/* Адаптивность */
@media (max-width: 968px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section {
        padding: 4rem 1rem;
        overflow-x: hidden;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .neon-glow {
        white-space: normal;
    }
    
    .token-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .token-info {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .token-logo {
        align-self: center;
    }
    
    .token-stats {
        width: 100%;
        overflow: visible;
    }
    
    .stat-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
        padding: 0.8rem 0;
    }
    
    .stat-value {
        word-break: break-all;
        font-size: 0.85rem;
    }
    
    .token-address {
        font-size: 0.7rem;
        word-break: break-all;
        padding: 0.3rem;
        display: block;
        max-width: 100%;
    }
    
    .token-features {
        padding: 1.5rem;
    }
    
    .buy-token-section {
        padding: 1.5rem;
    }
    
    .buy-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .btn-buy-uniswap,
    .btn-buy-etherscan {
        width: 100%;
        max-width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        text-align: center;
    }
    
    .price-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .language-switcher {
        margin-left: 0;
        margin-top: 1rem;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .neon-glow {
        font-size: 2rem;
        white-space: normal;
    }

    .hero-buttons {
        justify-content: center;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s ease;
        border-bottom: 2px solid var(--primary-neon);
    }

    .nav-links.active {
        left: 0;
    }

    .burger {
        display: flex;
    }

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

    .stats {
        justify-content: center;
    }
    
    .schedule-grid,
    .social-grid,
    .games-grid,
    .about-grid,
    .recruitment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .schedule-card,
    .social-card,
    .about-card {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0.5rem;
        overflow-x: hidden;
    }
    
    .token-info,
    .token-features,
    .buy-token-section {
        padding: 1rem;
        margin: 0;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .token-stats {
        width: 100%;
    }
    
    .stat-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .stat-label,
    .stat-value {
        width: 100%;
    }
    
    .token-address {
        font-size: 0.65rem;
        word-break: break-all;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .buy-buttons {
        width: 100%;
        padding: 0;
    }
    
    .btn-buy-uniswap,
    .btn-buy-etherscan {
        width: 100%;
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .neon-glow {
        font-size: 1.5rem;
        white-space: normal;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-neon,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .schedule-grid,
    .social-grid,
    .games-grid,
    .about-grid,
    .recruitment-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .schedule-card,
    .social-card,
    .about-card,
    .recruitment-card {
        padding: 1rem;
    }
    
    .game-card {
        height: 250px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .contact-info {
        padding: 1.5rem 1rem;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: stretch;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Для очень маленьких экранов (320px и меньше) */
@media (max-width: 320px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .section {
        padding: 2rem 0.25rem;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .neon-glow {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .btn-neon,
    .btn-outline,
    .btn-buy-uniswap,
    .btn-buy-etherscan {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
}

/* Для больших экранов (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1600px;
    }
    
    .nav-container {
        max-width: 1600px;
    }
}

