/* ==========================================================================
   GAME SPECIFIC LANDING PAGES (game-landing.css)
   - Centered Homepage Style Layout
   ========================================================================== */

/* --- 1. THE HERO SECTION --- */
.game-hero {
    position: relative;
    padding: 8rem 0 6rem; 
    overflow: hidden;
    background: transparent;
}

.hero-bg-glow {
    position: absolute; 
    top: -10%; left: 50%; transform: translateX(-50%);
    width: 800px; height: 800px; 
    background: radial-gradient(circle, var(--theme-glow) 0%, rgba(0,0,0,0) 60%);
    z-index: 0; pointer-events: none;
}

.game-hero .hero-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}

/* Force Center Alignment on Hero Elements */
.game-hero .hero-text {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Always Gold */
.hero-slogan {
    font-size: 1.1rem; text-transform: uppercase; letter-spacing: 3px;
    margin-bottom: 1rem; font-weight: 700;
    color: #f5b041; 
    text-shadow: 0 0 15px rgba(245, 176, 65, 0.4);
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 4rem); 
    line-height: 1.1; margin-bottom: 2rem;
    font-weight: 700;
    max-width: 900px;
    margin-inline: auto;
}

.hero-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-inline: auto;
}

.justify-content-center { justify-content: center; }

/* --- INTERACTIVE HERO PILLS --- */
.hero-pills-container {
    display: flex; flex-wrap: wrap; gap: 0.8rem;
    margin-bottom: 2.5rem; max-width: 900px; margin-inline: auto;
}
.hero-pill {
    display: flex; align-items: center; gap: 8px;
    padding: 0.5rem 1.1rem; border-radius: 30px;
    font-size: 0.85rem; font-weight: 500; color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}
.hero-pill iconify-icon { font-size: 1.2rem; transition: color 0.3s ease; }

.hero-pill:hover,
.hero-pill.active {
    color: #fff; border-color: var(--theme-color); background: var(--theme-glow);
    box-shadow: 0 0 15px var(--theme-glow), inset 0 0 10px rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}
.hero-pill:hover iconify-icon,
.hero-pill.active iconify-icon {
    color: var(--theme-color); filter: drop-shadow(0 0 5px var(--theme-color));
}

.hero-buttons .btn-lg { padding: 0.9rem 2.2rem; font-size: 1.05rem; }

/* --- HERO VISUAL (3D Tilt) --- */
.game-hero .hero-visual { 
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    perspective: 1200px; 
    z-index: 5;
    padding-top: 40px;
}

.visual-wrapper {
    position: relative;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-surface);
    padding: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 40px var(--theme-glow);
    transform-style: preserve-3d;
    will-change: transform; /* Let JS handle it directly for 0 lag */
}

.visual-wrapper img { width: 100%; border-radius: 8px; display: block; }


/* --- 2. THE 4-COLUMN POPULAR TOOL SECTION --- */
.popular-tool-section {
    padding: 2rem 0 2rem !important; 
    margin-bottom: 0 !important;
    background: transparent; 
    position: relative;
    z-index: 10;
}

.features-4-col-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem; 
    margin-bottom: 4rem;
}

/* Ensure the AOS wrappers stretch to grid height */
.features-4-col-grid > div {
    display: flex;
    height: 100%;
}

.feature-card-glass {
    flex: 1; /* Forces the card to fill the stretched wrapper height */
    background: var(--bg-card); 
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5); 
}

/* Theme-Specific Raise & Glow */
.feature-card-glass:hover {
    transform: translateY(-8px);
    border-color: var(--theme-color); 
    box-shadow: 0 25px 45px rgba(0,0,0,0.7), 0 5px 20px var(--theme-glow); 
}

.card-image-wrapper {
    height: 140px; 
    background: #050608;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card-glass:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    flex: 1; /* Pushes content down properly */
}

.card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #fff;
    transition: color 0.3s;
}

.feature-card-glass:hover .card-content h3 { color: var(--theme-color); }

.card-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* --- 3. GLOBAL STATS BANNER --- */
/* Utilizing dynamic Theme variables injected from PHP */
.global-stats-banner {
    background: linear-gradient(90deg, var(--bg-base) 0%, var(--theme-faint) 50%, var(--bg-base) 100%);
    border-top: 1px solid var(--theme-border);
    border-bottom: 1px solid var(--theme-border);
    padding: 2.5rem 0 !important; 
    margin: 0 !important;
    position: relative;
    overflow: hidden;
}

/* Force the container inside the stats banner to strip its global bottom padding */
.global-stats-banner .container {
    padding-bottom: 0 !important;
}

