/* Premium Article Design System */
:root {
    --primary-blue: #00aaff;
    --primary-blue-glow: rgba(0, 170, 255, 0.4);
    --bg-dark: rgba(15, 15, 15, 0.95);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #e0e0e0;
    --text-muted: #aaaaaa;
}

/* Reset and Base for Article */
.premium-article-body {
    background-color: transparent !important;
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.article-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.article-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    width: 100%;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 0 20px var(--primary-blue-glow);
    line-height: 1.1;
}

.hero-meta {
    font-size: 0.9rem;
    color: var(--primary-blue);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Article Container */
.article-container {
    max-width: 900px;
    margin: -60px auto 60px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.article-glass-card {
    background: var(--bg-dark);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .article-glass-card {
        padding: 30px 20px;
        border-radius: 15px;
    }
    .article-container {
        margin-top: -40px;
    }
}

/* Typography */
.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 500;
    border-left: 4px solid var(--primary-blue);
    padding-left: 20px;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-main);
}

.article-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin: 50px 0 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-content h2::before {
    content: '';
    width: 10px;
    height: 30px;
    background: var(--primary-blue);
    border-radius: 2px;
}

/* Specialty Blocks */
.pro-tip {
    background: rgba(0, 170, 255, 0.05);
    border: 1px solid var(--primary-blue);
    padding: 25px;
    border-radius: 15px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.pro-tip::before {
    content: 'TIP';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 170, 255, 0.05);
    z-index: 0;
}

.pro-tip-title {
    color: var(--primary-blue);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.accent-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #fff;
    text-align: center;
    padding: 60px 40px;
    margin: 40px 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.accent-quote::before {
    content: '“';
    font-size: 5rem;
    color: var(--primary-blue);
    display: block;
    line-height: 1;
    margin-bottom: -20px;
}

/* Lists */
.article-content ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.article-content li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.article-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

/* Images & Media */
.article-image-wrap {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.article-image-wrap img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.article-image-wrap:hover img {
    transform: scale(1.03);
}

.image-caption {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    padding: 10px;
    background: rgba(0,0,0,0.2);
}

/* Footer / Back Button */
.article-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: transparent;
    border: 1px solid var(--primary-blue);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--primary-blue);
    box-shadow: 0 0 20px var(--primary-blue-glow);
    transform: translateX(-5px);
}

/* Close Button Overwrite */
.article-close-btn {
    position: fixed;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    font-size: 20px;
}

.article-close-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: rotate(90deg);
}

/* Responsive adjustment for images in content */
.article-content img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}
