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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #303948;
    color: #FFFFFF;
    line-height: 1.6;
    font-size: 16px;
}

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

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid #3cbef2;
}

.logo img {
    filter: brightness(0) invert(1);
}

.security-badge img {
    border-radius: 8px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin-top: 15px;
    flex-wrap: wrap;
}

.main-nav li {
    margin-right: 30px;
}

.main-nav a {
    color: #FFFFFF;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
    font-weight: 500;
}

.main-nav a:hover {
    border-bottom-color: #3cbef2;
}

.hero {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #303948 0%, #3a4556 100%);
    margin: 30px 0;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    color: #3cbef2;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: bold;
    color: #3cbef2;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 500;
}

.intro {
    padding: 60px 0;
    border-bottom: 1px solid #3a4556;
}

.intro h2 {
    color: #3cbef2;
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.intro p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.content-block h3 {
    color: #3cbef2;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.content-block p {
    line-height: 1.7;
}

.mirrors {
    background-color: #2a3342;
    padding: 60px 40px;
    border-radius: 10px;
    margin: 60px 0;
}

.mirrors h2 {
    color: #3cbef2;
    margin-bottom: 20px;
    text-align: center;
    font-size: 2.2rem;
}

.mirrors > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.mirror-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.mirror-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #303948;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3cbef2;
    flex-wrap: wrap;
}

.link-number {
    font-weight: bold;
    color: #3cbef2;
    min-width: 100px;
}

.link-text {
    font-family: monospace;
    word-break: break-all;
    color: #3cbef2;
    flex-grow: 1;
    margin: 0 20px;
    font-size: 1.1rem;
}

.copy-btn {
    background-color: #3cbef2;
    color: #303948;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    min-width: 120px;
}

.copy-btn:hover {
    background-color: #2aa8d6;
}

.verification-info {
    background-color: #303948;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.verification-info h3 {
    color: #3cbef2;
    margin-bottom: 15px;
}

.preview-section {
    margin: 80px 0;
}

.preview-section h2 {
    text-align: center;
    color: #3cbef2;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.preview-section > p {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.preview-item {
    background-color: #2a3342;
    padding: 25px;
    border-radius: 8px;
    transition: transform 0.3s;
    text-align: center;
}

.preview-item:hover {
    transform: translateY(-5px);
}

.preview-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.preview-item h4 {
    color: #3cbef2;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.features {
    margin: 80px 0;
}

.features h2 {
    text-align: center;
    color: #3cbef2;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature {
    background-color: #2a3342;
    padding: 35px;
    border-radius: 8px;
}

.feature h3 {
    color: #3cbef2;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.feature p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature ul {
    list-style: none;
    padding-left: 0;
}

.feature li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
}

.feature li:before {
    content: "✓";
    color: #3cbef2;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.user-guide {
    margin: 80px 0;
    padding: 60px 0;
    border-top: 1px solid #3a4556;
    border-bottom: 1px solid #3a4556;
}

.user-guide h2 {
    color: #3cbef2;
    margin-bottom: 40px;
    font-size: 2.2rem;
    text-align: center;
}

.guide-content {
    display: grid;
    gap: 40px;
}

.guide-section h3 {
    color: #3cbef2;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.guide-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.security {
    margin: 80px 0;
}

.security h2 {
    color: #3cbef2;
    margin-bottom: 40px;
    font-size: 2.2rem;
    text-align: center;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.security-item {
    background-color: #2a3342;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.security-item h3 {
    color: #3cbef2;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.faq {
    margin: 80px 0;
}

.faq h2 {
    color: #3cbef2;
    margin-bottom: 40px;
    font-size: 2.2rem;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background-color: #2a3342;
    padding: 25px;
    border-radius: 8px;
}

.faq-item h3 {
    color: #3cbef2;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

footer {
    background-color: #2a3342;
    padding: 60px 0 20px;
    margin-top: 80px;
    border-top: 2px solid #3cbef2;
}

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

.footer-section h4 {
    color: #3cbef2;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.payment-methods {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.payment-methods span {
    background-color: #3cbef2;
    color: #303948;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3a4556;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mirror-link {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .link-text {
        margin: 10px 0;
    }
    
    .features-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Обновленные и недостающие стили */

/* Исправление для JSON-LD */
script[type="application/ld+json"] {
    display: none !important;
}

/* Header и навигация */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid #3cbef2;
    flex-wrap: wrap;
}

.security-gif img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}

