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

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --bg-dark: #0a0a14;
    --bg-darker: #050508;
    --text-light: #f0f0f5;
    --text-gray: #a0a0b0;
    --gradient-1: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-2: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #6366f1 100%);
    --gradient-3: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 50%, rgba(236, 72, 153, 0.1) 100%);
}

body {
    font-family: 'Rubik', sans-serif;
    background: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Частицы фона */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; }
.particle:nth-child(9) { left: 90%; animation-delay: 16s; }
.particle:nth-child(10) { left: 15%; animation-delay: 18s; }

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Навигация */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 30, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gradient-1);
    padding: 3px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    transition: transform 0.3s;
}

.logo-wrapper:hover {
    transform: scale(1.1);
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: var(--bg-dark);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s;
}

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Главный экран */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    z-index: 1;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Rubik', sans-serif;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
}

.floating-card {
    background: var(--gradient-1);
    padding: 15px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
    position: absolute;
}

.main-hero-img {
    animation: float-card 4s ease-in-out infinite;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.secondary-hero-img {
    animation: float-card-reverse 4s ease-in-out infinite;
    z-index: 1;
    top: 20%;
    right: 10%;
    transform: scale(0.7);
    opacity: 0.8;
}

@keyframes float-card {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(-2deg);
    }
    50% {
        transform: translate(-50%, -60%) rotate(2deg);
    }
}

@keyframes float-card-reverse {
    0%, 100% {
        transform: scale(0.7) rotate(2deg);
    }
    50% {
        transform: scale(0.75) rotate(-2deg);
    }
}

.hero-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    display: block;
    object-fit: cover;
}

/* Секции */
section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* О проекте */
.about {
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.about-main-description {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.about-main-text {
    padding-right: 2rem;
}

.about-main-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.9;
    font-weight: 400;
}

.about-main-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.about-main-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.about-feature-card {
    background: rgba(99, 102, 241, 0.08);
    border-radius: 25px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    overflow: hidden;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.about-feature-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 25px 60px rgba(99, 102, 241, 0.4);
    background: rgba(99, 102, 241, 0.12);
}

.feature-card-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
}

.feature-icon-large {
    font-size: 3rem;
    line-height: 1;
}

.feature-card-header h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 700;
}

.feature-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.merch-image-slider-small {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.merch-slide-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    transition: opacity 0.5s ease-in-out;
}

.merch-slide-small.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.about-feature-card:hover .feature-card-image img {
    transform: scale(1.15);
}

.feature-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-card-content p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.feature-badge {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    align-self: flex-start;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
}

.dao-feature {
    border-top: 3px solid rgba(99, 102, 241, 0.5);
}

.dao-feature:hover {
    border-top-color: var(--primary-color);
}

.rwa-feature {
    border-top: 3px solid rgba(139, 92, 246, 0.5);
}

.rwa-feature:hover {
    border-top-color: var(--secondary-color);
}

.game-feature {
    border-top: 3px solid rgba(236, 72, 153, 0.5);
}

.game-feature:hover {
    border-top-color: var(--accent-color);
}

/* Токен */
.token-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.token-card {
    background: rgba(99, 102, 241, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.token-card h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.token-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.detail-label {
    color: var(--text-gray);
}

.detail-value {
    color: var(--text-light);
    font-weight: 600;
}

/* Адрес контракта */
.contract-address-container {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.contract-address {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.contract-address-text {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: var(--text-light);
    word-break: break-all;
    flex: 1;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    text-decoration: none;
    display: block;
    transition: all 0.3s;
}

.contract-address-text:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.copy-btn {
    background: var(--gradient-1);
    border: none;
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    min-width: 40px;
    height: 40px;
}

.copy-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.copy-btn svg {
    width: 18px;
    height: 18px;
}

.token-chart {
    background: rgba(15, 15, 30, 0.6);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.chart-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s;
}

.stat-item:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-1px);
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text-gray);
    font-weight: 500;
    line-height: 1.2;
}

.stat-value {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    font-family: 'Rubik', sans-serif;
    line-height: 1.2;
}

.chart-container {
    width: 100%;
    height: 300px;
    margin: 0 auto;
    position: relative;
    padding: 1rem;
    min-height: 300px;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, rgba(15, 15, 30, 0.8) 0%, rgba(10, 10, 20, 0.9) 100%);
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: box-shadow 0.5s ease, border-color 0.5s ease;
}

.chart-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 20px,
            rgba(99, 102, 241, 0.03) 20px,
            rgba(99, 102, 241, 0.03) 21px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 20px,
            rgba(99, 102, 241, 0.03) 20px,
            rgba(99, 102, 241, 0.03) 21px
        );
    pointer-events: none;
    opacity: 0.5;
    z-index: 0;
}