.global-stats-banner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, var(--theme-faint) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-shadow: 0 0 15px rgba(255,255,255,0.2);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
}

/* --- 4. SUPPORTS ALL SERVER VERSIONS --- */
.server-versions-section {
    padding: 4rem 0 6rem !important; 
    margin-top: 0 !important;
    background: var(--bg-base);
    overflow: hidden; 
}

.server-split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.server-text-content { flex: 1; }

.server-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 2rem;
}

.sf-icon {
    font-size: 1.8rem;
    margin-top: 3px;
    filter: drop-shadow(0 0 10px currentColor); 
}

.sf-text h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.4rem;
}

.sf-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.server-visual-content {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.mc-character-img {
    max-width: 350px;
    height: auto;
    filter: drop-shadow(-10px 20px 20px rgba(0,0,0,0.8));
    transform: translateX(200px); 
    opacity: 0; 
    will-change: transform, opacity; 
}

/* --- RESPONSIVE MEDIA QUERIES --- */

@media (max-width: 1024px) {
    .features-4-col-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .features-4-col-grid {
        margin-top: 2rem;
    }
    
    .server-split-layout {
        flex-direction: column;
        text-align: center;
    }
    
    .server-feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .mc-character-img {
        margin-top: 3rem;
        max-width: 250px;
        transform: translateX(0) !important;
        opacity: 1 !important;
    }
}

@media (max-width: 768px) {
    .features-4-col-grid { grid-template-columns: 1fr; }
    
    /* Center card contents on mobile */
    .features-4-col-grid .card-content {
        text-align: center;
    }
    
    .stats-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
}

/* ==========================================================================
   GAME SPECIFIC LANDING PAGES - CONTINUED (game-landing.css)
   ========================================================================== */

/* --- 5. LOGINS & INTEGRATIONS --- */
.login-pills-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.login-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}
.login-pill iconify-icon {
    color: var(--theme-color);
    font-size: 1.4rem;
    filter: drop-shadow(0 0 8px var(--theme-glow));
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.integration-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}
.integration-card:hover {
    transform: translateY(-5px);
    border-color: var(--theme-color);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 5px 20px var(--theme-faint);
}
.int-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.discord-icon { color: #5865F2; }
.ts-icon { color: #507191; }
.integration-card:hover .int-icon {
    transform: scale(1.1);
    box-shadow: inset 0 0 20px rgba(255,255,255,0.05);
}

.int-content h3 { font-size: 1.2rem; margin-bottom: 0.8rem; }
.int-content p { font-size: 0.9rem; margin: 0; line-height: 1.6; }


/* --- 6. MOD UPDATES & PATCHING --- */
.patching-section {
    position: relative;
    overflow: hidden;
    background: var(--bg-base);
}

.patching-split {
    display: flex;
    align-items: center;
    gap: 5rem;
}
.patching-text { flex: 1.2; }

/* We make this relative so the glow can anchor to it perfectly */
.patching-visual { 
    flex: 1; 
    position: relative; 
}

/* Updated positioning to lock it behind the window */
.patching-glow {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; /* Spills nicely out the sides of the window */
    aspect-ratio: 1; /* Forces it to remain a perfect circle */
    background: radial-gradient(circle, var(--theme-glow) 0%, transparent 60%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0; /* Ensures it sits behind the window */
}

.glass-mockup {
    position: relative;
    z-index: 2; /* Sits on top of the glow */
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px var(--theme-faint);
    
    /* THE MAGIC FIX: This forces the browser to render the box in its own 3D layer, entirely fixing the blur edge leak */
    transform: translateZ(0); 
}

.mockup-header {
    background: rgba(5, 6, 8, 0.85);
    padding: 10px 15px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mockup-header .dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.mockup-body {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%; /* Ensures the blur stretches edge-to-edge */
    height: 100%;
    background: rgba(13, 17, 22, 0.85); 
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(4px);
}
.sync-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px var(--theme-glow));
    animation: pulseSync 2s infinite ease-in-out;
}
.mockup-progress-bar {
    width: 100%; height: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}
.mockup-progress-fill {
    height: 100%; width: 78%;
    box-shadow: 0 0 15px var(--theme-color);
}
.mockup-status { font-family: monospace; font-size: 0.85rem; color: #8b949e; margin: 0; }

.patching-list { list-style: none; padding: 0; }
.patching-list li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 1rem; font-size: 0.95rem; color: var(--text-muted);
}
.patching-list iconify-icon { font-size: 1.4rem; flex-shrink: 0; }

@keyframes pulseSync {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* --- 7. USER DESIGNS GALLERY --- */
.template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.template-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
    border: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
}
.template-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.template-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.template-overlay iconify-icon {
    font-size: 3rem; color: #fff; transform: scale(0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	pointer-events: none;
}
.template-item:hover img { transform: scale(1.05); }
.template-item:hover .template-overlay { opacity: 1; }
.template-item:hover .template-overlay iconify-icon { transform: scale(1); }


/* --- 8. GAME SUPPORT --- */
.game-support-section {
    padding: 6rem 0;
    background: var(--bg-base);
}
.support-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(13, 17, 22, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid; /* Color driven by inline style */
    border-radius: 16px;
    padding: 4rem;
    gap: 4rem;
}
.support-text { flex: 1.5; }
.support-text h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.support-text p { font-size: 1.05rem; line-height: 1.7; margin-bottom: 1rem; }
.support-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.huge-support-icon {
    font-size: 12rem;
    opacity: 0.8;
    transform: rotate(15deg);
    transition: transform 0.5s ease;
}
.support-banner:hover .huge-support-icon {
    transform: rotate(0deg) scale(1.05);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
    .integrations-grid { grid-template-columns: repeat(2, 1fr); }
    .patching-split, .support-banner { flex-direction: column; text-align: center; }
    .patching-list li { justify-content: center; }
    .support-visual { justify-content: center; margin-top: 2rem; }
    .huge-support-icon { font-size: 8rem; }
}

@media (max-width: 768px) {
    .integrations-grid { grid-template-columns: 1fr; }
    .login-pills-wrapper { flex-direction: column; align-items: center; }
    .support-banner { padding: 2rem; }
}

/* ==========================================================================
   GAME SPECIFIC LANDING PAGES - SECTIONS 9, 10, 11
   ========================================================================== */

/* Utility for dynamic theme colors injected by PHP */
.text-theme { color: var(--theme-color) !important; }
.bg-base { background: var(--bg-base); }

/* --- 9. COMMUNITY SECTION --- */
.community-glass-card {
    background: rgba(13, 17, 22, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 4rem 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.review-header { margin-bottom: 2rem; }
.review-header iconify-icon { font-size: 1.5rem; margin: 0 2px; }
.review-header h4 { font-size: 1.5rem; margin-top: 1rem; color: #fff; }
.review-header p { font-size: 0.95rem; color: var(--text-muted); }

.review-box {
    background: #11151c;
    border: 1px solid var(--theme-border);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}
.review-text { font-size: 1.1rem; font-style: italic; color: #e2e8f0; margin-bottom: 1.5rem; }
.review-author { display: flex; align-items: center; justify-content: center; gap: 15px; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--theme-color); background: #222; }
.author-info { text-align: left; }
.author-info strong { display: block; color: var(--theme-color); font-size: 1rem; }
.author-info span { font-size: 0.8rem; color: var(--text-muted); }

/* Dummy Grid */
.recent-users-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.recent-user { display: flex; flex-direction: column; align-items: center; text-align: center; }
.recent-user img { width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,0.05); margin-bottom: 0.5rem; }
.recent-user strong { font-size: 0.9rem; color: #fff; }
.recent-user span { font-size: 0.75rem; color: var(--text-muted); }


/* --- 10. PRICING & BUY NOW (MEGA CARD) --- */
.pricing-mega-card {
    display: flex;
    background:
        radial-gradient(circle at top center, rgba(255,255,255,0.03) 0%, transparent 35%),
        linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0) 100%),
        #0d1116;
    border: 1px solid var(--theme-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px var(--theme-faint);
}

.pricing-mega-card--annual {
    position: relative;
}

.mega-card-left {
    flex: 1.12;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.025) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.value-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    border: 1px solid var(--theme-border);
    background: rgba(255,255,255,0.025);
    color: var(--theme-color);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    box-shadow: inset 0 0 12px rgba(255,255,255,0.03), 0 0 24px rgba(0,0,0,0.2);
}

.value-header .bundle-icon {
    font-size: 1.2rem;
    color: var(--theme-color);
    filter: drop-shadow(0 0 10px var(--theme-glow));
}
.value-header h3 {
    font-size: clamp(2.2rem, 3vw, 3rem);
    margin-bottom: 0.9rem;
    line-height: 1.05;
}
.value-header p {
    font-size: 1.12rem;
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.65;
}

.value-mockup-container {
    margin: 2.2rem 0 2.4rem;
}
.value-mockup-img {
    width: 100%;
    max-width: 500px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    display: block;
}

.value-inclusions h4 {
    font-size: 1.25rem;
    margin-bottom: 1.4rem;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 12px;
}
.value-inclusions ul { list-style: none; padding: 0; margin: 0; }
.value-inclusions li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.25rem;
}
.value-inclusions iconify-icon {
    font-size: 1.5rem;
    color: var(--theme-color);
    margin-top: 2px;
}
.value-inclusions strong {
    display: inline-block;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 2px;
}
.value-inclusions span {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.free-tag {
    background: rgba(39, 201, 63, 0.15);
    color: #27c93f !important;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem !important;
    margin-left: 8px;
    border: 1px solid rgba(39, 201, 63, 0.3);
}

.value-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.2rem;
}
.value-proof-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 76px;
    padding: 1rem 1.15rem;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.015) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    color: #f8fafc;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.value-proof-card iconify-icon {
    color: var(--theme-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.value-proof-card span {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

.mega-card-right {
    flex: 0.88;
    background:
        radial-gradient(circle at top center, rgba(34, 197, 94, 0.08) 0%, transparent 35%),
        #0a0c10;
    border-left: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
}

.discount-banner {
    background: var(--theme-color);
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.discount-banner iconify-icon { font-size: 1.2rem; }

.evergreen-timer-wrap {
    padding: 1.7rem 1.8rem 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.timer-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: #fff;
    border-radius: 999px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 auto 1rem;
}
.evergreen-timer-wrap{
    text-align:center;
}
.evergreen-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 0 0.2rem;
}
.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 68px;
    padding: 1rem 0.7rem;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.05);
}
.time-val {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ff6767;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
    line-height: 1;
}
.time-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 7px;
}
.time-sep {
    font-size: 1.8rem;
    font-weight: bold;
    color: rgba(255,255,255,0.2);
    margin-top: -12px;
}

.pricing-body {
    padding: 2.4rem 2.1rem 2.3rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.pricing-kicker {
    color: var(--theme-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.84rem;
    font-weight: 800;
    margin-bottom: 0.9rem;
}
.pricing-plan-title {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
    margin-bottom: 0.85rem;
}
.pricing-plan-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 480px;
    margin: 0 auto 1.6rem;
}

.annual-price-stack {
    padding: 1.2rem 1rem 1.3rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 1.35rem;
}
.annual-price-topline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}
.old-price {
    font-size: 1.15rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 600;
}
.savings-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: var(--theme-color);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.price-display {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    margin-bottom: 0.25rem;
}
.new-price {
    font-size: 4.5rem;
    color: #fff;
    font-weight: 800;
    line-height: 0.95;
}
.price-suffix {
    font-size: 1.55rem;
    font-weight: 700;
    color: #dbeafe;
    padding-bottom: 0.55rem;
}
.annual-billed-note {
    font-size: 0.92rem;
    color: #cbd5e1;
    margin: 0;
}
.annual-billed-note strong {
    color: #fff;
}

.included-checklist {
    display: grid;
    gap: 0.85rem;
    margin: 0 0 1.6rem;
}
.included-check-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #f8fafc;
    font-weight: 700;
    font-size: 1rem;
}
.included-check-item iconify-icon {
    color: var(--theme-color);
    font-size: 1rem;
}

