:root {
    --bg: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --accent: #00f2ff;
    --accent-2: #7000ff;
    --text: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--bg); /* Цвет на случай, если фото не грузится */
    
    /* Настройки общего фона */
    background-image: 
        radial-gradient(circle at center, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 0.9) 100%), /* Затемнение всего сайта */
        url('213.jpg'); 
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Фото замирает, пока ты листаешь контент */
    background-repeat: no-repeat;
}


h1, h2, h3, .badge { font-family: 'Unbounded', sans-serif; text-transform: uppercase; letter-spacing: 0.5px; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Эффект свечения на фоне */
.glow-common {
    position: fixed;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.3;
    z-index: -1;
}

/* Hero Section */
.hero { padding: 120px 0 60px; text-align: center; }

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

h1 { font-size: clamp(2.5rem, 8vw, 5rem); line-height: 1.1; margin-bottom: 30px; }
.gradient-text {
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #e0e0e0;
    
    /* Стеклянная подложка для читаемости */
    background: radial-gradient(circle, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 80%);
    padding: 20px 40px;
    border-radius: 50px;
    
    /* Эффект размытия фото под текстом */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    
    /* Мягкая тень самих букв для четкости */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Сделаем Skyline в тексте еще более заметным */
.hero-desc .gradient-text b {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.2rem;
}


/* Прогресс-бар */
.main-stats {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 30px;
}

.progress-info { display: flex; justify-content: space-between; margin-bottom: 15px; font-weight: bold; }

.progress-track {
    height: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
}

.progress-fill {
    width: 1%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 20px var(--accent);
    position: relative;
    animation: pulse 2s infinite;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    padding-bottom: 100px;
}

.bento-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.story-card { grid-column: span 2; }
.image-placeholder { 
    grid-column: span 2; 
    background: url('https://unsplash.com');
    background-size: cover;
    min-height: 250px;
    position: relative;
}

.crypto-card { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}
.crypto-card:hover { background: rgba(255,255,255,0.06); transform: scale(1.02); }
.crypto-card img { width: 40px; margin-bottom: 10px; }
.crypto-card code { font-size: 10px; color: #555; margin-top: 8px; }

.reward-card { grid-column: span 2; }
.reward-card ul { list-style: none; margin-top: 15px; }
.reward-card li { margin-bottom: 10px; font-size: 0.9rem; display: flex; justify-content: space-between;}
.reward-card li span { color: var(--accent); font-weight: bold; }

@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

/* Адаптив */
@media (max-width: 768px) {
    .bento-grid { grid-template-columns: 1fr; }
    .story-card, .image-placeholder, .reward-card { grid-column: span 1; }
}
.form-card {
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
}

.input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgb(46 230 255);
    border-radius: 8px;
    color: white;
    font-family: 'Inter';
    outline: none;
    letter-spacing: 0.5px;
    font-size: 16px;
}

input:focus, textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
}

textarea {
    height: 80px;
    resize: none;
    margin-bottom: 15px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border: none;
    border-radius: 8px;
    color: white;
    font-family: 'Unbounded';
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 1px;
    font-size: 16px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--accent-2);
}

@media (max-width: 600px) {
    .input-group { grid-template-columns: 1fr; }
}
.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Отступы между текстом и палкой */
    margin-top: 25px;
    font-family: 'Unbounded', sans-serif;
    font-size: 1rem;
}

.stat-item {
    display: flex;
    gap: 8px; /* Отступ между подписью и цифрой */
    align-items: center;
}

