/* --- 1. ПЕРЕМЕННЫЕ И ОБЩИЕ СТИЛИ --- */
:root {
    --color-bg-card: #ffffff;
    --color-accent: #ff5722;
    --color-green: #1db67e;
    --color-dark: #222222;
    --bg-2: #1a0a2e;
    --bg: #0a0a1a;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Quantico', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    counter-reset: section;
    background: radial-gradient(1200px 800px at 20% -10%, rgba(186, 79, 255, .25), transparent 55%), radial-gradient(1200px 800px at 90% 0%, rgba(138, 43, 226, .18), transparent 55%), linear-gradient(33deg, #19202d, #1a1d21);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 20px; */
    color: #fff;
}

/* --- 2. ШАПКА И МЕНЮ --- */
header {
    font-family: 'Black Ops One', cursive;
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(6, 8, 16, .62);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    max-height: 50px;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

header nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

header nav ul li a:hover {
    color: #c4a1e9;
}

/* Бургер для мобилок */
.js-mobile-btn {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 101;
}

.js-mobile-btn span,
.js-mobile-btn:before,
.js-mobile-btn:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff; /* Изменено на белый */
    transition: 0.3s;
}

.js-mobile-btn:before {
    top: 0;
}

.js-mobile-btn span {
    top: 9px;
}

.js-mobile-btn:after {
    bottom: 0;
}

.hero-main {
    color: #fff;
    padding: 50px 0;
    text-align: center;
    background: radial-gradient(1200px 800px at 20% -10%, rgba(186, 79, 255, .25), transparent 55%), radial-gradient(1200px 800px at 90% 0%, rgba(138, 43, 226, .18), transparent 55%), linear-gradient(33deg, #19202d, #1a1d21);
    width: 100%;
}

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

/* --- 3. СТИЛИ БЛОКОВ КАЗИНО --- */
.casinosss-item-wrapper {
    margin-bottom: 15px;
}

.casinosss-item-inner {
    display: flex;
    align-items: center;
    position: relative;
    background-color: #332b3d;
    box-shadow: 0 3px 8px rgb(0 0 0 / 2%), 0 5px 6px rgb(0 0 0 / 4%), 0 1px 5px rgb(0 0 0 / 10%);
    justify-content: space-between;
    padding: 0 15px 0 30px;
    border-radius: 5px;
    min-height: 100px;
    box-sizing: border-box;
}

.item-image,
.item-promo,
.item-bonus,
.item-nodep,
.item-button {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.item-image {
    flex: 1.2;
    align-items: flex-start;
    padding: 10px 15px;
}

.item-button {
    align-items: flex-end;
}

.casinosss-item-inner.item-bonus {
    background: rgba(70, 162, 141, 0.08);
}

.casinosss-item-inner .casino-badge {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-flex;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-accent), #ff7a3c);
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 4;
}

.casinosss-item-inner .casino-place-icons {
    position: absolute;
    top: 0;
    left: 5px;
    z-index: 2;
    width: 38px;
}

.casinosss-item-inner:before {
    content: counter(section);
    counter-increment: section;
    position: absolute;
    top: 11px;
    left: 5px;
    width: 37px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 17px;
    z-index: 3;
}

.item-image img {
    max-width: 180px;
    height: auto;
}

.item-flex-div {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.item-flex-div-h {
    color: #edd8ff;
    text-transform: uppercase;
    font-size: 12px;
    margin: 0 0 5px 0;
    font-weight: bold;
    line-height: 1;
}

.promo-block {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    width: 150px;
    padding: 0px 5px;
    border: 1px dashed #bbb;
    border-radius: 5px;
    cursor: pointer;
    background: #332b3d;
    margin: 0 auto;
    overflow: hidden;
}

.promo-value {
    color: #e91f1b;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
}

.promo-block .promo-value {
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    margin-right: 0.3em;
    font-weight: bold;
}

.bonus-value,
.nodep-value {
    color: #c4a1e9;
    font-weight: bold;
    font-size: 17px;
    line-height: 36px;
}

.item-button-play {
    display: block;
    background: var(--color-green);
    color: #fff !important;
    padding: 12px 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
    min-width: 130px;
    text-align: center;
    cursor: pointer;
}

.item-button-play:hover {
    background: #159968;
    transform: translateY(-2px);
}

.item-button .item-button-play {
    display: block;
    background: #7f58af;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 10px;
    transition: all ease 0.5s;
}

.article-content {
    max-width: 1160px;
    margin: 0 auto;
}

/* --- 4. ТГ БАННЕР И КНОПКА ВВЕРХ --- */
.promo-banner {
    overflow: hidden;
    transition: all 0.5s;
    display: flex;
    background: #1e1b23;
    width: 100%;
    text-decoration: none;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 10;
    border-top: 2px solid #5cb5ff;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.promo-banner img {
    width: 27px;
    height: 25px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.promo-banner p span,
.promo-banner .tg {
    line-height: 130%;
    color: #00b7ff;
    margin: 0 0 0 5px;
    font-weight: 600;
    text-decoration: none;
}

.promo-banner p {
    padding: 0 0 0 15px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    margin: 0;
    line-height: 100%;
}

.promo-banner .tg {
    background: #00b7ff;
    cursor: pointer;
    color: #fff;
    padding: 5px 20px;
    border-radius: 32px;
    display: block;
    position: relative;
    font-style: normal;
    margin: 0 0 0 20px;
}

.promo-banner .tg:hover {
    background: #0396d0;
}

.promo-banner .close {
    font-style: normal;
    font-size: 14px;
    color: #363636;
    position: absolute;
    top: 15px;
    right: 16px;
    line-height: 100%;
    display: block;
    cursor: pointer;
    width: 15px;
    height: 15px;
}

.promo-banner .close:before,
.promo-banner .close:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 1px;
    background: #1e96c8;
    top: 6px;
    left: 0;
}

.promo-banner .close:before {
    transform: rotate(45deg);
}

.promo-banner .close:after {
    transform: rotate(-45deg);
}

.js-top {
    position: fixed;
    right: 20px;
    bottom: 150px;
    cursor: pointer;
    opacity: 0.7;
    z-index: 10;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 32px;
    border-radius: 100%;
    font-size: 22px;
    background-color: #c4a1e9;
    color: #000000;
}

/* --- 5. ФУТЕР --- */
footer {
    border-top: 1px solid rgba(255, 255, 255, .07);
    color: #fff;
    padding: 30px 0;
    margin-top: 50px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left p {
    margin: 0;
}

.footer-crypto-icons {
    display: flex;
    gap: 20px;
    opacity: 0.7;
}

.footer-crypto-icons img {
    width: 32px;
    height: 32px;
}

/* --- 6. АДАПТИВНОСТЬ --- */
@media (max-width: 992px) {
    .casinosss-item-inner {
        flex-direction: column;
        padding: 50px 20px 20px 20px;
        gap: 15px;
        text-align: center;
    }

    .item-flex-div-h {
        margin-bottom: 5px;
    }

    .bonus-value,
    .nodep-value {
        line-height: 1.2;
    }

    .casinosss-item-inner .item-image {
        flex: 0 0 auto;
    }

    .item-image img {
        max-width: 150px;
    }

    /* МОБИЛЬНОЕ МЕНЮ - ИСПРАВЛЕННАЯ ВЕРСИЯ */
    .js-mobile-btn {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
        z-index: 1001;
    }
    
    .js-mobile-btn span,
    .js-mobile-btn:before,
    .js-mobile-btn:after {
        background: #fff !important;
    }

    .js-mobile-btn.active span {
        opacity: 0;
        transform: scale(0);
    }

    .js-mobile-btn.active:before {
        transform: translateY(10px) rotate(45deg);
    }

    .js-mobile-btn.active:after {
        transform: translateY(-10px) rotate(-45deg);
    }

    header nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: auto;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        background: rgba(6, 8, 16, 0.98) !important;
        backdrop-filter: blur(12px);
        padding: 25px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease-in-out;
        z-index: 999;
    }

    header.active nav {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin: 0;
        padding: 0 20px;
    }
    
    header nav ul li {
        width: 100%;
        text-align: center;
    }
    
    header nav ul li a {
        color: #fff !important;
        font-size: 16px;
        font-weight: 600;
        padding: 15px 20px;
        display: block;
        text-align: center;
        width: 100%;
        border-radius: 8px;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
    }
    
    header nav ul li a:hover {
        color: #c4a1e9 !important;
        background: rgba(196, 161, 233, 0.15);
        border-color: rgba(196, 161, 233, 0.3);
        transform: translateY(-2px);
    }
    
    /* Фикс для хедера на мобильных */
    .header-container {
        min-height: 70px;
        position: relative;
    }
    
    .logo img {
        max-height: 40px;
    }
}

@media (max-width: 768px) {
    .promo-banner,
    .promo-banner p {
        flex-direction: column;
    }

    .promo-banner p {
        padding: 0 10px;
        gap: 3px;
    }

    .promo-banner .tg {
        margin-left: 0;
    }

    .footer-inner {
        flex-direction: column !important;
        text-align: center;
        gap: 20px;
    }

    .footer-crypto-icons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}









/* Стили для нового героя */
.hero-main {
    color: #fff;
    padding: 60px 0;
    text-align: left;
    background: radial-gradient(1200px 800px at 20% -10%, rgba(186, 79, 255, .25), transparent 55%), 
                radial-gradient(1200px 800px at 90% 0%, rgba(138, 43, 226, .18), transparent 55%), 
                linear-gradient(33deg, #19202d, #1a1d21);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    /* Градиент: белый → фиолетовый */
    background: linear-gradient(135deg, #fff 0%, #c4a1e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-description {
    font-family: 'Quantico', sans-serif;
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    color: #fff;
    margin: 0 0 30px 0;
    max-width: 90%;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Quantico', sans-serif;
    color: #fff;
    font-size: 1.1rem;
}

.feature-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* Стили для крипто-секции */
.hero-crypto {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.crypto-row {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.crypto-icon {
    position: relative;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(138, 43, 226, 0.3));
}

.crypto-icon:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 6px 20px rgba(196, 161, 233, 0.5));
}

.crypto-icon::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.crypto-icon:hover::before {
    opacity: 1;
    visibility: visible;
}

.crypto-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.crypto-icon:hover img {
    transform: scale(1.05);
}

/* Адаптивность для героя */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
        /* Градиент для мобильных */
        background: linear-gradient(135deg, #fff 0%, #c4a1e9 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-description {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-crypto {
        order: 4;
    }
    
    .crypto-row {
        gap: 20px;
    }
    
    .crypto-icon img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .hero-main {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
        /* Градиент для маленьких экранов */
        background: linear-gradient(135deg, #fff 0%, #c4a1e9 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .crypto-row {
        gap: 15px;
    }
    
    .crypto-icon img {
        width: 50px;
        height: 50px;
    }
    
    .feature-item {
        font-size: 1rem;
    }
}
















/* КОНТЕНТ ГЛАВНОЙ СТРАНИЦЫ КОНТЕНТ ГЛАВНОЙ СТРАНИЦЫ КОНТЕНТ ГЛАВНОЙ СТРАНИЦЫ */



/* Общие стили для текста */
.article-content {
    max-width: 1160px;
    margin: 0 auto;
    font-family: 'Quantico', sans-serif;
    color: #fff;
    padding: 40px 20px;
}

.article-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 25px;
    opacity: 0.9;
}

.article-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin: 50px 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(196, 161, 233, 0.3);
    padding-bottom: 10px;
    /* Градиент для H2: белый → фиолетовый */
    background: linear-gradient(135deg, #fff 0%, #c4a1e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.article-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 27px;
    font-weight: 600;
    color: #edd8ff;
    margin: 40px 0 20px 0;
    text-transform: none;
}

/* Стили для блоков-карточек */
.text-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.text-card {
    background: rgba(51, 43, 61, 0.8);
    border-left: 4px solid #c4a1e9;
    padding: 25px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.text-card:hover {
    transform: translateY(-5px);
    border-left-color: #ff5722;
}

/* Блок с иконкой */
.expert-insight {
background: rgba(70, 162, 141, 0.08);
    border-radius: 8px;
    padding: 25px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(196, 161, 233, 0.2);
}

.expert-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c4a1e9, #ff5722);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expert-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.expert-content {
    flex: 1;
}

.expert-content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
}

/* Блок с преимуществами */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0 40px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card h4 {
    color: #ff5722;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.feature-card p {
    font-size: 16px;
    margin: 0;
    opacity: 0.8;
}

/* Блок FAQ */
.faq-section {
    margin: 40px 0;
}

.faq-item {
    background: rgba(51, 43, 61, 0.8);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(196, 161, 233, 0.2);
}

.faq-question {
    padding: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: #edd8ff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(196, 161, 233, 0.1);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 0 20px 20px 20px;
    max-height: 500px;
}

.chevron {
    width: 12px;
    height: 12px;
    border-right: 2px solid #c4a1e9;
    border-bottom: 2px solid #c4a1e9;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.faq-question.active .chevron {
    transform: rotate(225deg);
}

/* Ссылки в тексте */
.article-content a {
    color: #c4a1e9;
    text-decoration: underline;
    transition: all 0.3s ease;
    text-underline-offset: 3px;
}

.article-content a:hover {
    color: #c4a1e9;
}

/* Варнинг блок */
.warning-box {
    border-radius: 0 0px 0px 0;
    margin: 0px 0;
}

.warning-box p {
    color: #ffb8a3;
    /* padding: 15px; */
    border-radius: 8px;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 25px;
}
.warning-content {
    
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
}

/* Адаптивность для контента */
@media (max-width: 992px) {
    .text-cards {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .article-content h2 {
        font-size: 26px;
        /* Градиент для мобильных */
        background: linear-gradient(135deg, #fff 0%, #c4a1e9 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .article-content h3 {
        font-size: 24px;
    }
    
    /* Улучшение читаемости на мобильных */
    .article-content p {
        font-size: 17px;
        line-height: 1.7;
        padding: 0 10px;
    }
    
    .text-card, .expert-insight, .warning-box {
        padding: 20px;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .faq-question {
        padding: 18px 15px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .expert-insight {
        flex-direction: column;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .expert-icon {
        align-self: center;
    }
    
    .article-content {
        padding: 30px 10px;
    }
    
    .article-content h2 {
        /* Градиент для маленьких экранов */
        background: linear-gradient(135deg, #fff 0%, #c4a1e9 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    /* Улучшение мобильного меню */
    header nav ul li a {
        font-size: 15px;
        padding: 14px 15px;
        margin: 0 10px;
    }
}





/* =================== */
/* СТРАНИЦА ETHEREUM 2.0 */
/* =================== */

/* Новый layout для hero */
.page-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 400px;
}

.hero-text-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

/* H1 для внутренних страниц */
.page-hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    /* Яркий градиент для внутренних страниц */
    background: linear-gradient(135deg, 
        #fff 0%, 
        #a97be6 25%, 
        #8a2be2 50%, 
        #c4a1e9 75%, 
        #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    background-size: 200% auto;
}

.hero-description-block {
    background: rgba(51, 43, 61, 0.7);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #8a2be2;
}

.page-hero-description {
    font-family: 'Quantico', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    margin: 0 0 25px 0;
    opacity: 0.9;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    padding: 10px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 8px;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #c4a1e9;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Визуализация ETH */
.eth-visual {
    position: relative;
    text-align: center;
}

.eth-icon-large {
    margin-bottom: 20px;
    
}

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

.eth-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
    margin: 0 auto;
}

.feature-badge {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
    transform: translateX(20px);
}

.feature-badge.speed {
    background: linear-gradient(90deg, rgba(138, 43, 226, 0.2), rgba(196, 161, 233, 0.2));
    border: 1px solid rgba(138, 43, 226, 0.4);
    color: #fff;
    animation-delay: 0.2s;
}

.feature-badge.secure {
    background: linear-gradient(90deg, rgba(29, 182, 126, 0.2), rgba(21, 153, 104, 0.2));
    border: 1px solid rgba(29, 182, 126, 0.4);
    color: #fff;
    animation-delay: 0.4s;
}

.feature-badge.decentralized {
    background: linear-gradient(90deg, rgba(13, 253, 255, 0.2), rgba(138, 43, 226, 0.2));
    border: 1px solid rgba(13, 253, 255, 0.4);
    color: #fff;
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Интерактивный интро */
.interactive-intro {
    
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid rgba(196, 161, 233, 0.2);
}

.intro-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(196, 161, 233, 0.3);
}

.intro-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    color: #c4a1e9;
    margin: 0;
    text-transform: uppercase;
}

.crypto-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e91f1b;
}

.status-dot.active {
    background: #1db67e;
    animation: pulse 2s infinite;
}

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

.status-text {
    font-size: 14px;
    color: #bbb;
}

.content-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 25px 0;
    align-items: center;
}

.text-column p {
    font-size: 17px;
    line-height: 1.6;
   
}

.highlight-box {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #8a2be2;
    padding: 20px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 20px;
}

.highlight-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.benefit-card {
   
    border-radius: 10px;
    padding: 18px;
    border: 1px solid rgba(196, 161, 233, 0.2);
}

.benefit-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: #ff5722;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #edd8ff;
}

.check-icon {
    color: #8a2be2;
    font-weight: bold;
    font-size: 18px;
}

.callout-box {

}

.callout-content p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
}

.conclusion-box {
  
    border-radius: 10px;
    padding: 20px;
    margin-top: 25px;
    text-align: center;
    font-style: italic;
   
}

/* Газовые комиссии - инфографика */
.gas-fee-section {
    margin: 40px 0;
}

.gas-explanation {
    margin-bottom: 30px;
}

.gas-explanation p {
    font-size: 18px;
    line-height: 1.7;
}

.gas-visual {
    
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid rgba(255, 87, 34, 0.2);
}

.gas-meter {
    max-width: 600px;
    margin: 0 auto;
}

.meter-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 12px;
    color: #bbb;
}

.meter-bar {
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.gas-level {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #1db67e, #ff5722, #e91f1b);
    border-radius: 20px;
    transition: width 0.5s ease;
}

.current-gas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    font-size: 14px;
}

.meter-tip {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #ffb8a3;
}

.tip-icon {
    font-size: 20px;
}

.warning-critical {
 display: flex;
    gap: 15px;
    padding: 0 25px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
}

.warning-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.timing-tips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.tip-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.time-icon {
    font-size: 24px;
}

.tip-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: #c4a1e9;
    margin: 0;
    text-transform: uppercase;
}

.tip-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
}