.buy-now-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.2rem;
    font-weight: 800;
    background: #520fd5;
    border-color: #520fd5;
    color: #fff;
    margin-bottom: 1rem;
    animation: pulseButton 2s infinite;
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(34, 197, 94, 0.18);
}
.buy-now-btn iconify-icon {
    margin-right: 8px;
    font-size: 1.1rem;
}

.checkout-note {
    margin: 0 0 1.6rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.pricing-guarantees-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
    margin-bottom: 1.7rem;
}
.guarantee-card {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 1rem 1rem;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.06);
    color: #f8fafc;
}
.guarantee-card iconify-icon {
    font-size: 1.15rem;
    color: var(--theme-color);
    flex-shrink: 0;
}
.guarantee-card span {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
}

.trust-box {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.6rem;
}
.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.pay-icon {
    font-size: 2rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.pay-icon:hover { opacity: 1; }
.made-in-uk p {
    margin: 0;
    font-size: 0.85rem;
    color: #cbd5e1;
}
.made-in-uk small {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.38);
}
.text-danger { color: #ef4444; }

@keyframes pulseButton {
    0% { box-shadow: 0 0 0 0 var(--theme-faint); }
    70% { box-shadow: 0 0 0 15px rgba(0,0,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}

@media (max-width: 1200px) {
    .pricing-mega-card {
        flex-direction: column;
    }
    .mega-card-right {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,0.05);
    }
}

@media (max-width: 768px) {
    .mega-card-left,
    .pricing-body {
        padding: 2rem 1.35rem;
    }
    .evergreen-timer-wrap {
        padding: 1.4rem 1rem 1rem;
    }
    .value-proof-grid,
    .pricing-guarantees-grid {
        grid-template-columns: 1fr;
    }
    .time-box {
        min-width: 58px;
        padding: 0.85rem 0.4rem;
    }
    .time-val {
        font-size: 2rem;
    }
    .time-sep {
        display: none;
    }
    .evergreen-timer {
        gap: 8px;
        flex-wrap: wrap;
    }
    .new-price {
        font-size: 3.4rem;
    }
    .price-suffix {
        font-size: 1.25rem;
        padding-bottom: 0.4rem;
    }
    .included-check-item,
    .guarantee-card {
        justify-content: flex-start;
        text-align: left;
    }
    .included-checklist {
        justify-items: stretch;
    }
}

/* --- 11. SYSTEM SPECS (UNIFIED) --- */
.specs-unified-card {
    background: rgba(13, 17, 22, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.os-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.os-badge {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 30px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem; font-weight: 600; color: #fff;
}
.os-badge iconify-icon { font-size: 1.4rem; color: var(--theme-color); }

.specs-grid-unified {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.spec-list { list-style: none; padding: 0; }
.spec-list li {
    display: flex; align-items: flex-start; gap: 15px;
    margin-bottom: 1.5rem;
}
.spec-icon {
    width: 40px; height: 40px; border-radius: 8px;
    background: var(--theme-faint); border: 1px solid var(--theme-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--theme-color); flex-shrink: 0;
}
.spec-info strong { display: block; font-size: 1rem; color: #fff; margin-bottom: 2px; }
.spec-info span { font-size: 0.85rem; color: var(--text-muted); }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .pricing-mega-card { flex-direction: column; }
    .mega-card-left { border-bottom: 1px solid rgba(255,255,255,0.05); padding: 3rem; }
    .mega-card-right { border-left: none; padding-top: 0; }
    .value-mockup-img { max-width: 100%; }
}

@media (max-width: 768px) {
    .specs-grid-unified { grid-template-columns: 1fr; gap: 1.5rem; }
    .os-icons { flex-direction: column; align-items: center; gap: 1rem; }
    .mega-card-left, .pricing-body { padding: 2rem; }
    .price-display { flex-direction: column; gap: 5px; }
}

/* --- Compact yearly offer refinements --- */
.pricing-mega-card {
    max-width: 1220px;
}
.mega-card-left {
    padding: 2.25rem 2.1rem;
}
.value-header h3 {
    font-size: clamp(2.2rem, 3vw, 3.35rem);
    margin-bottom: 0.7rem;
}
.value-header p {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 1.4rem;
    max-width: 640px;
}
.value-chip {
    padding: 0.7rem 1.15rem;
    font-size: 0.88rem;
    margin-bottom: 1.15rem;
}
.value-mockup-container {
    margin: 1.7rem 0 1.8rem;
}
.value-mockup-img {
    max-width: 620px;
}
.value-inclusions h4 {
    font-size: 1.55rem;
    margin-bottom: 1rem;
}
.value-inclusions li {
    gap: 12px;
    margin-bottom: 0.95rem;
}
.value-inclusions li strong {
    font-size: 1rem;
}
.value-inclusions li span {
    font-size: 0.86rem;
}
.free-tag {
    font-size: 0.72rem;
    padding: 0.18rem 0.45rem;
}
.value-proof-grid {
    gap: 0.8rem;
    margin-top: 1.6rem;
}
.value-proof-card {
    min-height: 64px;
    padding: 0.85rem 0.95rem;
    border-radius: 12px;
}
.value-proof-card span {
    font-size: 0.86rem;
    line-height: 1.35;
}

.discount-banner {
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
}
.evergreen-timer-wrap {
    padding: 1.1rem 1.2rem 0.9rem;
}
.timer-kicker {
    padding: 0.55rem 0.8rem;
    font-size: 0.74rem;
    margin-bottom: 0.85rem;
}
.evergreen-timer {
    gap: 9px;
    padding-top: 0.4rem;
}
.time-box {
    min-width: 56px;
    padding: 0.75rem 0.45rem;
    border-radius: 12px;
}
.time-val {
    font-size: 2rem;
}
.time-label {
    font-size: 0.65rem;
    margin-top: 5px;
}
.time-sep {
    font-size: 1.45rem;
    margin-top: -8px;
}

.pricing-body {
    padding: 1.45rem 1.45rem 1.55rem;
}
.pricing-kicker {
    font-size: 0.74rem;
    letter-spacing: 1.7px;
    margin-bottom: 0.7rem;
}
.pricing-plan-title {
    font-size: clamp(1.9rem, 2.7vw, 3rem);
    margin-bottom: 0.6rem;
}
.pricing-plan-subtitle {
    font-size: 0.94rem;
    line-height: 1.55;
    margin-bottom: 1rem;
    max-width: 430px;
}
.annual-price-stack {
    padding: 0.95rem 0.85rem 1rem;
    border-radius: 16px;
    margin-bottom: 0.95rem;
}
.annual-price-topline {
    gap: 10px;
    margin-bottom: 0.45rem;
}
.old-price {
    font-size: 1rem;
}
.savings-badge {
    font-size: 0.72rem;
    padding: 0.38rem 0.65rem;
}
.price-display {
    margin-bottom: 0;
}
.price-display--single .new-price {
    font-size: 4rem;
    line-height: 0.92;
}
.offer-pills-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    margin: 0 0 1rem;
}
.offer-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0.46rem 0.72rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #e5e7eb;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
}
.offer-pill iconify-icon {
    color: var(--theme-color);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.buy-now-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    padding: 0.95rem 1rem;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}
.checkout-note {
    margin: 0 0 1rem;
    font-size: 0.84rem;
    line-height: 1.45;
}
.pricing-guarantees-grid {
    gap: 0.75rem;
    margin-bottom: 1.15rem;
}
.guarantee-card {
    min-height: 68px;
    padding: 0.8rem 0.85rem;
    border-radius: 12px;
}
.guarantee-card span {
    font-size: 0.84rem;
}
.trust-box {
    padding-top: 1rem;
}
.payment-methods {
    gap: 10px;
}
.pay-icon {
    font-size: 1.8rem;
}
.made-in-uk p {
    font-size: 0.8rem;
}
.made-in-uk small {
    display: inline-block;
    margin-top: 0.2rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.62);
}

@media (max-width: 1200px) {
    .pricing-mega-card {
        max-width: 920px;
    }
}

@media (max-width: 1024px) {
    .pricing-mega-card {
        flex-direction: column;
    }
    .mega-card-left {
        padding: 2rem 1.6rem;
    }
    .mega-card-right {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.05);
    }
    .value-proof-grid,
    .pricing-guarantees-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .pricing-buy-section .container {
        padding-left: 14px;
        padding-right: 14px;
    }
    .mega-card-left,
    .pricing-body {
        padding: 1.25rem 1rem !important;
    }
    .value-header h3 {
        font-size: 2rem;
    }
    .value-header p,
    .pricing-plan-subtitle {
        font-size: 0.9rem;
    }
    .discount-banner {
        font-size: 0.8rem;
        padding: 0.75rem 0.9rem;
    }
    .timer-kicker {
        width: 100%;
        justify-content: center;
        text-align: center;
        white-space: normal;
    }
    .evergreen-timer {
        flex-wrap: nowrap;
        gap: 6px;
    }
    .time-box {
        min-width: 0;
        flex: 1 1 0;
        padding: 0.65rem 0.3rem;
    }
    .time-val {
        font-size: 1.55rem;
    }
    .time-label {
        font-size: 0.58rem;
        letter-spacing: 0.7px;
    }
    .time-sep {
        display: none;
    }
    .pricing-plan-title {
        font-size: 2rem;
    }
    .price-display--single .new-price {
        font-size: 3.2rem;
    }
    .offer-pills-inline {
        justify-content: stretch;
    }
    .offer-pill {
        width: 100%;
        justify-content: center;
        font-size: 0.76rem;
    }
    .buy-now-btn {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        min-height: 54px;
        font-size: 1rem;
    }
    .pricing-guarantees-grid,
    .value-proof-grid {
        grid-template-columns: 1fr;
    }
    .guarantee-card {
        min-height: 0;
    }
}

@media (max-width: 480px) {
    .evergreen-timer-wrap {
        padding: 1rem 0.85rem 0.8rem;
    }
    .pricing-plan-title {
        font-size: 1.8rem;
    }
    .price-display--single .new-price {
        font-size: 2.85rem;
    }
    .buy-now-btn {
        width: 100%;
        min-height: 52px;
    }
}

.uk-flag{
  width:18px;
  height:auto;
  vertical-align:middle;
  margin:0 4px;
  border-radius:2px;
}

/* ==========================================================================
   NEW SECTIONS (WIDGETS, FAQ, SEO, DOCS)
   ========================================================================== */

/* --- 12. Widgets Grid --- */
.widgets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.widget-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 300px; /* Fixed height so both align nicely */
}
.widget-card:hover {
    transform: translateY(-5px);
    border-color: var(--theme-color);
}
.stat-widget {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 100%);
}
.widget-bg-icon {
    position: absolute;
    font-size: 15rem;
    color: var(--theme-color);
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.widget-content {
    position: relative;
    z-index: 2;
}
.widget-main-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px var(--theme-glow));
}
.widget-content h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}
.widget-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}
.discord-widget iframe {
    border: none;
    display: block;
}

