:root { 
    --neon-green: #00ff88; 
    --neon-blue: #00ccff; 
    --neon-purple: #bc13fe;
    --bg: #0a0a0a; 
    --panel: #141414; 
    --text: #e0e0e0; 
}

* {
    box-sizing: border-box;
}

body { 
    background: var(--bg); 
    color: var(--text); 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    margin: 0; 
    padding: 20px; 
    line-height: 1.7; 
}

.container { 
    max-width: 900px; 
    margin: 0 auto; 
    background: var(--panel); 
    padding: 40px; 
    border-radius: 12px; 
    border: 1px solid #333; 
    position: relative; 
}

/* Back Link */
.back-link { 
    display: inline-block; 
    margin-bottom: 25px; 
    color: #888; 
    text-decoration: none;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--neon-blue);
}

/* Article Header Image */
.article-header-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    margin: 20px 0 30px 0;
    box-shadow: 0 4px 20px rgba(0, 204, 255, 0.2);
    border: 1px solid #333;
}

/* Typography */
h1 { 
    color: var(--neon-green); 
    border-bottom: 3px solid #333; 
    padding-bottom: 15px; 
    font-size: 2.2rem; 
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

h2 { 
    color: var(--neon-blue); 
    margin-top: 35px; 
    margin-bottom: 15px;
    border-left: 4px solid var(--neon-blue); 
    padding-left: 15px; 
    font-size: 1.6rem;
}

h3 {
    color: var(--neon-purple);
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

p { 
    margin-bottom: 18px; 
    font-size: 1.05rem;
    color: #d0d0d0;
}

strong {
    color: var(--neon-blue);
    font-weight: 600;
}

a { 
    color: var(--neon-green); 
    text-decoration: none; 
    transition: all 0.3s;
}

a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 5px rgba(0, 204, 255, 0.5);
}

/* Lists */
ul, ol {
    margin: 15px 0;
    padding-left: 30px;
}

li {
    margin-bottom: 10px;
    color: #d0d0d0;
}

/* Ads Container */
.ad-container { 
    margin: 40px 0; 
    text-align: center; 
    min-height: 120px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #0f0f0f;
    border: 1px dashed #333;
    border-radius: 8px;
    padding: 15px;
}

.ad-label { 
    display: block; 
    font-size: 0.65rem; 
    color: #555; 
    margin-bottom: 10px; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

/* Social Buttons (Floating) */
.floating-social {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #000;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.float-btn:hover {
    transform: scale(1.05);
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 25px rgba(0, 204, 255, 0.8);
}

/* Footer */
footer { 
    margin-top: 60px; 
    text-align: center; 
    font-size: 0.85rem; 
    color: #555; 
    border-top: 1px solid #222; 
    padding-top: 25px; 
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    .container {
        padding: 25px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .floating-social { 
        bottom: 10px; 
        right: 10px; 
    }
    
    .float-btn { 
        padding: 10px 18px; 
        font-size: 0.85rem; 
    }
    
    .article-header-image {
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.2rem;
    }
    
    p {
        font-size: 1rem;
    }
}