/* Фоновые изображения в зависимости от изменения цены */
.chart-container.chart-bull {
    background-image: 
        url('/images/bull.png'),
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, rgba(15, 15, 30, 0.7) 0%, rgba(10, 10, 20, 0.8) 100%);
    background-blend-mode: overlay, normal, normal, normal;
}

.chart-container.chart-bear {
    background-image: 
        url('/images/bear.png'),
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, rgba(15, 15, 30, 0.7) 0%, rgba(10, 10, 20, 0.8) 100%);
    background-blend-mode: overlay, normal, normal, normal;
}

.chart-container.chart-neutral {
    background-image: 
        url('/images/neutral.png'),
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, rgba(15, 15, 30, 0.7) 0%, rgba(10, 10, 20, 0.8) 100%);
    background-blend-mode: overlay, normal, normal, normal;
}

/* Зеленое свечение для роста >= +5% */
.chart-container.chart-green-glow {
    border-color: rgba(16, 185, 129, 0.3) !important;
}

.chart-container.chart-green-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.25) 0%, transparent 60%) !important;
    pointer-events: none;
    z-index: 0;
    border-radius: 12px;
}

/* Красное свечение для падения <= -5% */
.chart-container.chart-red-glow {
    border-color: rgba(239, 68, 68, 0.3) !important;
}

.chart-container.chart-red-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(239, 68, 68, 0.25) 0%, transparent 60%) !important;
    pointer-events: none;
    z-index: 0;
    border-radius: 12px;
}

#cartoonChart {
    width: 100% !important;
    height: 100% !important;
    max-height: 300px;
    display: block !important;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.3));
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 200px;
    margin-bottom: 1rem;
}

.bar {
    flex: 1;
    background: var(--gradient-1);
    border-radius: 5px 5px 0 0;
    animation: grow-bar 1s ease-out;
}

@keyframes grow-bar {
    from {
        height: 0;
    }
}

/* Мультисериал */
.series {
    background: var(--bg-dark);
}

.series-watch-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    gap: 3rem;
}

.series-preview-image {
    max-width: 600px;
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(99, 102, 241, 0.3);
    transition: transform 0.3s;
}

.series-preview-image:hover {
    transform: scale(1.02);
}

.series-preview-image img {
    width: 100%;
    height: auto;
    display: block;
}

.btn-watch-series {
    padding: 1.5rem 4rem;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    font-family: 'Rubik', sans-serif;
    text-decoration: none;
}

.btn-watch-series:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6);
}

.play-icon-large {
    font-size: 2rem;
    line-height: 1;
}

.episodes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.episode-card {
    background: rgba(99, 102, 241, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(99, 102, 241, 0.15);
    transition: all 0.4s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.episode-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.4);
    background: rgba(99, 102, 241, 0.1);
}

.episode-card.coming-soon {
    opacity: 0.7;
}

.episode-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-darker);
}

.episode-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.episode-card:hover .episode-image img {
    transform: scale(1.1);
}

.episode-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.episode-card:hover .episode-play-overlay {
    opacity: 1;
}

.play-icon {
    font-size: 4rem;
    color: white;
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.8);
    cursor: pointer;
    transition: transform 0.3s;
}

.play-icon:hover {
    transform: scale(1.2);
}

.coming-soon-badge {
    background: var(--gradient-1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.5);
}

.episode-content {
    padding: 2rem;
}

.episode-number {
    display: inline-block;
    background: var(--gradient-1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    font-size: 0.9rem;
}

.episode-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.episode-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* DAO */
.dao {
    background: var(--bg-dark);
}

.dao-content {
    margin-top: 3rem;
}

.dao-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.dao-feature-card {
    background: rgba(99, 102, 241, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s;
    text-align: center;
}

.dao-feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
    background: rgba(99, 102, 241, 0.15);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.dao-feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.dao-feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.dao-status {
    text-align: center;
    padding: 3rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.dao-status p {
    color: var(--text-gray);
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* RWA Мерч */
.rwa {
    background: var(--bg-darker);
}

.rwa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.rwa-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rwa-info p {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.rwa-features-list {
    list-style: none;
    padding: 0;
}

.rwa-features-list li {
    color: var(--text-light);
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s;
}

.rwa-features-list li:hover {
    padding-left: 1rem;
    color: var(--primary-color);
}

.rwa-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
}

.merch-placeholder {
    background: rgba(99, 102, 241, 0.1);
    padding: 4rem 3rem;
    border-radius: 25px;
    border: 2px dashed rgba(99, 102, 241, 0.3);
    text-align: center;
    width: 100%;
    transition: all 0.3s;
}

.merch-placeholder:hover {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.15);
}

.merch-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    overflow: hidden;
}

.merch-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.merch-image-slider {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: auto;
}

.merch-slide {
    width: 100%;
    height: auto;
    display: none;
    transition: opacity 0.5s ease-in-out;
}

.merch-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

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

.merch-placeholder:hover .merch-image img {
    transform: scale(1.05);
}

.merch-placeholder h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.merch-placeholder p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Игра */
.game {
    background: var(--bg-dark);
}

.game-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.game-showcase {
    display: flex;
    justify-content: center;
}

.game-preview {
    background: rgba(99, 102, 241, 0.1);
    padding: 4rem 3rem;
    border-radius: 25px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    text-align: center;
    width: 100%;
    transition: all 0.3s;
}

.game-preview:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3);
    border-color: var(--primary-color);
}

