/* Base Styles */
:root {
    --bg-dark: #000000;
    --accent-orange: #ff8a09;
    --text-light: #cccccc;
    --text-muted: #777777;
    --border-dark: #333333;
    --status-green: #00aa00;
    --status-red: #aa0000;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 138, 9, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(255, 138, 9, 0.03) 0%, transparent 20%);
}

a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Layout */
.container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 30px;
}

/* Header */
.header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 20px;
    border-bottom: 1px solid var(--accent-orange);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.logo-symbol {
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.3rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: normal;
}

.logo h1 span {
    color: var(--accent-orange);
}

.header-warning {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 138, 9, 0.1);
    padding: 10px;
    border-left: 3px solid var(--accent-orange);
    font-size: 0.9rem;
}

.warning-icon {
    color: var(--accent-orange);
    font-weight: bold;
}

/* Sidebar */
.sidebar {
    width: 250px;
    flex-shrink: 0;
}

.nav-section {
    margin-bottom: 30px;
}

.nav-section h3 {
    color: var(--accent-orange);
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--border-dark);
}

.nav-section ul {
    list-style: none;
}

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

.nav-section a {
    display: block;
    padding: 8px 10px;
    background-color: rgba(255, 138, 9, 0.05);
    border-left: 2px solid transparent;
}

.nav-section a:hover {
    background-color: rgba(255, 138, 9, 0.1);
    border-left: 2px solid var(--accent-orange);
}

.status-section {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border: 1px solid var(--border-dark);
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.status-indicator.online {
    background-color: var(--status-green);
    box-shadow: 0 0 5px var(--status-green);
}

.status-section p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Main Content */
.main-content {
    flex-grow: 1;
}

.mirror-card, .mirrors-section, .content-section {
    background-color: rgba(20, 20, 20, 0.7);
    border: 1px solid var(--border-dark);
    margin-bottom: 30px;
    padding: 20px;
}

h2 {
    color: var(--accent-orange);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.orange-text {
    color: var(--accent-orange);
}

/* Mirror Cards */
.url-display {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 12px;
    background-color: rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--accent-orange);
}

.tor-icon {
    color: var(--accent-orange);
    font-size: 1.2rem;
}

.onion-url {
    word-break: break-all;
    font-family: monospace;
}

.status-badge {
    margin-left: auto;
    padding: 3px 8px;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 3px;
    text-transform: uppercase;
}

.status-badge.live {
    background-color: rgba(0, 170, 0, 0.2);
    color: #00ff00;
}

.mirror-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.mirror-notice {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.3);
    border-left: 2px solid var(--accent-orange);
}

/* Mirror Grid */
.mirror-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.mirror-item {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border: 1px solid var(--border-dark);
    transition: transform 0.3s;
}

.mirror-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent-orange);
}

.mirror-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.mirror-number {
    font-size: 0.8rem;
    color: var(--accent-orange);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.active {
    background-color: var(--status-green);
    box-shadow: 0 0 5px var(--status-green);
}

.mirror-link {
    word-break: break-all;
    font-family: monospace;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.mirror-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.mirror-notes {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.3);
}

/* Content Sections */
.security-item {
    margin-bottom: 25px;
}

.security-item h3 {
    color: var(--accent-orange);
    margin-bottom: 10px;
    font-size: 1rem;
}

.code-block {
    font-family: monospace;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--accent-orange);
    padding: 8px 12px;
    margin-top: 10px;
    display: inline-block;
    font-size: 0.9rem;
}

.security-list {
    list-style: none;
    margin-top: 20px;
}

.security-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.security-list li:before {
    content: "■";
    color: var(--accent-orange);
    position: absolute;
    left: 0;
}

/* FAQ */
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 15px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: var(--accent-orange);
    font-size: 1rem;
    margin-bottom: 10px;
    cursor: pointer;
}

.faq-answer {
    font-size: 0.9rem;
    line-height: 1.6;
}

.faq-answer ul {
    margin: 10px 0 10px 20px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid var(--border-dark);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.disclaimer {
    margin-top: 10px;
    font-size: 0.7rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .mirror-grid {
        grid-template-columns: 1fr;
    }
    
    .mirror-info {
        grid-template-columns: 1fr;
    }
}

/* New Content Styles */
.content-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #333;
    margin-bottom: 30px;
    padding: 20px;
}

.content-block {
    margin-top: 20px;
}

.styled-list {
    margin: 15px 0 15px 20px;
}

.styled-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.styled-list li:before {
    content: "■";
    color: #ff8a09;
    position: absolute;
    left: 0;
}

.code-block {
    background: rgba(0, 0, 0, 0.5);
    color: #ff8a09;
    padding: 10px 15px;
    margin: 10px 0;
    font-family: monospace;
    display: block;
    border-left: 3px solid #ff8a09;
}

.notice-box, .info-box {
    padding: 15px;
    margin: 20px 0;
    border-left: 3px solid #ff8a09;
    background: rgba(255, 138, 9, 0.1);
}

.info-box {
    border-color: #0099ff;
    background: rgba(0, 153, 255, 0.1);
}

.meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.meta-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-left: 2px solid #333;
}

.meta-label {
    display: block;
    color: #777;
    font-size: 0.8rem;
}

.meta-value {
    font-weight: bold;
}

.verified {
    color: #00ff00;
}

.stats-grid, .metrics-grid, .benefits-grid, .improvements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.stat-item, .metric-item, .benefit-item, .improvement-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    text-align: center;
    border: 1px solid #333;
}

.stat-value, .metric-value {
    font-size: 1.5rem;
    color: #ff8a09;
    display: block;
    margin-bottom: 5px;
}

.stat-label, .metric-label {
    font-size: 0.8rem;
    color: #777;
}

.category-list {
    columns: 2;
    margin: 15px 0;
}

.category-list li {
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.category-list li:before {
    content: "›";
    color: #ff8a09;
    position: absolute;
    left: 0;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.faq-question {
    color: #ff8a09;
    cursor: pointer;
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.footer-section h3 {
    color: #ff8a09;
    margin-bottom: 15px;
    font-size: 1rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.8rem;
    color: #777;
}

.disclaimer {
    margin-top: 10px;
    font-size: 0.7rem;
}

@media (max-width: 768px) {
    .category-list {
        columns: 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}