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

p {
    word-break: break-all;
}

body {
    font-family: 'Arial', sans-serif;
    background: #303948;
    color: #FFFFFF;
    line-height: 1.6;
}

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

header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 2px solid #3cbef2;
    margin-bottom: 30px;
}

.logo img {
    max-width: 180px;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #3cbef2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 1.3rem;
    opacity: 0.9;
    color: #FFFFFF;
}

section {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(60, 190, 242, 0.2);
}

h2 {
    color: #3cbef2;
    margin-bottom: 25px;
    font-size: 2rem;
    border-bottom: 2px solid #3cbef2;
    padding-bottom: 10px;
}

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

.disclaimer {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
}

.disclaimer h2 {
    color: #ff4444;
    border-bottom-color: #ff4444;
}

.info-grid, .features-grid, .account-grid, .pros-cons-grid {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

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

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

.account-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.pros-cons-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-item, .feature-card, .account-card {
    background: rgba(60, 190, 242, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #3cbef2;
    transition: transform 0.3s ease;

}

.info-item:hover, .feature-card:hover, .account-card:hover {
    transform: translateY(-5px);
    background: rgba(60, 190, 242, 0.15);
}

ul, ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.links-container {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.mirror-link {
    display: block;
    padding: 18px;
    background: rgba(60, 190, 242, 0.15);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #3cbef2;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    word-break: break-all;
}

.mirror-link:hover {
    background: rgba(60, 190, 242, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(60, 190, 242, 0.2);
}

.security {
    background: rgba(255, 165, 0, 0.1);
    border: 2px solid #ffa500;
}

.security h2 {
    color: #ffa500;
    border-bottom-color: #ffa500;
}

.pros, .cons {
    padding: 20px;
    border-radius: 10px;
}

.pros {
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid #00ff00;
}

.cons {
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid #ff4444;
}

footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
    border-top: 1px solid #3cbef2;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    section {
        padding: 20px;
        margin: 25px 0;
    }
    
    .info-grid, .features-grid, .account-grid {
        grid-template-columns: 1fr;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .logo img {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .mirror-link {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    ul, ol {
        margin-left: 20px;
    }
}

/* Дополнительные стили для SEO-оптимизированной версии */

/* Breadcrumb */
.breadcrumb {
    margin: 20px 0;
    padding: 10px 0;
    font-size: 0.9rem;
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb li {
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child):after {
    content: "›";
    margin: 0 10px;
    color: #3cbef2;
}

.breadcrumb a {
    color: #3cbef2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.breadcrumb span {
    color: #ffffff;
    opacity: 0.8;
}

/* Primary CTA Section */
.primary-cta {
    margin: 30px 0;
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, rgba(60, 190, 242, 0.15), rgba(60, 190, 242, 0.25));
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #3cbef2;
    box-shadow: 0 10px 30px rgba(60, 190, 242, 0.2);
}

.main-link {
    display: block;
    font-size: 1.4rem;
    font-family: 'Courier New', monospace;
    color: #3cbef2;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    border: 1px dashed #3cbef2;
    word-break: break-all;
    text-decoration: none;
    transition: all 0.3s ease;
}

.main-link:hover {
    background: rgba(60, 190, 242, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(60, 190, 242, 0.3);
}

.copy-btn {
    background: #3cbef2;
    color: #303948;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px 0;
}

.copy-btn:hover {
    background: #2aa0d0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(60, 190, 242, 0.4);
}

.warning-note {
    color: #ffa500;
    font-style: italic;
    margin-top: 15px;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    background: rgba(60, 190, 242, 0.08);
    border: 1px solid rgba(60, 190, 242, 0.3);
}

.faq h2 {
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #3cbef2;
}

.faq-item h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

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

/* Mirror Links Improvements */
.mirror-link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(60, 190, 242, 0.1);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #3cbef2;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.mirror-link-item:hover {
    background: rgba(60, 190, 242, 0.2);
    transform: translateX(5px);
}

.copy-btn-small {
    background: rgba(60, 190, 242, 0.3);
    color: #ffffff;
    border: 1px solid #3cbef2;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.copy-btn-small:hover {
    background: #3cbef2;
    color: #303948;
}

/* SEO Content Section */
.seo-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-content h2 {
    text-align: center;
    border-bottom: none;
    margin-bottom: 30px;
}

.seo-content h3 {
    color: #3cbef2;
    margin: 25px 0 15px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(60, 190, 242, 0.3);
}

.seo-content p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #e0e0e0;
}

/* Visually Hidden for SEO */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Animation for interactive elements */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.copy-btn:active, .copy-btn-small:active {
    animation: pulse 0.3s ease;
}

/* Focus styles for accessibility */
a:focus, button:focus {
    outline: 2px solid #3cbef2;
    outline-offset: 2px;
}

/* Print styles for better printing */
@media print {
    .container {
        background: white;
        color: black;
    }
    
    .mirror-link, .main-link {
        color: #0000ee;
        text-decoration: underline;
        background: white;
        border: 1px solid #000;
    }
    
    .copy-btn, .copy-btn-small {
        display: none;
    }
}

/* Dark mode compatibility */
@media (prefers-color-scheme: dark) {
    .seo-content {
        background: rgba(0, 0, 0, 0.2);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cta-box {
        border: 3px solid #3cbef2;
    }
    
    .faq-item {
        border-left: 6px solid #3cbef2;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
    
    .info-item:hover, .feature-card:hover, 
    .account-card:hover, .mirror-link:hover,
    .main-link:hover, .mirror-link-item:hover {
        transform: none !important;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .primary-cta {
        margin: 20px 0;
    }
    
    .cta-box {
        padding: 20px;
    }
    
    .main-link {
        font-size: 1.1rem;
        padding: 15px;
    }
    
    .mirror-link-item {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .copy-btn-small {
        align-self: center;
    }
    
    .faq-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .main-link {
        font-size: 0.9rem;
        padding: 12px;
    }
    
    .copy-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .faq h2 {
        font-size: 1.5rem;
    }
    
    .seo-content h2 {
        font-size: 1.5rem;
    }
}