/*
Theme Name: BrowseBoosters
Description: The Anti-Subscription Store - Premium browser tools without monthly fees
Version: 1.0.0
Author: BrowseBoosters
*/

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;500;700&display=swap');

/* CSS Variables */
:root {
    --bg: #050505;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --neon-purple: #b94bf8;
    --neon-blue: #4d4dff;
    --neon-green: #00ff9d;
    --text-main: #ffffff;
    --text-dim: #888888;
}

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

/* Base styles */
body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Utils */
a { text-decoration: none; color: inherit; }
.highlight {
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- CREATIVE BACKGROUND ANIMATION --- */
.ambient-light {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 15% 50%, rgba(77, 77, 255, 0.15), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(185, 75, 248, 0.15), transparent 25%);
    animation: pulseLight 10s infinite alternate;
}

@keyframes pulseLight {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

/* --- NAV --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.logo { font-size: 1.5rem; font-weight: 700; letter-spacing: -1px; }

.nav-btn {
    padding: 10px 24px;
    border-radius: 50px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    font-size: 0.9rem;
    transition: 0.3s;
}
.nav-btn:hover { background: rgba(255,255,255,0.1); border-color: var(--neon-green); }

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    padding: 10px 24px;
    border-radius: 50px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    font-size: 0.9rem;
    transition: 0.3s;
    text-decoration: none;
    color: var(--text-main);
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: var(--bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    min-width: 300px;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translate(-50%, -50%) scale(1);
}

.mobile-menu-content .nav-menu {
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.mobile-menu-content .nav-menu a {
    width: 100%;
    text-align: center;
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* --- HERO SECTION --- */
.hero {
    padding: 100px 20px 150px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    perspective: 2000px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    max-width: 550px;
    z-index: 2;
}

.hero h1 {
    font-size: 5rem;
    line-height: 0.9;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-dim);
    max-width: 500px;
    margin-bottom: 50px;
}

/* --- BROWSER MOCKUP --- */
.hero-graphic-container {
    position: relative;
    width: 500px;
    height: 400px;
    transform-style: preserve-3d;
    transform: rotateX(10deg) rotateY(-15deg);
}

.browser-mockup {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--glass) 0%, rgba(20,20,20,0.5) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 20px rgba(77, 77, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.browser-header {
    height: 40px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    padding-left: 15px;
    gap: 8px;
}

.browser-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--glass-border); }
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.browser-body {
    height: calc(100% - 40px);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image:
        linear-gradient(var(--glass-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
    background-size: 40px 40px;
}

.central-rocket {
    font-size: 4rem;
    color: var(--neon-green);
    filter: drop-shadow(0 0 20px var(--neon-green));
    animation: rocketPulse 1.5s ease-in-out infinite alternate;
}

@keyframes rocketPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 1; filter: drop-shadow(0 0 40px var(--neon-green)); }
}

/* Popping icons */
.pop-icon {
    position: absolute;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    opacity: 0;
    transform: translateZ(-50px) translateY(50px) scale(0.5);
}

.icon-1 { color: var(--neon-blue); top: 60%; left: 30%; animation: popOut 4s ease-out infinite; animation-delay: 0.5s; }
.icon-2 { color: var(--neon-purple); top: 50%; left: 50%; animation: popOut 4s ease-out infinite; animation-delay: 1.5s; }
.icon-3 { color: #ff9900; top: 70%; left: 60%; animation: popOut 4s ease-out infinite; animation-delay: 2.5s; }

@keyframes popOut {
    0% {
        opacity: 0;
        transform: translateZ(-50px) translateY(50px) scale(0.5) rotate(0deg);
    }
    20% {
        opacity: 1;
         transform: translateZ(20px) translateY(0px) scale(1) rotate(5deg);
    }
    80% {
        opacity: 1;
        transform: translateZ(250px) translateY(-150px) scale(1.5) rotate(15deg);
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }
    100% {
        opacity: 0;
        transform: translateZ(300px) translateY(-200px) scale(1.6) rotate(20deg);
    }
}

/* --- BENTO GRID --- */
.bento-section { padding: 50px 0; }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.card.featured {
    grid-column: span 2;
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(77, 77, 255, 0.05) 100%);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--neon-blue);
    margin-bottom: 20px;
}

.card h3 { font-size: 1.8rem; margin-bottom: 10px; }
.card p { color: var(--text-dim); font-size: 1rem; }

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-green);
}

.card-action {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-20px);
    transition: 0.3s;
}