.stat-label {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.stat-value {
    color: var(--accent); /* Твой неоновый цвет */
    font-weight: bold;
}

.stat-divider {
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
    font-size: 1.2rem;
}

/* На мобилках можно оставить в строку или разрешить перенос */
@media (max-width: 480px) {
    .stats-grid {
        flex-wrap: wrap;
        gap: 10px;
    }
}
.gradient-text1 {
    /* Делаем цвета более насыщенными */
    background: linear-gradient(90deg, #00f2ff, #bc13fe, #00f2ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Усиливаем яркость через фильтр */
    filter: brightness(1.3) contrast(1.2);
    
    /* Добавляем свечение именно буквам */
    drop-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
    
    animation: shine 4s linear infinite;
    position: relative;
    z-index: 5; /* Выносим над всеми слоями затемнения */
}

/* Дополнительно убедимся, что жирный шрифт не съедает цвет */
.hero-desc b {
    font-weight: 600;
}

.crypto-full-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 20px;
    width: 100%;
}

.crypto-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px !important;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.crypto-card img {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
}

.crypto-card span {
    font-family: 'Unbounded';
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: 1.5px;
}

.crypto-card code {
    font-family: 'Inter';
    font-size: 12px; /* Уменьшаем размер, чтобы влез весь хэш */
    color: #d8d8d8;
    word-break: break-all; /* Разбивает длинный хэш по буквам */
    background: rgba(0,0,0,0.2);
    padding: 5px;
    border-radius: 4px;
    line-height: 1.2;
}

/* Стили для Mori Coin по центру */
.mori-special {
    border: 1px solid var(--accent) !important;
    background: rgba(0, 242, 255, 0.05) !important;
    transform: scale(1.05); /* Легкое увеличение */
    position: relative;
    z-index: 2;
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.2);
}

.mori-special span {
    color: var(--accent);
}

.mori-special code {
    color: var(--accent);
    opacity: 0.8;
}

/* Адаптив для планшетов и мобилок */
@media (max-width: 1024px) {
    .crypto-full-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .crypto-full-row { grid-template-columns: 1fr; }
    .mori-special { transform: scale(1); }
}
.reward-card {
    grid-column: span 2; /* Растягивает карточку на две колонки */
}
.goal-info {
    display: flex;
    justify-content: space-between;
    margin-top: 8px; /* Отступ от шкалы */
}

.total-target {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.75rem;
    color: #ffffff; /* Неброский цвет, чтобы не перебивать основные цифры */
    text-transform: uppercase;
    letter-spacing: 1px;
    
}
.rewards-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0; /* Отступы сверху и снизу от линии */
    line-height: 25px;
    letter-spacing: 0.5px;
    font-size: 15px;
    
    /* Добавляем линию */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
}

/* Убираем линию у последнего пункта, чтобы снизу не было лишнего */
.rewards-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Опционально: немного отодвинем первый пункт от заголовка */
.rewards-list li:first-child {
    padding-top: 5px;
}
.story-card p {
    margin-bottom: 15px; /* Разделяет абзацы */
    color: #ccc; /* Чуть приглушенный цвет для комфортного чтения */
    font-size: 15px;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 21px;
}
@media (max-width: 600px) {
    .rewards-list li {
        flex-direction: column; /* Ставит название и цену друг под друга */
        align-items: flex-start; /* Выравнивает всё по левому краю */
        gap: 10px; /* Делает отступ между текстом и ценой */
        padding: 20px 0;
    }

    .price {
        margin-left: 0; /* Убирает левый отступ, который был в десктопе */
        align-self: flex-start; /* Прижимает ценник к левому краю */
        font-size: 0.7rem; /* Чуть уменьшаем для компактности */
    }
    
    .reward-info p {
        padding-right: 0; /* Убираем лишние отступы справа */
    }
}
.tech-partnership {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px dashed rgba(255, 255, 255, 0.2); /* Пунктир подчеркивает, что это "место для вашей рекламы" */
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.tech-tag {
    padding: 6px 12px;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 100px;
    font-size: 13px;
    color: var(--accent);
    font-family: 'Unbounded';
    letter-spacing: 1px;
}

.tech-note {
    font-size: 18px;
    color: #ffffff;
    font-style: italic;
    letter-spacing: 0.5px;
}
.bento-grid1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Две колонки, как в основном блоке */
    gap: 25px; /* Такой же зазор между карточками */
    margin-top: 25px; /* Отступ от блока выше, чтобы они не слиплись */
    width: 100%;
    max-width: 1100px; /* Должно совпадать с шириной твоего .container */
    margin-left: auto;
    margin-right: auto;
}

