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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

/* Header */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 0;
    background: #0054cd;
}

.site-title {
    font-size: 48px;
    font-weight: 800;
    color: #ff7e00;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    position: relative;
    display: inline-block;
    padding-left: 80px;
}

.site-title::before {
    content: "⚡";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 64px;
    color: #ff9933;
    text-shadow: 0 0 20px #ff7e00, 0 0 40px #ff5500;
    background: #0054cd; /* изменено с rgba(0,0,0,0.1) на #0054cd */
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 30px #0054cd, 0 0 60px #0054cd; /* изменено */
    animation: realistic-lightning 8s ease-in-out infinite;
    line-height: 1;
}

@keyframes realistic-lightning {
    /* Обычное состояние (синий фон с оранжевой молнией) */
    0%, 30%, 35%, 40%, 45%, 50%, 55%, 60%, 65%, 70%, 75%, 80%, 85%, 90%, 95%, 100% {
        color: #ff9933;
        text-shadow: 0 0 20px #ff7e00, 0 0 40px #ff5500;
        background: #0054cd;
        box-shadow: 0 0 30px #0054cd, 0 0 60px #0054cd;
        transform: translateY(-50%) scale(1);
    }
    
    /* Первая вспышка */
    31% {
        color: #ffffff;
        text-shadow: 0 0 40px #ffffff, 0 0 80px #ffff00;
        background: #ccc; /* более темный синий для контраста */
        box-shadow: 0 0 50px #ffffff, 0 0 80px #0054cd;
        transform: translateY(-50%) scale(1.1);
    }
    
    32% {
        color: #ff9933;
        text-shadow: 0 0 20px #ff7e00, 0 0 40px #ff5500;
        background: #ccc;
        box-shadow: 0 0 30px #0054cd, 0 0 60px #0054cd;
        transform: translateY(-50%) scale(1);
    }
    
    /* Вторая вспышка */
    33% {
        color: #ffffff;
        text-shadow: 0 0 50px #ffffff, 0 0 100px #ffffaa;
        background: #ccc;
        box-shadow: 0 0 60px #ffffff, 0 0 100px #0054cd;
        transform: translateY(-50%) scale(1.15);
    }
    
    34% {
        color: #ff9933;
        text-shadow: 0 0 20px #ff7e00, 0 0 40px #ff5500;
        background: #ccc;
        box-shadow: 0 0 30px #0054cd, 0 0 60px #0054cd;
        transform: translateY(-50%) scale(1);
    }
    
    /* Третья вспышка */
    36% {
        color: #ffffff;
        text-shadow: 0 0 60px #ffffff, 0 0 120px #ffffff;
        background: #ccc;
        box-shadow: 0 0 70px #ffffff, 0 0 120px #0054cd;
        transform: translateY(-50%) scale(1.2);
    }
    
    37% {
        color: #ff9933;
        text-shadow: 0 0 20px #ff7e00, 0 0 40px #ff5500;
        background: #ccc;
        box-shadow: 0 0 30px #0054cd, 0 0 60px #0054cd;
        transform: translateY(-50%) scale(1);
    }
    
    /* Четвертая вспышка */
    38% {
        color: #ffffff;
        text-shadow: 0 0 45px #ffffff, 0 0 90px #ffffaa;
        background: #ccc;
        box-shadow: 0 0 55px #ffffff, 0 0 90px #0054cd;
        transform: translateY(-50%) scale(1.1);
    }
    
    39% {
        color: #ff9933;
        text-shadow: 0 0 20px #ff7e00, 0 0 40px #ff5500;
        background: #ccc;
        box-shadow: 0 0 30px #0054cd, 0 0 60px #0054cd;
        transform: translateY(-50%) scale(1);
    }
    
    /* Пятая вспышка */
    41% {
        color: #ffffff;
        text-shadow: 0 0 40px #ffffff, 0 0 80px #ffffaa;
        background: #ccc;
        box-shadow: 0 0 50px #ffffff, 0 0 80px #0054cd;
        transform: translateY(-50%) scale(1.1);
    }
    
    42% {
        color: #ff9933;
        text-shadow: 0 0 20px #ff7e00, 0 0 40px #ff5500;
        background: #ccc;
        box-shadow: 0 0 30px #0054cd, 0 0 60px #0054cd;
        transform: translateY(-50%) scale(1);
    }
    
    /* Единичная вспышка позже */
    72% {
        color: #ffffff;
        text-shadow: 0 0 30px #ffffff, 0 0 60px #ffffaa;
        background: #003d9e;
        box-shadow: 0 0 40px #ffffff, 0 0 60px #0054cd;
        transform: translateY(-50%) scale(1.05);
    }
    
    73% {
        color: #ff9933;
        text-shadow: 0 0 20px #ff7e00, 0 0 40px #ff5500;
        background: #ccc;
        box-shadow: 0 0 30px #0054cd, 0 0 60px #0054cd;
        transform: translateY(-50%) scale(1);
    }
}