/* Инфографика MetaMask */
.metamask-guide {
    margin: 40px 0;
}


.guide-intro {
    background: rgba(255, 136, 0, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    
}

.wallet-visual {
    display: flex;
    align-items: center;
    gap: 20px;
}

.wallet-icon {
    font-size: 48px;
    background: rgba(255, 136, 0, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wallet-text h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
   
    margin: 0 0 10px 0;
}

.wallet-text p {
    margin: 0;
    
    font-size: 16px;
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.step-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
    background: rgba(51, 43, 61, 0.8);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-number-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(359deg, #8a2be2, #c4a1e9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

.step-icon {
    font-size: 24px;
}

.step-details h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: #fff;
    margin: 0 0 8px 0;
}

.step-details p {
    margin: 0 0 12px 0;
    font-size: 15px;
    line-height: 1.5;
    color: #ccc;
}

.step-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(138, 43, 226, 0.2);
    
}

.step-badge.security {
    background: rgba(138, 43, 226, 0.2);
    
}

.step-badge.success {
    background: rgba(138, 43, 226, 0.2);
    
}

.guide-benefit {
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    border: 2px solid #332b3d;
}

.benefit-visual {
    display: flex;
    align-items: center;
    gap: 20px;
}

.benefit-icon {
    font-size: 36px;
    background: rgba(255, 136, 0, 0.2);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: #ff5722;
    margin: 0 0 10px 0;
}

.benefit-text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}

/* Адаптивность */
@media (max-width: 992px) {
    .page-hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text-section {
        order: 2;
    }
    
    .hero-image-section {
        order: 1;
    }
    
    .content-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .timing-tips {
        grid-template-columns: 1fr;
    }
    
    .step-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step-visual {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .page-hero-title {
        font-size: 28px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 200px;
        margin: 20px auto 0;
    }
    
    .eth-features {
        max-width: 100%;
    }
    
    .feature-badge {
        padding: 8px 15px;
        font-size: 13px;
    }
}





/* =================== */
/* СТРАНИЦА USDT */
/* =================== */

/* Hero секция для USDT */
.hero-usdt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, 
        rgba(0, 180, 204, 0.25) 0%, 
        transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Градиент для USDT H1 */
.usdt-gradient {
     background: linear-gradient(135deg, #fff 0%, #a97be6 25%, #8a2be2 50%, #c4a1e9 75%, #fff 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* USDT визуализация */
.usdt-visual {
    position: relative;
    text-align: center;
}

.usdt-icon-large {
    margin-bottom: 25px;
   
}

.network-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.network-badge {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    min-width: 100px;
    animation: fadeIn 0.1s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.network-badge.trc20 {
      padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    min-width: 120px;
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid #c4a1e9;
    /* color: #c4a1e9; */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    
}

.network-badge.erc20 {
     padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    min-width: 120px;
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid #c4a1e9;
    /* color: #c4a1e9; */
    text-transform: uppercase;
    letter-spacing: 0.5px;
   
}

.network-badge.bep20 {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    min-width: 120px;
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid #c4a1e9;
    /* color: #c4a1e9; */
    text-transform: uppercase;
    letter-spacing: 0.5px;
   
}

/* Специфичные стили для USDT интро */
.usdt-intro .highlight-box {
    border-left-color: #26a69a;
}

/* Сравнение сетей */
.network-comparison {
    margin: 40px 0;
}

.comparison-intro {
    margin-bottom: 30px;
}

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

.network-card {
    background: rgba(51, 43, 61, 0.8);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.network-card:hover {
    transform: translateY(-5px);
}

.trc20-card {
    border-color: rgba(255, 87, 34, 0.3);
    background: rgba(255, 87, 34, 0.05);
}

.erc20-card {
    border-color: rgba(138, 43, 226, 0.3);
    background: rgba(138, 43, 226, 0.05);
}

.network-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.network-logo {
    font-size: 32px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    margin: 0;
    flex: 1;
    color: #fff;
}

.network-tag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.network-tag.recommended {
    background: rgba(29, 182, 126, 0.2);
    color: #1db67e;
}

.network-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.network-fee, .network-speed {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.fee-label, .speed-label {
    font-size: 14px;
    color: #bbb;
}

.fee-value, .speed-value {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.trc20-card .fee-value {
    color: #1db67e;
}

.erc20-card .fee-value {
    color: #c4a1e9;
}

.network-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.network-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #ccc;
    position: relative;
    padding-left: 20px;
}

.network-features li:before {
    content: "•";
    color: #26a69a;
    position: absolute;
    left: 0;
    font-size: 18px;
}

/* Преимущества USDT */
.usdt-benefits {
    margin: 40px 0;
}

.benefit-intro {
    margin-bottom: 30px;
}

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

.benefit-item {
    background: rgba(51, 43, 61, 0.8);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(38, 166, 154, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: #26a69a;
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 15px;
    background: rgba(38, 166, 154, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: #fff;
    margin: 0 0 12px 0;
    text-transform: uppercase;
}

.benefit-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
}

/* Топ 5 казино */
.top-casinos {
    margin: 40px 0;
}

.leaderboard-intro {
    margin-bottom: 30px;
}

.casino-leaderboard {
  
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(196, 161, 233, 0.2);
}

.leaderboard-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.leaderboard-item:last-child {
    border-bottom: none;
}

.leaderboard-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.rank {
    width: 40px;
    height: 40px;
    background: linear-gradient(225deg, #8a2be2, #c4a1e9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

.casino-info {
    flex: 1;
}

.casino-info h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: #c4a1e9;
    margin: 0 0 8px 0;
}

.casino-info p {
    margin: 0 0 12px 0;
    font-size: 15px;
    line-height: 1.5;
    color: #ccc;
}

.review-link {
    color: #00b4cc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.review-link:hover {
    color: #c4a1e9;
    text-decoration: underline;
}

/* Гайд по легитимности */
.legit-guide {
    margin: 40px 0;
}

.legit-intro {
    margin-bottom: 30px;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(51, 43, 61, 0.8);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid transparent;
}

.checklist-item.valid {
    border-left-color: #1db67e;
}

.checklist-item.warning {
    border-left-color: #ff5722;
}

.check-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.valid .check-icon {
    color: #1db67e;
}

.warning .check-icon {
    color: #ff5722;
}

.check-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: #fff;
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

.check-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #ccc;
}

/* Финальный вердикт */
.final-verdict {
    margin: 40px 0;
}

.verdict-content {
    
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #402f53;
}

.verdict-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.homepage-cta {
    margin-top: 30px;
    text-align: center;
}

.cta-button {
    display: inline-block;
   
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}



/* Адаптивность для USDT */
@media (max-width: 992px) {
    .networks-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .network-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .network-badge {
        width: 150px;
    }
}

@media (max-width: 576px) {
    .usdt-gradient {
        font-size: 24px !important;
    }
    
    .network-card {
        padding: 20px;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .leaderboard-item {
        flex-direction: column;
        text-align: center;
    }
    
    .rank {
        align-self: center;
    }
}



/* =================== */
/* СТРАНИЦА USDC */
/* =================== */

/* Градиент для USDC H1 */
.usdc-gradient {
    background: linear-gradient(135deg, #fff 0%, #a97be6 25%, #8a2be2 50%, #c4a1e9 75%, #fff 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-fill-color: transparent !important;
    text-shadow: 0 2px 10px rgba(39, 117, 202, 0.3);
}

/* USDC визуализация */
.usdc-visual {
    position: relative;
    text-align: center;
}

.usdc-icon-large {
    margin-bottom: 25px;
    animation: none !important; /* Убираем анимацию */
}

.network-badge.solana {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    min-width: 120px;
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid #c4a1e9;
    /* color: #c4a1e9; */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.network-badge.polygon {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    min-width: 120px;
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid #c4a1e9;
    /* color: #c4a1e9; */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.network-badge.ethereum {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    min-width: 120px;
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid #c4a1e9;
    /* color: #c4a1e9; */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Специфичные стили для USDC интро */
.usdc-intro .highlight-box {
    border-left-color: #2775ca;
    background: rgba(39, 117, 202, 0.1);
}

.usdc-card {
    border: 2px solid rgba(39, 117, 202, 0.3);
}

/* Секция сравнения */
.comparison-table {
    margin: 30px 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(51, 43, 61, 0.8);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th {
    background: rgba(39, 117, 202, 0.3);
    padding: 15px;
    text-align: left;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ccc;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .good {
    color: #1db67e;
    font-weight: bold;
}

.comparison-table .medium {
    color: #ffca28;
    font-weight: bold;
}

.comparison-table .bad {
    color: #ff5722;
    font-weight: bold;
}

.comparison-table .na {
    color: #999;
    font-style: italic;
}

.table-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(39, 117, 202, 0.1);
    border-radius: 8px;
    border-left: 3px solid #2775ca;
}

/* Whale секция */
.whale-box {
    background: rgba(39, 117, 202, 0.15);
    border-left-color: #00dfd8;
}

.market-data {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-style: italic;
}

/* Секция аудита */
.audit-conclusion {
    margin-top: 25px;
    padding: 20px;
    background: rgba(39, 117, 202, 0.1);
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
}

/* Вердикт USDC */
.usdc-verdict .verdict-content {
    

}

/* Адаптивность для USDC */
@media (max-width: 768px) {
    .usdc-gradient {
        font-size: 28px !important;
    }
    
    .network-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .network-badge {
        width: 120px;
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }
}

/* Отключаем все анимации в hero-блоке */
.hero-main *,
.hero-crypto *,
.crypto-icon,
.crypto-icon img,
.eth-icon-large,
.usdt-icon-large,
.usdc-icon-large {
   
    transition: none !important;
    
}

.crypto-icon:hover,
.crypto-icon:hover img {
    transform: none !important;
    filter: none !important;
}



/* =================== */
/* СТРАНИЦА SOLANA */
/* =================== */

/* Градиент для Solana H1 */
.solana-gradient {
 background: linear-gradient(135deg, #fff 0%, #a97be6 25%, #8a2be2 50%, #c4a1e9 75%, #fff 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-fill-color: transparent !important;
    text-shadow: 0 2px 10px rgba(39, 117, 202, 0.3);
}

/* Solana визуализация */
.solana-visual {
    position: relative;
    text-align: center;
}

.solana-icon-large {
    margin-bottom: 25px;
    animation: none !important;
}

.speed-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.speed-badge {
     padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    min-width: 120px;
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid #c4a1e9;
    /* color: #c4a1e9; */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Специфичные стили для Solana интро */
.solana-intro .highlight-box {
    border-left-color: #00ffa3;
    background: rgba(0, 255, 163, 0.1);
}

.solana-callout {
   
}

.analogy-card {
    background: rgba(51, 43, 61, 0.8);
    border-radius: 12px;
    padding: 17px;
    border: 2px solid rgba(220, 31, 255, 0.3);
}

.analogy-card h4 {
    color: #dc1fff;
    font-family: 'Orbitron', sans-serif;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.speed-metrics {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.metric {
    text-align: center;
    flex: 1;
}

.metric-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #00ffa3;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 12px;
    color: #bbb;
    text-transform: uppercase;
}

/* Карточка скорости */
.speed-card {
    border: 2px solid rgba(0, 255, 163, 0.3);
    background: rgba(0, 255, 163, 0.05);
}

.speed-card .feature-icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: #00ffa3;
}

.feature-note {
    margin-top: 10px;
    padding: 10px;
    background: rgba(0, 255, 163, 0.1);
    border-radius: 6px;
    font-size: 14px;
    font-style: italic;
}

/* Wallet guide */
.wallet-guide {
    margin: 40px 0;
}

.wallet-demo {
display: flex;
    gap: 30px;
    background: rgba(51, 43, 61, 0.8);
    border-radius: 15px;
    padding: 30px;
    margin: 25px 0;
    border: 2px solid rgba(220, 31, 255, 0.2);
    flex-direction: column;
}

.demo-content {
    flex: 1;
}

.demo-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.demo-steps {
    display: flex;
    gap: 15px;
}

.step {
    text-align: center;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00ffa3, #dc1fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 10px;
}

.resources {
    margin-top: 15px;
    padding: 15px;
    background: rgba(0, 255, 163, 0.05);
    border-radius: 8px;
    font-size: 14px;
}

/* Games section */
.crash-explanation {
    margin: 30px 0;
}

.crash-visual {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(51, 43, 61, 0.8);
    border-radius: 12px;
    padding: 0 15px;
    margin-bottom: 20px;
    border-left: 4px solid #dc1fff;
}

.crash-icon {
    font-size: 48px;
    flex-shrink: 0;
}



.solana-warning {
    background: rgba(255, 87, 34, 0.1);
    border-left-color: #ff5722;
}

/* Сравнительная таблица */
.solana-comparison {
    margin: 30px 0;
}

.solana-comparison .good {
    color: #00ffa3;
    font-weight: bold;
}

.solana-comparison .medium {
    color: #ffca28;
    font-weight: bold;
}

.solana-comparison .bad {
    color: #ff5722;
    font-weight: bold;
}

/* Вердикт Solana */
.solana-verdict .verdict-content {
   
}

.verdict-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.point {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 255, 163, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 163, 0.1);
}

.point-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.safety-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 87, 34, 0.1);
    border-radius: 8px;
    border-left: 3px solid #ff5722;
}




/* Адаптивность для Solana */
@media (max-width: 992px) {
    .wallet-demo {
        flex-direction: column;
        text-align: center;
    }
    
    .demo-steps {
        flex-direction: column;
        gap: 10px;
    }
    
    .verdict-points {
        grid-template-columns: 1fr;
    }
    
    .crash-visual {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .solana-gradient {
        font-size: 28px !important;
    }
    
    .speed-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .speed-badge {
        width: 150px;
        padding: 8px 15px;
        font-size: 13px;
    }
}

/* Отключаем все анимации */
.solana-icon-large,
.speed-badge,
.crash-icon,
.point-icon {
    animation: none !important;
    transition: none !important;
}

.speed-badge:hover {
    transform: none !important;
}





/* =================== */
/* СТРАНИЦА TRON (TRX) */
/* =================== */

/* Градиент для Tron H1 */
.tron-gradient {
background: linear-gradient(135deg, #fff 0%, #a97be6 25%, #8a2be2 50%, #c4a1e9 75%, #fff 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-fill-color: transparent !important;
    text-shadow: 0 2px 10px rgba(39, 117, 202, 0.3);
}

/* Tron визуализация */
.tron-visual {
    position: relative;
    text-align: center;
}

.tron-icon-large {
    margin-bottom: 25px;
    animation: none !important;
}

.tron-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tron-feature {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    min-width: 120px;
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid #c4a1e9;
    /* color: #c4a1e9; */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Специфичные стили для Tron интро */
.tron-intro .highlight-box {
    border-left-color: #a97be6;
}

/* Секция низких депозитов */
.deposit-comparison {
    margin: 30px 0;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

.comparison-card {
    background: rgba(51, 43, 61, 0.8);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid transparent;
}

.bitcoin-card {
    border-color: rgba(255, 87, 34, 0.3);
    background: rgba(255, 87, 34, 0.05);
}

.tron-card {
    border-color: rgba(255, 6, 10, 0.4);
    background: rgba(255, 6, 10, 0.05);
    position: relative;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.coin-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bitcoin-card .coin-icon {
    color: #f2a900;
}

.tron-card .coin-icon {
    color: #ff060a;
}

.card-header h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    margin: 0;
    flex: 1;
    color: #fff;
}

.recommended-tag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 12px;
    background: rgba(29, 182, 126, 0.2);
    color: #1db67e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.label {
    font-size: 14px;
    color: #bbb;
}

.value {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.value.good {
    color: #1db67e;
}

.value.bad {
    color: #ff5722;
}

.micro-deposit-explanation {
    margin-top: 30px;
}

.example {
padding: 15px;
    background: #19202d;
    border-radius: 8px;
    border-left: 3px solid #a97be6;
    margin: 20px 0;
}

.casino-example {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(51, 43, 61, 0.8);
    border-radius: 12px;
    padding: 20px;
    margin-top: 25px;
}

.example-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.example-content {
    flex: 1;
}

/* TronLink Guide */
.tronlink-guide {
    margin: 40px 0;
}

.tronlink-guide .guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.step-container {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(51, 43, 61, 0.8);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #ff5722
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #c4a1e9, #ff6b00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: #ccc;
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

.step-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #ccc;
}

.wallet-benefit {
    display: flex;
    align-items: center;
    gap: 20px;
    
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
    border: 1px solid rgba(255, 6, 10, 0.2);
}

.benefit-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: #fff;
    margin: 0 0 10px 0;
}

.benefit-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
}

/* TRX vs USDT Comparison */
.trx-usdt-comparison {
    margin: 40px 0;
}

.coin-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.coin-option {
    background: rgba(51, 43, 61, 0.8);
    border-radius: 15px;
    padding: 25px;
}


.option-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.option-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trx-option .option-icon {
    color: #ff060a;
}

.usdt-option .option-icon {
    color: #00b4cc;
}

.option-header h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    margin: 0;
    color: #fff;
}

.option-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.pros h5, .cons h5 {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    color: #fff;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.pros h5 {
    color: #1db67e;
}

.cons h5 {
    color: #ff5722;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros li, .cons li {
    padding: 5px 0;
    font-size: 14px;
    color: #ccc;
}

.pros li:before {
    content: "✓ ";
    color: #1db67e;
    font-weight: bold;
}

.cons li:before {
    content: "✗ ";
    color: #ff5722;
    font-weight: bold;
}

.option-note {
    
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.comparison-summary {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-align: center;
    font-size: 17px;
}

/* Small Bankroll Section */
.small-bankroll-section {
    margin: 40px 0;
}

.strategy-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.strategy-step {
    
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    
}

.step-visual {
    font-size: 36px;
    margin-bottom: 15px;
}

.strategy-step h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: #ccc;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.strategy-step p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #ccc;
}

.bankroll-tip {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    border-left: 4px solid #ffc107;
}

.tip-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.tip-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #ffc107;
}

/* Вердикт Tron */


.key-takeaways {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.takeaway {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
   
    border-radius: 10px;
    border: 1px solid #bdbdbd;
}

.takeaway-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.call-to-action {
    margin: 25px 0;
    padding: 20px;
    
    border-radius: 10px;
    text-align: center;
}

.final-warning {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 87, 34, 0.1);
    border-radius: 8px;
    border-left: 3px solid #ff5722;
}



.tron-cta:hover {
  
}

/* Адаптивность для Tron */
@media (max-width: 992px) {
    .comparison-cards,
    .coin-options,
    .strategy-steps,
    .key-takeaways {
        grid-template-columns: 1fr;
    }
    
    .option-pros-cons {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .guide-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tron-gradient {
        font-size: 28px !important;
    }
    
    .tron-features {
        flex-direction: column;
        align-items: center;
    }
    
    .tron-feature {
        width: 150px;
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .wallet-benefit,
    .bankroll-tip {
        flex-direction: column;
        text-align: center;
    }
}

/* Отключаем все анимации */
.tron-icon-large,
.tron-feature,
.strategy-step,
.takeaway {
    animation: none !important;
    transition: none !important;
}

.tron-feature:hover {
    transform: none !important;
}