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

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

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

header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(60, 190, 242, 0.3);
    margin-bottom: 40px;
}

.logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 25px;
}

h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    color: #3cbef2;
    font-weight: 700;
}

.subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    color: #cccccc;
}

section {
    margin: 70px 0;
    padding: 30px 0;
}

h2 {
    font-size: 2.4rem;
    color: #3cbef2;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

h3 {
    font-size: 1.6rem;
    color: #3cbef2;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

h4 {
    font-size: 1.3rem;
    color: #3cbef2;
    margin: 20px 0 15px 0;
}

.content {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 18px;
    border: 1px solid rgba(60, 190, 242, 0.15);
    backdrop-filter: blur(12px);
}

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

.disclaimer {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
}

.disclaimer h3 {
    color: #ff4444;
    margin-top: 0;
}

.key-info {
    margin: 40px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 18px;
    background: rgba(60, 190, 242, 0.08);
    border-radius: 10px;
    border-left: 4px solid #3cbef2;
}

.label {
    font-weight: 600;
    color: #3cbef2;
}

.value {
    text-align: right;
    color: #cccccc;
    word-break: break-all;
}

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

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

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 35px 0;
}

.pros ul, .cons ul {
    padding-left: 25px;
}

.pros li {
    color: #4caf50;
}

.cons li {
    color: #ff4444;
}

.mirrors .links-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
    word-break: break-all;
}

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

.mirror-link:hover {
    background: #3cbef2;
    color: #303948;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(60, 190, 242, 0.4);
}

.no-links {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.8;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

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

.step {
    background: rgba(60, 190, 242, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(60, 190, 242, 0.2);
}

.step-number {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: #3cbef2;
    color: #303948;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.3rem;
    line-height: 45px;
    margin-bottom: 20px;
}

footer {
    text-align: center;
    padding: 50px 0;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0.8;
    font-size: 0.95rem;
}

footer p {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    section {
        margin: 50px 0;
        padding: 20px 0;
    }
    
    .content {
        padding: 25px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .value {
        text-align: center;
        margin-top: 8px;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mirror-link {
        font-size: 1rem;
        padding: 18px;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .step {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .content {
        padding: 20px;
    }
    
    .mirror-link {
        font-size: 0.9rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1.1rem;
    }
}

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background-color: #121212;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #1e1e1e;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header styles */
header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.logo {
    margin-bottom: 15px;
}

.logo img {
    max-width: 200px;
    height: auto;
}

h1 {
    font-size: 2.5rem;
    color: #e0e0e0;
    margin-bottom: 10px;
}

.subtitle {
    color: #a0a0a0;
    font-size: 1.2rem;
}

/* Quick links */
.quick-links {
    margin-bottom: 30px;
}

.quick-links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.quick-links-container a {
    background-color: #2d2d2d;
    color: #e0e0e0;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.quick-links-container a:hover {
    background-color: #3d3d3d;
}

/* Section styles */
section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #252525;
    border-radius: 6px;
}

h2 {
    font-size: 1.8rem;
    color: #e0e0e0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

h3 {
    font-size: 1.4rem;
    color: #d0d0d0;
    margin: 15px 0;
}

h4 {
    font-size: 1.2rem;
    color: #d0d0d0;
    margin: 10px 0;
}

p {
    margin-bottom: 15px;
}

.emphasis {
    font-weight: bold;
    color: #e0e0e0;
    margin-bottom: 20px;
}

/* Link styles */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.mirror-link {
    display: block;
    padding: 15px;
    background-color: #2d2d2d;
    color: #4caf50;
    text-decoration: none;
    border-radius: 4px;
    word-break: break-all;
    transition: background-color 0.3s;
    position: relative;
}

.mirror-link:hover {
    background-color: #3d3d3d;
}

.verified-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #4caf50;
    color: white;
    font-size: 0.7rem;
    padding: 3px 6px;
    border-radius: 3px;
}

.no-links {
    color: #a0a0a0;
    font-style: italic;
    text-align: center;
    padding: 20px;
}

/* Security notice */
.security-notice {
    background-color: #2d2d2d;
    padding: 15px;
    border-left: 4px solid #ff9800;
    border-radius: 4px;
    margin: 20px 0;
}

/* Content boxes */
.content {
    padding: 10px;
}

.disclaimer {
    background-color: #2d2d2d;
    padding: 15px;
    border-left: 4px solid #f44336;
    border-radius: 4px;
    margin: 20px 0;
}

.key-info {
    margin: 20px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #2d2d2d;
    border-radius: 4px;
}

.label {
    font-weight: bold;
    color: #d0d0d0;
}

.value {
    color: #a0a0a0;
}

/* List styles */
ul, ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 8px;
}

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

.step {
    background-color: #2d2d2d;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #4caf50;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-bottom: 10px;
}

/* Feature box */
.feature-box {
    background-color: #2d2d2d;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
}

.feature-box ul {
    margin-top: 10px;
}

/* Pros and cons */
.pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

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

.pros {
    background-color: #2d2d2d;
    border-left: 4px solid #4caf50;
}

.cons {
    background-color: #2d2d2d;
    border-left: 4px solid #f44336;
}

/* FAQ */
.faq-container {
    margin-top: 20px;
}

.faq-item {
    background-color: #2d2d2d;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.faq-item h3 {
    color: #4caf50;
    margin-bottom: 10px;
}

/* Footer */
footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

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

.footer-section h3 {
    margin-bottom: 15px;
    color: #e0e0e0;
}

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

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

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

.footer-section ul li a:hover {
    color: #e0e0e0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #a0a0a0;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .quick-links-container {
        flex-direction: column;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 15px;
    }
    
    .info-item {
        flex-direction: column;
    }
    
    .label, .value {
        margin-bottom: 5px;
    }
}