/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
}

a {
    color: #ff8a09;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #ff6a00;
    text-decoration: underline;
}

h1, h2, h3, h4 {
    color: #ff8a09;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Header Styles */
header {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #ff8a09;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.logo-placeholder h1 {
    color: #ff8a09;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    font-weight: bold;
    padding: 0.5rem 0;
    position: relative;
    font-size: 1.1rem;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ff8a09;
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

nav a.active {
    color: #ff6a00;
}

nav a.active::after {
    width: 100%;
}

/* Section Styles */
section {
    padding: 4rem 2rem;
    min-height: 50vh;
}

.section-dark {
    background-color: #000000;
}

.section-light {
    background-color: #111111;
}

h2 {
    font-size: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ff8a09;
}

h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    color: #ff9e3d;
}

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

.key-info {
    background-color: rgba(255, 138, 9, 0.1);
    padding: 1.5rem;
    border-radius: 5px;
    border-left: 3px solid #ff8a09;
    margin: 2rem 0;
}

.key-info ul {
    list-style-type: none;
    padding-left: 0;
}

.key-info li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.key-info li::before {
    content: '•';
    color: #ff8a09;
    position: absolute;
    left: 0;
}

.disclaimer {
    background-color: rgba(255, 0, 0, 0.1);
    padding: 1.5rem;
    border-radius: 5px;
    border-left: 3px solid #ff0000;
    margin: 2rem 0;
}

.feature {
    margin-bottom: 2rem;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.pros, .cons {
    padding: 1.5rem;
    border-radius: 5px;
}

.pros {
    background-color: rgba(0, 255, 0, 0.1);
    border-left: 3px solid #00ff00;
}

.cons {
    background-color: rgba(255, 0, 0, 0.1);
    border-left: 3px solid #ff0000;
}

.primary-link {
    margin: 2rem 0;
}

/* Mirrors Section */
.mirrors-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.mirror-link {
    background-color: rgba(255, 138, 9, 0.1);
    padding: 1.5rem;
    border-radius: 5px;
    border: 1px solid rgba(255, 138, 9, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    word-break: break-all;
}

.mirror-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 138, 9, 0.2);
    border-color: #ff8a09;
}

.security-notes {
    background-color: rgba(255, 138, 9, 0.1);
    padding: 1.5rem;
    border-radius: 5px;
    margin-top: 2rem;
}

.security-notes ul {
    list-style-type: none;
    padding-left: 0;
}

.security-notes li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.security-notes li::before {
    content: '⚠';
    position: absolute;
    left: 0;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 2rem;
    background-color: #111111;
    border-top: 1px solid #ff8a09;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

footer .disclaimer {
    font-size: 0.9rem;
    margin-top: 1rem;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mirrors-container {
        grid-template-columns: 1fr;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 2rem 1rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
}