.main-nav {
    margin-top: 20px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 20px;
    border: 2px solid #3cbef2;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 500;
    display: block;
}

.main-nav a:hover {
    background-color: #3cbef2;
    color: #303948;
}

/* Hero секция */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #303948 0%, #3a4556 100%);
    margin: 30px 0;
    border-radius: 10px;
    border: 2px solid #3cbef2;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #3cbef2;
    line-height: 1.3;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    color: #ffffff;
}

/* Статистика */
.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
    padding: 0 20px;
}

.stat {
    text-align: center;
    background: rgba(60, 190, 242, 0.1);
    padding: 25px 15px;
    border-radius: 8px;
    border: 1px solid #3cbef2;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #3cbef2;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
    color: #ffffff;
}

/* Секция зеркал */
.mirrors-section {
    background-color: #2a3342;
    padding: 50px 30px;
    border-radius: 10px;
    margin: 40px 0;
    border: 2px solid #3cbef2;
}

.mirrors-section h2 {
    color: #3cbef2;
    margin-bottom: 20px;
    text-align: center;
    font-size: 2rem;
}

.mirrors-section > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.mirrors-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.mirror-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #303948;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3cbef2;
    flex-wrap: wrap;
    gap: 15px;
}

.link-text {
    font-family: 'Courier New', monospace;
    word-break: break-all;
    color: #3cbef2;
    flex-grow: 1;
    font-size: 1rem;
    font-weight: bold;
}

.copy-btn {
    background-color: #3cbef2;
    color: #303948;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    min-width: 140px;
    font-size: 0.9rem;
}

.copy-btn:hover {
    background-color: #2aa8d6;
    transform: translateY(-2px);
}

.verification-info {
    background-color: #303948;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    border: 1px solid #3cbef2;
}

.verification-info h3 {
    color: #3cbef2;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.verification-info p {
    line-height: 1.6;
    color: #ffffff;
}

/* Сетка превью */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.preview-item {
    background-color: #2a3342;
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s;
    text-align: center;
    border: 1px solid #3a4556;
}

.preview-item:hover {
    transform: translateY(-5px);
    border-color: #3cbef2;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.preview-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #3a4556;
}

.preview-item h3 {
    color: #3cbef2;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.preview-item p {
    line-height: 1.6;
    color: #e0e0e0;
}

/* Информационные секции */
.info-section {
    margin: 80px 0;
    padding: 40px 0;
}

.info-section h2 {
    text-align: center;
    color: #3cbef2;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

/* Сетка фич */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #2a3342;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #3a4556;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: #3cbef2;
    transform: translateY(-3px);
}

.feature-card h3 {
    color: #3cbef2;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    line-height: 1.6;
    color: #e0e0e0;
}

/* Содержимое безопасности */
.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.security-points, .security-guidelines {
    background-color: #2a3342;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #3a4556;
}

.security-points h3, .security-guidelines h3 {
    color: #3cbef2;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.security-points ul, .security-guidelines ol {
    padding-left: 20px;
}

.security-points li, .security-guidelines li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #e0e0e0;
}

.security-points li::marker {
    color: #3cbef2;
}

.security-guidelines li {
    padding-left: 5px;
}

/* Контент гайда */
.guide-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.guide-article {
    background-color: #2a3342;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #3a4556;
}

.guide-article h3 {
    color: #3cbef2;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.guide-article p {
    line-height: 1.6;
    color: #e0e0e0;
}

/* FAQ */
.faq-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.faq-item {
    background-color: #2a3342;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #3a4556;
}

.faq-item h3 {
    color: #3cbef2;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    line-height: 1.6;
    color: #e0e0e0;
}

/* Поддержка */
.support-content {
    text-align: center;
    margin-bottom: 40px;
}

.support-content > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.support-option {
    background-color: #2a3342;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #3a4556;
}

.support-option h3 {
    color: #3cbef2;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.support-option p {
    line-height: 1.6;
    color: #e0e0e0;
}

/* Футер */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #3cbef2;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #3cbef2;
}

.crypto-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.crypto-badge {
    background-color: #3cbef2;
    color: #303948;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3a4556;
    opacity: 0.8;
}

.footer-bottom p {
    margin-bottom: 10px;
    color: #e0e0e0;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Адаптивность */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .main-nav a {
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .market-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .mirror-link {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .security-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid,
    .guide-content,
    .faq-content,
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .market-stats {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 40px 15px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .info-section h2 {
        font-size: 1.8rem;
    }
    
    .mirrors-section {
        padding: 30px 20px;
    }
}