/* Настройка самого блока партнерства внутри этой сетки */
.tech-partnership {
    grid-column: span 2; /* Растягиваем на обе колонки внутри bento-grid1 */
    padding: 30px;
    box-sizing: border-box;
}
.partner-btn {
    margin-top: 20px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 12px 25px;
    border-radius: 8px;
    font-family: 'Unbounded';
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.partner-btn:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

/* Стили полей внутри блока партнерства, чтобы не ехали */
#partnerForm .input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    #partnerForm .input-group {
        grid-template-columns: 1fr;
    }
}
.roadmap-section { padding: 60px 0; }

.section-title {
    font-family: 'Unbounded';
    text-transform: uppercase;
    margin-bottom: 40px;
    font-size: 1.5rem;
    color: var(--text);
    text-align: center;
}

.roadmap-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Линия-коннектор */
.roadmap-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255,255,255,0.05);
    z-index: 1;
}

.roadmap-item {
    position: relative;
    z-index: 2;
    text-align: center;
}

.roadmap-dot {
    width: 20px;
    height: 20px;
    background: #1a1a1a;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    margin: 30px auto;
    transition: 0.5s;
}

.roadmap-content {
    background: rgba(255,255,255,0.02);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    height: 100%;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Растягивает контент, заполняя пустоту */
}

/* Активный этап */
.roadmap-item.active .roadmap-dot {
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent);
    border-color: var(--accent);
}

.roadmap-item.active .roadmap-content {
    border-color: rgba(0, 242, 255, 0.3);
    background: rgba(0, 242, 255, 0.05);
}

.step-badge {
    font-size: 13px;
    color: #ffffff;
    font-family: 'Unbounded';
    display: block;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.roadmap-content h4 {
    font-family: 'Unbounded';
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--text);
}

.roadmap-content p {
    font-size: 14px;
    color: #d3d3d3;
    line-height: 2;
    letter-spacing: 0.5px;
}

.step-status {
    margin-top: 15px;
    font-size: 13px;
    font-family: 'Unbounded';
    letter-spacing: 1px;
    color: #444;
}

.roadmap-item.active .step-status {
    color: var(--accent);
}

/* Адаптив для мобилок */
@media (max-width: 900px) {
    .roadmap-container { grid-template-columns: 1fr; }
    .roadmap-container::before { display: none; }
    .roadmap-item { text-align: left; display: flex; gap: 20px; }
    .roadmap-dot { margin: 0; flex-shrink: 0; }
}
.garage-section {
    margin-top: 40px;
    padding-bottom: 20px;
}

.garage-placeholder {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    /* Эффект металлического пола или темного бокса */
    background: linear-gradient(180deg, rgba(5,5,5,0.2) 0%, rgba(20,20,20,0.8) 100%);
    border: 1px dashed rgba(0, 242, 255, 0.2); /* Пунктир подчеркивает, что блок "в ожидании" */
}

/* Бегущая линия сканирования, как в фантастических фильмах */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
    opacity: 0.3;
    animation: scan 4s linear infinite;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

.garage-content {
    max-width: 500px;
    z-index: 2;
}

.garage-content h3 {
    font-family: 'Unbounded';
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-size: 22px;
}

.garage-content p {
    color: #cdcdcd;
    font-size: 16px;
    line-height: 2;
}

.status-badge {
    display: inline-block;
    margin-top: 25px;
    padding: 8px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Unbounded';
    font-size: 10px;
    text-transform: uppercase;
    color: #d2d2d2;
    background: rgba(0,0,0,0.3);
    letter-spacing: 1.5px;
}

/* Декоративный элемент - сетка на фоне */
.garage-placeholder::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}
/* Эффект при наведении на карточку */
.crypto-card:hover {
    border-color: #00f2ff !important; /* Цвет рамки (синий неон) */
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2); /* Мягкое свечение вокруг */
    transform: translateY(-5px); /* Легкий подъем карточки */
}

/* Изменение цвета заголовка при наведении на карточку */
.crypto-card:hover span {
    color: #00f2ff !important;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5); /* Свечение текста */
}

/* Плавный переход для всех элементов (чтобы не дергалось) */
.crypto-card, .crypto-card span {
    transition: all 0.3s ease;
}