.game-preview-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    overflow: hidden;
}

.game-preview-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.game-preview:hover .game-preview-image img {
    transform: scale(1.05);
}

.game-preview h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.game-preview p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.game-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.game-feature-item {
    background: rgba(99, 102, 241, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s;
}

.game-feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.15);
}

.game-feature-item .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.game-feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.game-feature-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Бейджи статуса */
.status-badge {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    animation: pulse-badge 2s infinite;
}

.status-badge-small {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
    }
}

/* Roadmap */
.roadmap-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(99, 102, 241, 0.2);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.3);
    border: 3px solid var(--bg-dark);
    transition: all 0.3s;
}

.timeline-item.active .timeline-marker {
    background: var(--primary-color);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
    animation: pulse 2s infinite;
}

.timeline-item.completed .timeline-marker {
    background: var(--accent-color);
}

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

.timeline-content {
    background: rgba(99, 102, 241, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.timeline-content p {
    color: var(--text-gray);
}

/* Сообщество */
.community {
    background: var(--bg-darker);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 0;
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s;
    font-weight: 600;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.2);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.social-logo {
    width: 28px;
    height: 28px;
    fill: currentColor;
    transition: all 0.3s;
}

.social-link:hover .social-logo {
    transform: scale(1.1);
}

.social-link.telegram:hover {
    background: rgba(37, 150, 190, 0.2);
    border-color: #2596be;
    box-shadow: 0 10px 30px rgba(37, 150, 190, 0.4);
}

.social-link.twitter:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.social-link.youtube:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #ff0000;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

.social-icon {
    font-size: 1.5rem;
}

/* Футер */
.footer {
    background: var(--bg-darker);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.footer p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.875rem;
    color: var(--text-gray);
    opacity: 0.7;
}

/* Аудио плеер */
.audio-player {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.audio-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
    color: white;
    padding: 0;
}

.audio-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(99, 102, 241, 0.6);
}

.audio-toggle:active {
    transform: scale(0.95);
}

.audio-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: opacity 0.3s;
}

.audio-toggle.playing .play-icon {
    display: none;
}

.audio-toggle.playing .pause-icon {
    display: block !important;
}

.audio-toggle:not(.playing) .play-icon {
    display: block;
}

.audio-toggle:not(.playing) .pause-icon {
    display: none !important;
}

@media (max-width: 768px) {
    .audio-player {
        bottom: 20px;
        right: 20px;
    }
    
    .audio-toggle {
        width: 50px;
        height: 50px;
    }
    
    .audio-icon {
        width: 20px;
        height: 20px;
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    }

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

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .token-content {
        grid-template-columns: 1fr;
    }

    .token-chart {
        padding: 1.5rem;
    }

    .chart-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .stat-value {
        font-size: 0.75rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .stat-item {
        padding: 0.4rem;
        gap: 0.2rem;
    }

    .chart-container {
        max-width: 100%;
        padding: 0.5rem;
    }

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

    .roadmap-timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-marker {
        left: 5px;
    }

    .hero-image-wrapper {
        max-width: 100%;
        height: 400px;
    }

    .main-hero-img {
        transform: translate(-50%, -50%) scale(0.8);
    }

    .secondary-hero-img {
        display: none;
    }

    .about-main-description {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-main-text {
        padding-right: 0;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
    }

    .series-watch-container {
        gap: 2rem;
    }

    .series-preview-image {
        max-width: 100%;
    }

    .btn-watch-series {
        padding: 1.25rem 3rem;
        font-size: 1.25rem;
    }

    .episodes {
        grid-template-columns: 1fr;
    }

    .dao-features {
        grid-template-columns: 1fr;
    }

    .rwa-content {
        grid-template-columns: 1fr;
    }

    .game-content {
        grid-template-columns: 1fr;
    }

    .game-features {
        grid-template-columns: 1fr;
    }
}