/* --- 13. FAQ Section --- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}
.faq-question:hover {
    background: rgba(255,255,255,0.02);
}
.faq-icon {
    font-size: 1.5rem;
    color: var(--theme-color);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(0,0,0,0.2);
}
.faq-answer-inner {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
	padding-top: 15px;
}

/* --- 14. SEO Blurb --- */
.seo-blurb-card {
    background: rgba(13, 17, 22, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.seo-blurb-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.seo-blurb-text p:last-child {
    margin-bottom: 0;
}

/* --- 15. Docs Banner --- */
.docs-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(13, 17, 22, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid;
    border-radius: 16px;
    padding: 4rem;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}
.docs-text { flex: 1.5; }
.docs-text h2 { font-size: 2.2rem; margin-bottom: 1rem; color: #fff; }
.docs-text p { font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.5rem; color: var(--text-muted); }
.docs-visual { flex: 1; display: flex; justify-content: center; align-items: center; }
.docs-icon { font-size: 10rem; opacity: 0.8; transition: transform 0.5s ease; filter: drop-shadow(0 0 20px var(--theme-glow)); }
.docs-banner:hover .docs-icon { transform: scale(1.05) translateY(-10px); }

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .widgets-grid { grid-template-columns: 1fr; }
    .docs-banner { flex-direction: column; text-align: center; padding: 2rem; }
    .faq-question { padding: 1.2rem; font-size: 1rem; }
    .faq-answer-inner { padding: 20px;}
    .seo-blurb-card { padding: 2rem; }
}

/* ==========================================================================
   BULLETPROOF OVERRIDES (WIDGETS, FAQ, SEO, DOCS)
   ========================================================================== */

/* --- Strict Centering for "Recently Joined By" --- */
.glc-recent-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 4rem;
}
.glc-recent-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}
.glc-recent-icon {
    font-size: 2.5rem;
    color: var(--theme-color);
    margin-bottom: 10px;
    display: block !important;
}
.glc-recent-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    width: 100%;
    margin-top: 1.5rem;
}