.card:hover .card-action { opacity: 1; transform: translateX(0); background: var(--text-main); color: #000; }

/* --- TICKER --- */
.ticker-wrap {
    overflow: hidden;
    background: var(--neon-green);
    padding: 15px 0;
    margin: 100px 0;
    transform: rotate(-2deg) scale(1.05);
}

.ticker {
    white-space: nowrap;
    display: inline-block;
    animation: ticker 20s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- FOOTER --- */
.minimal-footer {
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    margin-top: 50px;
}

/* --- STORE PAGE STYLES --- */

/* Store Header & Filter */
.store-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.store-header h1 { font-size: 3.5rem; letter-spacing: -2px; margin-bottom: 10px; }
.store-header p { color: var(--text-dim); }

.filter-bar {
    position: sticky;
    top: 20px;
    z-index: 100;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    margin-bottom: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text-dim);
    font-family: inherit;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
}

.filter-btn:hover { color: var(--text-main); }

.filter-btn.active {
    background: var(--glass-high);
    color: var(--neon-green);
    border-color: var(--glass-border);
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.1);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding-bottom: 100px;
}

.product-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.product-header {
    padding: 25px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 15px;
}

.p-icon {
    width: 50px; height: 50px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    color: var(--neon-blue);
}

/* Specific colors for variety */
.p-icon.security { color: var(--neon-purple); }
.p-icon.util { color: #ff9900; }
.p-icon.dev { color: #ff5f56; }

.product-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.product-body p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.5; margin-bottom: 20px; flex-grow: 1; }

/* Price Section */
.price-block {
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.price-main { font-size: 1.3rem; font-weight: 700; color: var(--text-main); }
.price-sub { font-size: 0.8rem; color: #666; text-decoration: line-through; }
.price-label { font-size: 0.7rem; color: var(--neon-green); text-transform: uppercase; letter-spacing: 1px; }

/* Buttons */
.card-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}

.btn-buy {
    background: var(--text-main);
    color: #000;
}
.btn-buy:hover { background: var(--neon-green); }

/* Badges */
.badge {
    position: absolute;
    top: 15px; right: 15px;
    padding: 4px 10px;
    font-size: 0.7rem;
    border-radius: 4px;
    font-weight: bold;
    background: var(--glass-high);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

/* --- SINGLE POST STYLES --- */

/* Scroll Progress Bar */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 1000;
    background: transparent;
}
.progress-bar {
    height: 100%;
    background: var(--neon-green);
    width: 0%;
    box-shadow: 0 0 10px var(--neon-green);
}

/* Article Layout */
.article-wrapper {
    display: grid;
    grid-template-columns: 180px 1fr 180px;
    gap: 40px;
    padding-bottom: 100px;
}

/* Sticky Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.share-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    cursor: pointer;
    transition: 0.3s;
}

.share-btn:hover {
    color: var(--neon-green);
    border-color: var(--neon-green);
    background: rgba(0,255,157,0.1);
}

.toc {
    font-size: 0.9rem;
    border-left: 2px solid var(--glass-border);
    padding-left: 20px;
}

.toc-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-main);
}

.toc-link {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dim);
}

.toc-link:hover {
    color: var(--neon-green);
}

/* Main Content */
.article-content {
    max-width: 950px;
    margin: 0 auto;
}

/* Back Link */
.back-link {
    margin-bottom: 20px;
}

.back-link a {
    color: var(--text-dim);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.back-link a:hover {
    color: var(--neon-green);
}

/* Article Header */
.article-header {
    margin-bottom: 50px;
    text-align: center;
}

.breadcrumbs {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.breadcrumbs a:hover {
    color: var(--neon-green);
}

.article-header h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.author-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
}

.author-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* Hero Banner */
.hero-banner {
    width: 100%;
    height: 400px;
    background: radial-gradient(circle at center, #1a1a2e 0%, #000 100%);
    border-radius: 20px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.hero-graphic {
    font-size: 8rem;
    color: var(--neon-purple);
    filter: drop-shadow(0 0 50px rgba(185, 75, 248, 0.4));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Typography */
.prose h2 {
    font-size: 2rem;
    margin: 50px 0 20px;
    color: var(--text-main);
}

.prose p {
    margin-bottom: 25px;
    color: #d0d0d0;
    font-size: 1.1rem;
}

.prose ul {
    margin-bottom: 25px;
    padding-left: 20px;
    color: #d0d0d0;
}

.prose li {
    margin-bottom: 10px;
}

/* Blockquote */
.prose blockquote {
    border-left: 4px solid var(--neon-green);
    background: linear-gradient(90deg, rgba(0,255,157,0.05) 0%, transparent 100%);
    padding: 20px 30px;
    margin: 40px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: #fff;
}

/* Product Breakout */
.product-breakout {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(77, 77, 255, 0.05) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    margin: 50px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.pb-icon {
    font-size: 3rem;
    color: var(--neon-blue);
}

.pb-content h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.pb-content p {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 0;
}

.pb-btn {
    margin-left: auto;
    white-space: nowrap;
    padding: 10px 20px;
    background: var(--text-main);
    color: #000;
    font-weight: 600;
    border-radius: 6px;
}

/* Read Next */
.read-next {
    border-top: 1px solid var(--glass-border);
    padding-top: 60px;
    margin-top: 60px;
}

.read-next h3 {
    margin-bottom: 20px;
}

.rn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.rn-card {
    background: var(--glass);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
}

.rn-card:hover {
    transform: translateY(-5px);
}

.rn-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

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

/* --- BLOG PAGE STYLES --- */

/* Blog Header */
.blog-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}
.blog-header h1 { font-size: 4rem; letter-spacing: -3px; line-height: 1; margin-bottom: 15px; }
.blog-header p { color: var(--text-dim); font-size: 1.2rem; }

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    color: var(--text-dim);
    font-family: inherit;
    cursor: pointer;
    transition: 0.3s;
}
.filter-btn:hover, .filter-btn.active {
    border-color: var(--neon-green);
    color: var(--text-main);
    background: rgba(0, 255, 157, 0.05);
}

/* Featured Post */
.featured-post {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    margin-bottom: 60px;
    transition: transform 0.3s;
}

.featured-post:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.2); }

.featured-img {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 350px;
}

.featured-graphic {
    width: 200px; height: 200px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: pulse 5s infinite alternate;
}

.featured-icon {
    position: absolute;
    font-size: 5rem;
    color: #fff;
    z-index: 2;
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.meta-tag {
    display: inline-block;
    color: var(--neon-green);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.featured-content h2 { font-size: 2.5rem; margin-bottom: 15px; line-height: 1.1; }
.featured-content p { color: var(--text-dim); margin-bottom: 30px; line-height: 1.6; font-size: 1.1rem; }

/* Post Grid */
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.post-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.2);
}

.card-thumb {
    height: 200px;
    background: #111;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--glass-border);
}

.thumb-icon { font-size: 3rem; color: var(--text-dim); transition: 0.3s; }
.post-card:hover .thumb-icon { color: var(--text-main); transform: scale(1.1); }

.grad-1 { background: radial-gradient(circle at center, rgba(0, 255, 157, 0.1), transparent 70%); }
.grad-2 { background: radial-gradient(circle at center, rgba(77, 77, 255, 0.15), transparent 70%); }
.grad-3 { background: radial-gradient(circle at center, rgba(185, 75, 248, 0.15), transparent 70%); }

.card-body { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.card-meta { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 10px; display: flex; justify-content: space-between; }
.card-body h3 { font-size: 1.4rem; margin-bottom: 10px; line-height: 1.3; }
.card-body p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }

.card-body .read-more {
    color: var(--text-main);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}
.card-body .read-more:hover { gap: 10px; color: var(--neon-green); }

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(180deg, var(--glass) 0%, rgba(0,0,0,0) 100%);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0;
    text-align: center;
}

.newsletter-box {
    max-width: 500px;
    margin: 30px auto 0;
    display: flex;
    gap: 10px;
}

.glass-input {
    flex-grow: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    padding: 15px 20px;
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
}
.glass-input:focus { outline: none; border-color: var(--neon-blue); }

.btn-submit {
    padding: 15px 30px;
    background: var(--text-main);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}
.btn-submit:hover { background: var(--neon-green); }

/* Pagination */
.pagination {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.page-link {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
}

.page-link-icon {
    border: 1px solid var(--glass-border);
    color: #888;
}
.page-link-icon:hover { background-color: var(--glass); }

.page-link-active {
    background-color: var(--neon-blue);
    color: var(--text-main);
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(77, 77, 255, 0.3);
}

.page-link-num {
    border: 1px solid var(--glass-border);
    color: #666;
    font-weight: 500;
}
.page-link-num:hover { background-color: var(--glass); }

/* --- MOBILE --- */
@media (max-width: 968px) {
    .hero { flex-direction: column; text-align: center; padding-bottom: 50px; }
    .hero-content { margin-bottom: 80px; }
    .hero h1 { font-size: 3.5rem; }
    .hero-graphic-container {
        width: 90%;
        height: 350px;
        transform: rotateX(10deg) rotateY(0deg);
    }
    .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .card.featured { grid-column: span 1; }

    /* Store mobile styles */
    .filter-bar { width: 100%; overflow-x: auto; justify-content: flex-start; border-radius: 0; top: 0; border-left: none; border-right: none; }
    .store-header h1 { font-size: 2.5rem; }

    /* Blog mobile styles */
    .blog-grid { grid-template-columns: 1fr; }
    .page-header { padding: 3rem 0; }
    .header-title { font-size: 1.875rem; }

    /* Single post mobile styles */
    .article-wrapper { grid-template-columns: 1fr; }
    .sticky-sidebar { display: none; }
    .product-breakout { flex-direction: column; text-align: center; }
    .pb-btn { margin: 10px auto 0; }
}

@media (max-width: 1024px) {
    .article-wrapper { grid-template-columns: 1fr; }
    .sticky-sidebar { display: none; }
    .product-breakout { flex-direction: column; text-align: center; }
    .pb-btn { margin: 10px auto 0; }
}

/* --- CONTACT PAGE STYLES --- */

/* Split Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: center;
}

/* Info Side */
.info-side h1 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.info-side p {
    color: var(--text-dim);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: 0.3s;
}

.method-card:hover {
    border-color: var(--neon-green);
    transform: translateX(10px);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--neon-green);
}

/* Radar Animation */
.radar-container {
    margin-top: 60px;
    position: relative;
    width: 100px;
    height: 100px;
}

.radar-core {
    width: 20px;
    height: 20px;
    background: var(--neon-green);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--neon-green);
}

.radar-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--neon-green);
    border-radius: 50%;
    opacity: 0;
    animation: ripple 3s infinite linear;
}

