:root {
    --primary: #0f0f23;
    --secondary: #1a1a2e;
    --accent: #6c5ce7;
    --accent-light: #a29bfe;
    --gold: #f8b500;
    --success: #00d9a5;
    --text: #ffffff;
    --text-muted: #a0a0b0;
    --card-bg: rgba(37, 37, 66, 0.45);
    --border: rgba(61, 61, 92, 0.6);
    --border-glow: rgba(108, 92, 231, 0.5);
}

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

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--primary);
}
::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border: 2px solid var(--primary);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--primary);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

.bg-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}
.bg-glow-1 {
    background: var(--accent);
    top: 10%;
    left: -200px;
}
.bg-glow-2 {
    background: var(--gold);
    top: 50%;
    right: -250px;
}
.bg-glow-3 {
    background: var(--accent);
    bottom: 10%;
    left: -150px;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo span {
    color: var(--gold);
    -webkit-text-fill-color: var(--gold);
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s;
    position: relative;
}

nav a:hover {
    color: var(--text);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

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

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-light);
    font-size: 0.9rem;
    margin-bottom: 30px;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--text);
}

.article {
    max-width: 800px;
    margin: 0 auto;
    padding: 140px 30px 80px;
}

.article-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.article-category {
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.article h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.article-intro {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.article h2 {
    font-size: 1.8rem;
    margin: 50px 0 20px;
    font-weight: 600;
}

.article p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.article ul {
    margin: 20px 0;
    padding-left: 25px;
}

.article li {
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.article li strong {
    color: var(--text);
}

.article a {
    color: var(--accent-light);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.article a:hover {
    border-bottom-color: var(--accent-light);
}

.editor-note {
    background: linear-gradient(135deg, var(--secondary), var(--card-bg));
    border: 1px solid var(--accent);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    padding: 25px 30px;
    margin: 40px 0;
}

.editor-note-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-light);
    margin-bottom: 10px;
    font-weight: 600;
}

.editor-note p {
    margin-bottom: 0;
}

.highlight-box {
    background: linear-gradient(135deg, var(--secondary), var(--card-bg));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
}

.highlight-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.highlight-box p {
    margin-bottom: 0;
}

.highlight-box.danger {
    background: rgba(255, 107, 107, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.highlight-box.danger h3 {
    color: #ff6b6b;
}

.warning-badge {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-right: 10px;
}

.safe-badge {
    background: rgba(0, 217, 165, 0.2);
    color: var(--success);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-right: 10px;
}

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

.pros, .cons {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
}

.pros {
    border: 1px solid var(--success);
}

.cons {
    border: 1px solid #ff6b6b;
}

.pros h3, .cons h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pros h3 {
    color: var(--success);
}

.cons h3 {
    color: #ff6b6b;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
}

.pros li, .cons li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.pros li:last-child, .cons li:last-child {
    border-bottom: none;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 50px 0;
}

.cta-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.cta-card:hover {
    border-color: var(--border-glow);
    box-shadow: 0 8px 24px rgba(108, 92, 231, 0.15);
}

.cta-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text);
}

.cta-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.cta-card-btn {
    display: inline-block;
    width: 100%;
    background: var(--accent);
    color: var(--text);
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    text-align: center;
}

.cta-card-btn:hover {
    background: var(--accent-light);
    color: var(--primary);
    transform: translateY(-2px);
}

.verdict {
    background: var(--card-bg);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 50px 0;
}

.verdict h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.verdict p {
    font-size: 1.1rem;
}

.verdict-score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

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

.blog-grid a.blog-card {
    color: inherit;
    text-decoration: none;
}

.blog-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.blog-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(108, 92, 231, 0.1);
}

.blog-date {
    font-size: 0.85rem;
    color: var(--accent-light);
    margin-bottom: 12px;
    display: block;
    font-weight: 500;
}

.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--accent-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.section {
    padding: 100px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
    padding: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--text);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- Homepage Specific Styles --- */

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 30px 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(108, 92, 231, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(248, 181, 0, 0.1) 0%, transparent 50%);
}

.hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(108, 92, 231, 0.2);
    border: 1px solid var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-light);
    margin-bottom: 25px;
    font-weight: 500;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--gold), #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* General Buttons */
.btn {
    padding: 16px 35px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #5849c4);
    color: white;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text);
}

.btn-secondary:hover {
    border-color: var(--accent);
    background: rgba(108, 92, 231, 0.1);
}

/* Cards Grid (Features/Deals) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
    z-index: 2;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(108, 92, 231, 0.1);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.card-price {
    margin-top: 20px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.card-price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Methods Grid */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.method-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.method-item:hover {
    border-color: var(--accent);
    background: rgba(108, 92, 231, 0.1);
}

.method-number {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.method-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.method-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Warning Box */
.warning-box {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 16px;
    padding: 30px;
    margin: 50px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.warning-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 107, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warning-box h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #ff6b6b;
}

.warning-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary), var(--card-bg));
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 80px 50px;
    text-align: center;
    margin: 100px auto;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.cta-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
}

.cta-section .btn {
    position: relative;
}

.price-highlight {
    color: var(--gold);
    font-weight: 700;
}

/* Tips Section */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tip-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 25px;
    border-left: 4px solid var(--gold);
}

.tip-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.tip-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer layout */
footer {
    background: var(--secondary);
    border-top: 1px solid var(--border);
    padding: 50px 30px;
    text-align: center;
    margin-top: 80px;
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

footer .disclaimer {
    margin-top: 15px;
    font-size: 0.8rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .article h1 {
        font-size: 1.8rem;
    }

    .cta-grid, .pros-cons {
        grid-template-columns: 1fr;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(15, 15, 35, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid var(--border);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1050;
    }

    nav.active {
        right: 0;
    }

    nav a {
        font-size: 1.1rem;
    }

    /* Homepage Mobile overrides */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-section {
        padding: 50px 30px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}