/* Language selector */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-current {
    background: #40a0ff;
    border: 3px solid #0054cd;
    color: #f3f8c5;
    padding: 12px 30px 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0, 84, 205, 0.2);
}

.lang-current:after {
    content: '▼';
    font-size: 12px;
    margin-left: 8px;
    color: #f3f8c5;
}

.lang-dropdown:hover .lang-list {
    display: block;
}

.lang-list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: #40a0ff;
    border: 3px solid #0054cd;
    border-radius: 20px;
    padding: 10px 0;
    min-width: 120px;
    z-index: 1001;
    box-shadow: 0 5px 15px rgba(0, 84, 205, 0.3);
}

.lang-list a {
    display: block;
    padding: 12px 25px;
    color: #f3f8c5;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 1px solid rgba(243, 248, 197, 0.2);
}

.lang-list a:last-child {
    border-bottom: none;
}

.lang-list a:hover {
    background: #0054cd;
    color: #f3f8c5;
}

.lang-list a.active {
    background: #0054cd;
    color: #f3f8c5;
}

/* Subtitle */
.subtitle {
    text-align: center;
    color: #f3f8c5;
    font-size: 24px;
    background: #40a0ff;
    padding: 20px 30px;
    border-radius: 50px;
    display: inline-block;
    border: 3px solid #0054cd;
    margin: 0 auto 30px auto;
    width: auto;
    box-shadow: 0 5px 15px rgba(0, 84, 205, 0.3);
    font-weight: 600;
}

/* ФОРМА - НА САМОМ ВИДНОМ МЕСТЕ */
.form-block {
    background: #40a0ff;
    border: 4px solid #0054cd;
    border-radius: 40px;
    padding: 50px;
    margin: 30px 0 50px 0;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease; /* добавлено для плавности */
}

.form-block:hover {
    box-shadow: 0 20px 40px rgba(0, 84, 205, 0.5);
    transform: translateY(-5px);
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 30px rgba(0, 84, 205, 0.4), 0 20px 40px rgba(0, 84, 205, 0.3); }
    50% { box-shadow: 0 0 60px rgba(64, 160, 255, 0.6), 0 20px 40px rgba(0, 84, 205, 0.3); }
}

#reklama_form_block {
    width: 100%;
    color: #f3f8c5;
    text-align: center;
}

.form-placeholder {
    font-size: 32px;
    color: #f3f8c5;
    font-weight: bold;
}

.form-placeholder small {
    display: block;
    font-size: 18px;
    color: #fff;
    margin-top: 15px;
    font-weight: normal;
    opacity: 1;
}

/* Traffic Stats */
.traffic-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat-card {
    background: #40a0ff;
    border: 3px solid #0054cd;
    border-radius: 20px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 84, 205, 0.3);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 84, 205, 0.5);
    background: #0054cd;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #f3f8c5;
    margin-bottom: 5px;
}

.stat-label {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.benefit-card {
    background: #40a0ff;
    border: 3px solid #0054cd;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 84, 205, 0.3);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 84, 205, 0.5);
    background: #0054cd;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: #f3f8c5;
}

.benefit-title {
    color: #f3f8c5;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.benefit-text {
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
    opacity: 1;
    font-weight:bold;
}

/* CTA Section */
.cta-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.cta-card {
    background: #40a0ff;
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    border: 3px solid #0054cd;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 84, 205, 0.3);
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 84, 205, 0.5);
    background: #0054cd;
}

.cta-title {
    font-size: 48px;
    font-weight: bold;
    color: #f3f8c5;
    margin-bottom: 10px;
}

.cta-text {
    color: #f3f8c5;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.cta-highlight {
    color: #f3f8c5;
    font-size: 28px;
    font-weight: bold;
}

/* Networks */
.networks-title {
    text-align: center;
    color: #f3f8c5;
    font-size: 32px;
    margin: 50px 0 30px;
    background: #40a0ff;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    border: 3px solid #0054cd;
    box-shadow: 0 5px 15px rgba(0, 84, 205, 0.3);
}

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