.r1 {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.r2 {
    width: 100%;
    height: 100%;
    animation-delay: 1s;
}

.r3 {
    width: 100%;
    height: 100%;
    animation-delay: 2s;
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }
    100% {
        width: 250px;
        height: 250px;
        opacity: 0;
    }
}

/* Form Box */
.form-box {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.input-group {
    margin-bottom: 20px;
}

.input-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.glass-input, .glass-textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    padding: 15px;
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.glass-input:focus, .glass-textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 15px rgba(77, 77, 255, 0.1);
}

.glass-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--text-main);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: var(--neon-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 157, 0.2);
}

/* Quick Fix Section */
.quick-fix {
    margin-top: 100px;
    border-top: 1px solid var(--glass-border);
    padding: 60px 0;
}

.quick-fix h2 {
    margin-bottom: 10px;
}

.fix-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.fix-card {
    padding: 25px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.fix-card:hover {
    background: var(--glass-high);
    border-color: var(--neon-green);
}

.fix-card h3 {
    margin-bottom: 10px;
    color: var(--neon-green);
    font-size: 1.2rem;
}

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

/* --- MOBILE --- */
@media (max-width: 967px) {
    /* Mobile Navigation */
    .nav-menu { display: none; }
    .mobile-menu-toggle { display: flex; }
}

@media (max-width: 968px) {
    .hero { flex-direction: column; text-align: center; padding-bottom: 50px; }
    .hero-content { margin-bottom: 80px; }
    .hero h1 { font-size: 3.5rem; }
    .hero-graphic-container {
        width: 90%;
        height: 350px;
        transform: rotateX(10deg) rotateY(0deg);
    }
    .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .card.featured { grid-column: span 1; }

    /* Store mobile styles */
    .filter-bar { width: 100%; overflow-x: auto; justify-content: flex-start; border-radius: 0; top: 0; border-left: none; border-right: none; }
    .store-header h1 { font-size: 2.5rem; }

    /* Blog mobile styles */
    .blog-grid { grid-template-columns: 1fr; }
    .page-header { padding: 3rem 0; }
    .header-title { font-size: 1.875rem; }

    /* Single post mobile styles */
    .article-wrapper { grid-template-columns: 1fr; }
    .sticky-sidebar { display: none; }
    .product-breakout { flex-direction: column; text-align: center; }
    .pb-btn { margin: 10px auto 0; }

    /* Contact mobile styles */
    .contact-wrapper { grid-template-columns: 1fr; }
    .info-side { text-align: center; }
    .radar-container { margin: 40px auto; }
    .fix-grid { grid-template-columns: 1fr; }
    .method-card:hover { transform: translateX(0) translateY(-5px); }
}

@media (max-width: 1024px) {
    .article-wrapper { grid-template-columns: 1fr; }
    .sticky-sidebar { display: none; }
    .product-breakout { flex-direction: column; text-align: center; }
    .pb-btn { margin: 10px auto 0; }
}

@media (max-width: 768px) {
    .article-header h1 { font-size: 2.2rem; }
    .hero-banner { height: 250px; }
    .hero-graphic { font-size: 5rem; }
    .rn-grid { grid-template-columns: 1fr; }
    .newsletter-box { flex-direction: column; }
}