/* --- Expanded 100% Width Widget Grid --- */
.glc-widgets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1220px; /* Matches Pricing Mega Card */
    margin: 0 auto;
}

/* --- Expanded 100% Width FAQ --- */
.glc-faq-accordion {
    width: 100%;
    max-width: 1220px; /* Matches Pricing Mega Card */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* --- Expanded 100% Width SEO Blurb --- */
.glc-seo-card {
    background: rgba(13, 17, 22, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 3rem;
    width: 100%;
    max-width: 1220px; /* Matches Pricing Mega Card */
    margin: 0 auto;
    text-align: center;
}

/* --- Docs Interactive Pills --- */
.glc-docs-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1.5rem;
}
.glc-docs-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}
.glc-docs-pill iconify-icon {
    color: var(--theme-color);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}
.glc-docs-pill:hover {
    background: var(--theme-faint);
    border-color: var(--theme-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}
.glc-docs-pill:hover iconify-icon {
    transform: scale(1.1);
}

/* --- Mobile Responsiveness for New Widths --- */
@media (max-width: 992px) {
    .glc-widgets-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .glc-seo-card {
        padding: 2rem 1.5rem;
    }
    .glc-docs-pills {
        justify-content: center;
    }
}

/* ==========================================================================
   MINIMAL LANDING PAGE FOOTER
   ========================================================================== */

.glc-minimal-footer {
    background-color: #030405;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 3rem 0 2rem;
    position: relative;
    z-index: 10;
    margin-top: 2rem;
}

.glc-footer-links-inline {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.glc-footer-links-inline a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
}

.glc-footer-links-inline a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.glc-footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.glc-footer-meta p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.bytebox-link {
    color: #38bdf8;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bytebox-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
}

.glc-footer-socials {
    display: flex;
    gap: 1rem;
}

.glc-footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.glc-footer-socials a:hover {
    background: rgba(0, 123, 255, 0.1);
    border-color: rgba(0, 123, 255, 0.4);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.15);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .glc-footer-links-inline {
        gap: 1.2rem;
    }
    .glc-footer-meta {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    .glc-footer-socials {
        justify-content: center;
    }
}

.legal-card {
    background: rgba(13, 17, 22, 0.2) !important; /* Slightly more transparent */
    border-color: rgba(255, 255, 255, 0.03) !important;
}

.disclaimer-text p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.disclaimer-text strong {
    color: #fff;
}

.legal-link {
    color: var(--theme-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.legal-link:hover {
    color: #fff;
    text-shadow: 0 0 8px var(--theme-glow);
    border-bottom: 1px solid var(--theme-color);
}

.legal-card h4 {
    font-size: 1rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .annual-price-stack {
        text-align: center;
    }

    .price-display,
    .price-display--single {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .price-display .new-price,
    .price-display--single .new-price {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .price-suffix,
    .annual-billed-note,
    .annual-price-topline {
        text-align: center;
        justify-content: center;
    }
}

/* ==========================================================================
   MOBILE HOTFIXES
   ========================================================================== */
@media (max-width: 768px) {
    .pricing-body,
    .annual-price-stack,
    .annual-price-topline,
    .price-display,
    .price-display--single {
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .price-display,
    .price-display--single {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .price-display .new-price,
    .price-display--single .new-price,
    .old-price,
    .savings-badge,
    .price-suffix,
    .annual-billed-note {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

body {
    overflow-x: clip; 
}

.comparison-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 900px; margin: 0 auto; }
.compare-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; padding: 2.5rem; }
.compare-header { display: flex; align-items: center; gap: 10px; margin-bottom: 2rem; font-size: 1.5rem; font-weight: 700; }
.compare-header iconify-icon { font-size: 2rem; }
.old-way .compare-header { color: #ef4444; }
.compare-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.compare-list li { display: flex; align-items: center; gap: 12px; font-size: 1rem; color: #fff; }
.old-way .compare-list iconify-icon { color: #ef4444; font-size: 1.2rem; }
.glc-way .compare-list iconify-icon { font-size: 1.2rem; filter: drop-shadow(0 0 5px var(--theme-glow)); }

.loss-aversion-box { display: flex; align-items: center; gap: 4rem; background: rgba(13, 17, 22, 0.6); border: 1px solid rgba(239, 68, 68, 0.2); border-radius: 16px; padding: 4rem; box-shadow: inset 0 0 40px rgba(239, 68, 68, 0.05); }
.loss-text-content { flex: 1; }
.loss-stats-grid { flex: 1.2; display: flex; flex-direction: column; gap: 1.5rem; }
.loss-stat-card { background: rgba(0, 0, 0, 0.4); border-left: 4px solid var(--theme-color); padding: 1.5rem 2rem; border-radius: 0 12px 12px 0; display: flex; align-items: center; gap: 1.5rem; transition: transform 0.3s ease; }
.loss-stat-card:hover { transform: translateX(10px); background: rgba(255, 255, 255, 0.02); }
.loss-number { 
    font-size: 1.5rem; 
    font-weight: 800; 
    line-height: 1; 
    flex-shrink: 0; /* This stops the browser from squishing the word */
    width: 140px;   /* Gives enough room for wider words */
    text-shadow: 0 0 15px var(--theme-glow); 
}
.loss-stat-card p { margin: 0; color: #e2e8f0; font-size: 0.95rem; line-height: 1.5; }

@media (max-width: 992px) {
    .loss-aversion-box { flex-direction: column; padding: 2.5rem; text-align: center; }
    .loss-stat-card { flex-direction: column; text-align: center; border-left: none; border-top: 4px solid var(--theme-color); border-radius: 0 0 12px 12px; padding: 2rem 1.5rem; }
    .loss-number { margin-bottom: 0.5rem; }
}

/* --- FINAL CTA HERO SECTION --- */
.final-cta-section {
    padding: 2rem 0 6rem; /* Gives it breathing room above the footer */
}

.final-cta-banner {
    background: rgba(13, 17, 22, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid var(--theme-color);
    border-radius: 16px;
    padding: 5rem 3rem;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 40px var(--theme-faint);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Background rotating glow */
.final-cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 150%; height: 150%;
    background: radial-gradient(circle, var(--theme-faint) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    animation: spinGlow 15s linear infinite;
}

.final-cta-content {
    position: relative;
    z-index: 2; /* Keeps text above the glow */
    max-width: 800px;
    margin: 0 auto;
}

/* Floating Icon Effect */
.final-cta-icon {
    font-size: 5.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 25px var(--theme-glow));
    animation: floatIcon 3.5s ease-in-out infinite;
    display: inline-block;
}

.final-cta-content h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.final-cta-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Button Pulse/Hover Effect */
.pulse-btn {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 1rem 2.5rem !important;
}

.pulse-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px var(--theme-glow) !important;
}

/* Animations */
@keyframes spinGlow {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.1); }
    100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .final-cta-banner { padding: 3.5rem 1.5rem; }
    .final-cta-content p { font-size: 1rem; }
    .final-cta-icon { font-size: 4rem; }
}