.network-card {
    background: #40a0ff;
    border: 3px solid #0054cd;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 84, 205, 0.3);
}

.network-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 84, 205, 0.5);
    background: #0054cd;
}

.network-id {
    font-size: 28px;
    font-weight: bold;
    color: #f3f8c5;
    margin-bottom: 15px;
    border-bottom: 2px solid #f3f8c5;
    padding-bottom: 10px;
}

.network-time, .network-res {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.network-return {
    background: rgba(0, 84, 205, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    border: 1px solid #f3f8c5;
}

.return-value {
    color: #f3f8c5;
    font-size: 24px;
    font-weight: bold;
}

.return-label {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    opacity: 1;
}

/* Traffic Description */
.traffic-description {
    background: #40a0ff;
    border-radius: 30px;
    padding: 40px;
    margin: 50px 0;
    border: 3px solid #0054cd;
    box-shadow: 0 5px 15px rgba(0, 84, 205, 0.3);
}

.traffic-description h3 {
    color: #f3f8c5;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.traffic-description p {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 500;
    opacity: 1;
}

.traffic-description ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.traffic-description li {
    color: #f3f8c5;
    font-size: 18px;
    padding-left: 25px;
    position: relative;
}

.traffic-description li:before {
    content: "✓";
    color: #f3f8c5;
    position: absolute;
    left: 0;
    font-weight: bold;
    text-shadow: 0 0 10px #ffffff;
}

/* Links */
.links-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0 30px;
    padding: 20px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #c5670c, #563615) !important;
}

.surf-link {
    background: #40a0ff;
    border: 3px solid #0054cd;
    color: #f3f8c5;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 84, 205, 0.2);
}

.surf-link:hover {
    background: #0054cd;
    color: #f3f8c5;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 84, 205, 0.5);
}

.telegram-link {
    background: #40a0ff;
    border: 3px solid #0054cd;
    color: #f3f8c5;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 84, 205, 0.2);
}

.telegram-link:hover {
    background: #0054cd;
    color: #f3f8c5;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 84, 205, 0.5);
}

@media (max-width: 768px) {
    .page-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .site-title {
        font-size: 36px;
        padding-left: 55px;
    }
    
    .site-title::before {
        font-size: 44px;
    }
    
    .traffic-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        grid-template-columns: 1fr;
    }
    
    .traffic-description ul {
        grid-template-columns: 1fr;
    }
    
    .networks-title {
        font-size: 24px;
        padding: 10px 20px;
    }
}
.exchange-form-button {
    background: linear-gradient(135deg, #ff7e00, #804c18) !important;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
}

.exchange-form-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 2.6s ease;
    z-index: -1;
}

.exchange-form-button:hover::before {
    left: 100%;
}

/* Адаптация сеток для больших экранов */
@media (min-width: 1200px) {
    .networks-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 15px;
    }
    
    .network-card {
        padding: 15px;
    }
    
    .network-id {
        font-size: 20px;
        margin-bottom: 10px;
        padding-bottom: 5px;
    }
    
    .network-time, .network-res {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .network-return {
        padding: 10px;
        margin-top: 10px;
    }
    
    .return-value {
        font-size: 18px;
    }
    
    .return-label {
        font-size: 12px;
    }
}
.links-center {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1;
}
.li_counter {
    margin-left: auto;
    flex-shrink: 0;
    transform: translateY(13px); /* Смещает вниз на 10px */
}
.surf-link {
    background: #40a0ff;
    border: 3px solid #0054cd;
    color: #f3f8c5;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgb(0 84 205 / 20%);
}





.surf-link {
    background: #40a0ff;
    border: 3px solid #0054cd;
    color: #f3f8c5;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgb(0 84 205 / 20%);
    
    /* Эффект размазывания */
    position: relative;
    overflow: hidden;
    transform: skewX(-2deg);
}

.surf-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.3) 30%,
        rgba(255,255,255,0.1) 50%,
        transparent 70%
    );
    transform: skewX(-10deg) translateX(-100%);
    animation: smear 5s infinite;
}

@keyframes smear {
    0% { transform: skewX(-10deg) translateX(-100%); }
    20% { transform: skewX(-10deg) translateX(100%); }
    100% { transform: skewX(-10deg) translateX(100%); }
}
.exchange-form{
background:#f4f4f4!important;
}