/* assets/css/style.css */
:root {
    --primary: #f43f5e;
    --primary-hover: #e11d48;
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: #334155;

    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}

/* Global Responsive Ads */
.ad-slot {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 1.5rem auto;
    overflow: hidden;
    text-align: center;
    border: 1px solid var(--primary);
    border-radius: 8px;
    line-height: 0;
}

.ad-banner-link,
.ad-code-wrapper {
    display: block;
    border: none !important;
}

.ad-code-wrapper {
    background: rgba(0, 0, 0, 0.2);
    line-height: normal;
}

.ad-slot img,
.ad-banner-link img,
.ad-code-wrapper img {
    max-width: 100% !important;
    height: auto !important;
    display: inline-block;
}

.ad-slot iframe {
    max-width: 100% !important;
}

/* Custom Homepage Sections */
.custom-section {
    padding: 6rem 0;
    color: var(--text-main);
    background: var(--bg-card);
}

.custom-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.custom-container h1,
.custom-container h2,
.custom-container h3 {
    color: white;
    margin-bottom: 1.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--primary-hover);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
    box-shadow: 0 4px 14px 0 rgba(244, 63, 94, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 63, 94, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-main);
}

.btn-block {
    width: 100%;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

/* Auth Layout */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: radial-gradient(circle at top right, rgba(244, 63, 94, 0.15) 0%, transparent 40%),
        radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.15) 0%, transparent 40%);
}

.login-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 24px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.5s ease-out;
}

.login-card .brand {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-card .brand h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #fff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.login-card .brand p {
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.input-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon i {
    position: absolute;
    left: 1.25rem;
    color: var(--text-muted);
}

.input-icon input {
    width: 100%;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border);
    padding: 1rem 1rem 1rem 3rem;
    border-radius: 12px;
    color: var(--text-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-icon input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.1);
}

.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.radio-card input {
    display: none;
}

.radio-card .card-content {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-muted);
}

.radio-card .card-content i {
    font-size: 1.5rem;
}

.radio-card input:checked+.card-content {
    background: rgba(244, 63, 94, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        height: 0;
        margin-bottom: 0;
        overflow: hidden;
    }

    to {
        opacity: 1;
        height: auto;
        margin-bottom: 1.5rem;
    }
}

/* Chat Interface App Layout */
.chat-layout {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

/* Application Layout */
.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Custom Sections Layout (AdSense Ready) */
.custom-section {
    width: 100%;
    padding: 2rem 5%;
    overflow: hidden;
    /* prevents adsense overflowing horizontally */
    background-color: var(--bg-card);
    /* matches reviews section */
}

.custom-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.custom-section-container img,
.custom-section-container iframe {
    max-width: 100%;
    height: auto;
}

/* Sidebar */
.chat-sidebar {
    width: 320px;
    background: var(--bg-card);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    z-index: 10;
    transition: transform 0.3s ease;
}

.sidebar-header {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--warning));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    position: relative;
    flex-shrink: 0;
}

.avatar.online::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--success);
    border: 2px solid var(--bg-card);
}

.avatar.female {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.avatar.male {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.avatar.bot {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.user-list {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem;
}

.user-list::-webkit-scrollbar {
    width: 6px;
}

.user-list::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}

.user-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-bottom: 0.25rem;
}

.user-item:hover,
.user-item.active {
    background: rgba(255, 255, 255, 0.05);
}

.user-item .info {
    flex: 1;
    overflow: hidden;
}

.user-item .name {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-item .status {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Main Chat Area */
.chat-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--bg-dark);
    position: relative;
}

.chat-header {
    height: 70px;
    padding: 0 1.5rem;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.chat-room-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-actions {
    display: flex;
    gap: 0.5rem;
}

.call-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.call-btn:hover {
    background: rgba(244, 63, 94, 0.1);
    color: var(--primary);
}

.call-btn.video {
    background: var(--primary);
    color: white;
}

.call-btn.video:hover {
    background: var(--primary-hover);
}

.messages-container {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    gap: 1rem;
    max-width: 80%;
    animation: fadeIn 0.3s ease;
}

.message.self {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-bubble {
    background: var(--bg-card);
    padding: 1rem;
    border-radius: 16px;
    border-top-left-radius: 4px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.message.self .message-bubble {
    background: var(--primary);
    color: white;
    border-top-left-radius: 16px;
    border-top-right-radius: 4px;
}

.message-info {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.message.self .message-info {
    color: rgba(255, 255, 255, 0.8);
}

.chat-input-area {
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.chat-form {
    display: flex;
    gap: 0.75rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border);
    padding: 0.5rem;
    border-radius: 9999px;
}

.chat-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-main);
    padding: 0 1rem;
    font-size: 1rem;
}

.chat-form input:focus {
    outline: none;
}

.send-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.send-btn:hover {
    transform: scale(1.05);
}

/* Call Funnel Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.connection-modal {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--border);
    max-width: 400px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.modal-overlay.active .connection-modal {
    transform: translateY(0) scale(1);
}

.radar-spinner {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(244, 63, 94, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    animation: spin 1s linear infinite;
}

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

/* Mobile Responsive */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .chat-sidebar {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        transform: translateX(-100%);
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .chat-sidebar.active {
        transform: translateX(0);
    }

    .mobile-nav-toggle {
        display: block;
    }
}

/* Global Navigation Styles */
.landing-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(15, 23, 42, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-sponsors {
    display: flex;
    gap: 1.5rem;
    margin-right: 2rem;
}

.nav-sponsors a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s;
}

.nav-sponsors a:hover {
    transform: translateY(-2px);
    color: #fcd34d;
}

.nav-sponsors small {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-toggle {
    display: none;
}

.mobile-sidebar,
.mobile-overlay {
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }

    .nav-sponsors {
        display: none !important;
    }

    .mobile-toggle {
        display: block !important;
    }

    /* New Sidebar Styles */
    .mobile-sidebar {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: #333;
        z-index: 2000;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .mobile-sidebar.active {
        right: 0;
    }

    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(4px);
        z-index: 1999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

    .sidebar-header {
        padding: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .sidebar-logo {
        font-size: 1.25rem;
        font-weight: 700;
        color: white;
    }

    .close-sidebar {
        background: none;
        border: none;
        color: var(--text-muted);
        font-size: 1.5rem;
        cursor: pointer;
    }

    .sidebar-content {
        flex: 1;
        overflow-y: auto;
        padding: 1.5rem 0;
    }

    .sidebar-nav a {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 1.5rem;
        color: #ddd;
        font-size: 1.1rem;
        font-weight: 500;
        transition: 0.2s;
    }

    .sidebar-nav a:hover {
        background: rgba(255, 255, 255, 0.05);
        color: var(--primary);
    }

    .sidebar-nav a i {
        width: 24px;
        color: var(--primary);
    }

    .sponsor-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 1.5rem;
        color: #fbbf24;
        font-size: 0.95rem;
        font-weight: 600;
    }
}

/* Trending Posts Grid Styles */
.posts-grid-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.post-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-card-content {
    padding: 1.5rem;
}

.post-card h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

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

.post-card .read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px -5px rgba(244, 63, 94, 0.2);
}

.post-card.featured {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(244, 63, 94, 0.3);
    height: 100%;
    min-height: 300px;
}

.post-card.featured h3 {
    font-size: 1.6rem;
}

.post-card.featured .badge {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

@media (max-width: 992px) {
    .posts-grid-container {
        grid-template-columns: 1fr;
    }

    .grid-col {
        gap: 1.5rem;
    }

    .post-card.featured {
        order: -1;
    }
}


/* Extracted from index.php */
/* Custom Landing Page Styles */
:root {
    --landing-gradient: linear-gradient(135deg, #f43f5e 0%, #8b5cf6 100%);
    --bg-hero: radial-gradient(circle at 15% 50%, rgba(244, 63, 94, 0.1), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.1), transparent 25%);
}

body {
    background: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

.landing-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(15, 23, 42, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-sponsors {
    display: flex;
    gap: 1.5rem;
    margin-right: 2rem;
}

.nav-sponsors a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s;
}

.nav-sponsors a:hover {
    transform: translateY(-2px);
    color: #fcd34d;
}

.nav-sponsors small {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

/* New Marquee Background */
.hero-bg-wrapper {
    position: absolute;
    top: -40%;
    left: -10%;
    right: -10%;
    bottom: -40%;
    z-index: 0;
    overflow: hidden;
    transform: rotate(-3deg) scale(1.1);
    pointer-events: none;
    opacity: 0.55;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@keyframes bgMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hero-bg-track {
    display: flex;
    gap: 1.5rem;
    padding-right: 1.5rem;
    width: max-content;
    height: auto;
    animation: bgMarquee 80s linear infinite;
    align-items: center;
}

.hero-bg-item {
    width: 170px;
    height: 240px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
    filter: grayscale(15%) contrast(1.1);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 1;
}

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

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    animation: fadeUp 1s ease forwards;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeUp 1s ease 0.2s forwards;
    opacity: 0;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s ease 0.4s forwards;
    opacity: 0;
}

.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--landing-gradient);
    filter: blur(15px);
    opacity: 0.5;
    border-radius: inherit;
    z-index: -1;
    transition: opacity 0.3s;
}

.btn-glow:hover::after {
    opacity: 0.8;
}

.features-section,
.reviews-section,
.groups-section,
.faq-section {
    padding: 6rem 5%;
    background: #0b1120;
}

.groups-section {
    background: var(--bg-dark);
}

.faq-section {
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(30, 41, 59, 0.4);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(244, 63, 94, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

/* Groups Grid */
.groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.group-pill {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 600;
}

.group-pill i {
    color: var(--primary);
    font-size: 1.5rem;
}

.group-pill:hover {
    background: rgba(244, 63, 94, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Reviews Slider */
.reviews-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.reviews-slider::-webkit-scrollbar {
    height: 8px;
}

.reviews-slider::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.review-card {
    min-width: 300px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 16px;
    scroll-snap-align: start;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.review-stars {
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.stats-section {
    padding: 5rem 5%;
    background: var(--landing-gradient);
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.site-footer {
    padding: 4rem 5% 2rem;
    background: #070b14;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-sponsors {
        display: none;
    }
}


/* Extracted from group.php */
:root {
    --landing-gradient: linear-gradient(135deg, #f43f5e 0%, #8b5cf6 100%);
    --bg-hero: radial-gradient(circle at 15% 50%, rgba(244, 63, 94, 0.12), transparent 30%),
        radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.12), transparent 30%);
}

body {
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── Hero ── */
.group-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background-image: var(--bg-hero);
    position: relative;
}

.group-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(244, 63, 94, 0.06) 0%, transparent 70%);
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--landing-gradient);
    filter: blur(15px);
    opacity: 0.5;
    border-radius: inherit;
    z-index: -1;
    transition: opacity 0.3s;
}

.btn-glow:hover::after {
    opacity: 0.8;
}

/* ── Stats ── */
.stats-section {
    background: var(--landing-gradient);
    padding: 4rem 5%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

/* ── Content Blocks ── */
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.content-block {
    background: rgba(30, 41, 59, 0.45);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2.5rem;
}

.content-block h2 {
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.9rem;
}

.content-text {
    color: #d1d5db;
    font-size: 1.08rem;
    line-height: 1.85;
}

/* ── CTA Banner ── */
.cta-banner {
    text-align: center;
    padding: 3rem 5%;
    background: rgba(244, 63, 94, 0.06);
    border: none;
}

/* ── Groups Grid ── */
.groups-section {
    padding: 3rem 5%;
}

/* Sidebar Ad Border Fix */
.sidebar .ad-slot {
    border: 1px solid var(--primary);
    border-radius: 8px;
    margin: 0.75rem 0;
    width: 100%;
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.groups-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.group-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.4rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 600;
    font-size: 0.95rem;
}

.group-pill i {
    color: var(--primary);
}

.group-pill:hover {
    background: rgba(244, 63, 94, 0.12);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ── Reviews ── */
.reviews-section {
    padding: 5rem 5%;
    background: var(--bg-card);
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

@keyframes autoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.reviews-track-marquee {
    display: flex;
    gap: 2rem;
    padding-right: 2rem;
    width: max-content;
    animation: autoScroll 40s linear infinite;
}

.reviews-track-marquee:hover {
    animation-play-state: paused;
}


.review-card {
    flex-shrink: 0;
    width: 320px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    scroll-snap-align: start;
}

.review-stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--landing-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ── FAQs ── */
.faq-section {
    padding: 5rem 5%;
}

.faq-item {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 1.4rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(244, 63, 94, 0.06);
}

.faq-answer {
    padding: 0 1.5rem 1.4rem;
    color: var(--text-muted);
    display: none;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-card {
        width: 280px;
    }

    .landing-nav {
        padding: 0.6rem 4% !important;
    }

    .landing-nav>a:first-child {
        font-size: 1.2rem !important;
    }

    .landing-nav img {
        max-height: 32px !important;
    }

    .landing-nav .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}


/* Extracted from post.php */
body {
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

.layout-wrapper {
    display: flex;
    gap: 4rem;
    max-width: 1600px;
    margin: 40px auto;
    padding: 0 5%;
    align-items: flex-start;
    justify-content: space-between;
}

.main-content {
    flex: 1;
    min-width: 0;
    background: var(--bg-card);
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.sidebar {
    width: 340px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
    margin-left: auto;
}

.breadcrumb {
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.page-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.page-header h1 {
    color: var(--primary);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.post-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.page-content {
    color: #d1d5db;
    font-size: 1.15rem;
    line-height: 1.8;
}

.page-content p {
    margin-bottom: 1.5rem;
}

.page-content h2,
.page-content h3 {
    color: white;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.page-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.in-article-ad {
    /* Inherits .ad-slot border and fit-content width.
       No extra padding, borders, or flex that cause height issues. */
    clear: both;
}

.tags-container {
    margin-top: 4rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag-pill {
    background: rgba(244, 63, 94, 0.1);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid rgba(244, 63, 94, 0.2);
    text-decoration: none;
    transition: all 0.2s;
}

.tag-pill:hover {
    background: var(--primary);
    color: white;
}

.post-nav {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

.nav-box {
    flex: 1;
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.2s;
}

.nav-box:hover {
    border-color: var(--primary);
    background: rgba(244, 63, 94, 0.05);
}

.nav-box small {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.nav-box span {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    display: block;
    transition: color 0.2s;
}

.groups-section {
    border-top: 1px solid var(--border);
    padding: 5rem 5% 3rem;
    margin-top: 5rem;
}

.groups-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.group-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 600;
    font-size: 0.9rem;
}

.group-pill i {
    color: var(--primary);
}

.group-pill:hover {
    background: rgba(244, 63, 94, 0.12);
    border-color: var(--primary);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

/* Sidebar Styles */
.widget {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.widget h3 {
    margin-bottom: 1.2rem;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.widget-list {
    list-style: none;
    padding: 0;
}

.widget-list li {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

.widget-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.widget-list a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    display: block;
    line-height: 1.4;
    transition: color 0.2s;
}

.widget-list a:hover {
    color: var(--primary);
}

/* Eye-catchy Banner Widget */
.chat-banner-widget {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #f43f5e 0%, #8b5cf6 100%);
    position: relative;
    overflow: hidden;
}

.chat-banner-widget::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 50%);
}

.chat-banner-widget h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    justify-content: center;
}

.chat-banner-widget p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    z-index: 1;
    position: relative;
}

.chat-banner-widget .btn {
    background: white;
    color: #8b5cf6;
    font-weight: bold;
    border: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    z-index: 1;
    position: relative;
}

.chat-banner-widget .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 20px -3px rgba(0, 0, 0, 0.4);
}

@media (max-width: 900px) {
    .layout-wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        position: static;
        margin-left: 0;
    }
}

/* Redirect Pages Extracted CSS */
.redirect-page {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    color: #f8fafc;
    font-family: 'Outfit', sans-serif;
    text-align: center;
    overflow: hidden;
}

.redirect-page .video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.4);
}

.redirect-page .container {
    position: relative;
    max-width: 500px;
    padding: 3rem 2rem;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.redirect-page .icon {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1.5rem;
    animation: p-pulse 1.5s infinite;
}

.redirect-page h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.redirect-page p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.redirect-page .progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.redirect-page .progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    width: 0%;
    transition: width 5s linear;
}

@keyframes p-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Login Pages Extracted CSS */
.custom-select-wrapper {
    position: relative;
    width: 100%;
    user-select: none;
}

.custom-select-wrapper.locked {
    pointer-events: none;
    cursor: default;
}

.custom-select-wrapper.locked .custom-select-trigger {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.4);
    opacity: 0.85;
}

.custom-select-wrapper.locked .custom-select-trigger:hover {
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.custom-select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.custom-select-trigger:hover,
.custom-select-trigger.active {
    border-color: var(--primary);
    color: white;
}

.custom-select-trigger .global-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
}

.custom-select-trigger .search-icon {
    color: var(--primary);
    font-size: 0.9rem;
}

.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0f172a;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-top: 0.5rem;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.custom-options.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-box {
    padding: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.search-box input {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    border-radius: 6px;
    color: white;
    outline: none;
    transition: border 0.2s;
}

.search-box input:focus {
    border-color: var(--primary);
}

.options-list {
    max-height: 200px;
    overflow-y: auto;
}

.options-list::-webkit-scrollbar {
    width: 6px;
}

.options-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.custom-option {
    padding: 0.8rem 1rem;
    color: #d1d5db;
    cursor: pointer;
    transition: background 0.2s;
}

.custom-option:hover {
    background: rgba(244, 63, 94, 0.15);
    color: white;
}

.custom-option.selected {
    background: var(--landing-gradient);
    color: white;
    font-weight: bold;
}

.custom-option.hidden {
    display: none;
}

/* Footer & Global UI Elements Extracted CSS */
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.2s all;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.mobile-social-wrapper {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 10000;
}

.floating-social-bar {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.floating-social-bar a,
.floating-social-bar button {
    width: 45px;
    height: 45px;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 0 8px 8px 0;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.floating-social-bar a:hover,
.floating-social-bar button:hover {
    width: 60px;
}

.copy-link-btn .copy-text {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-left: 10px;
    pointer-events: none;
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.copy-link-btn .copy-text::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-right-color: var(--primary);
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-5px) scale(1.1);
}

.social-toggle-btn {
    display: none;
}

@media (max-width: 768px) {
    .mobile-social-wrapper {
        transform: translateY(-50%) translateX(calc(-100% + 35px));
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-social-wrapper.open {
        transform: translateY(-50%) translateX(0);
    }

    .floating-social-bar {
        background: transparent !important;
        border: none !important;
    }

    .social-toggle-btn {
        display: flex !important;
        width: 35px;
        height: 50px;
        background: rgba(30, 41, 59, 1);
        color: white;
        align-items: center;
        justify-content: center;
        border-radius: 0 8px 8px 0;
        cursor: pointer;
        border: 1px solid var(--border);
        border-left: none;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }

    .floating-social-bar a,
    .floating-social-bar button.copy-link-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .floating-social-bar a:hover,
    .floating-social-bar button.copy-link-btn:hover {
        width: 38px;
    }
}

/* Footer Grid & Styling (Moved from footer.php inline styles) */
.site-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 4rem 5% 2rem;
    margin-top: 4rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column-brand .footer-logo {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1.6rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.footer-column-brand .logo-icon {
    color: var(--primary);
}

.footer-column-brand img {
    max-height: 45px;
    width: auto;
}

.footer-column-brand .footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: 0.2s;
}

.footer-social a:hover {
    color: var(--primary);
}

.footer-column .footer-heading {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-column .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 2.2;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Social Buttons Color Palette */
.sb-fb {
    background: #1877f2 !important;
}

.sb-x {
    background: #1DA1F2 !important;
    color: white !important;
}

.sb-tg {
    background: #0088cc !important;
}

.sb-discord {
    background: #5865F2 !important;
}

.sb-gab {
    background: #21d374 !important;
}

.sb-gettr {
    background: #cc2424 !important;
}

.sb-reddit {
    background: #ff4500 !important;
}

.sb-email {
    background: #6c757d !important;
}

.sb-li {
    background: #0a66c2 !important;
}

.sb-pin {
    background: #bd081c !important;
}

.sb-insta {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
}

.sb-copy {
    background: #4b5563 !important;
}

/* Global FAQ Accordion Active State */
.faq-item.active .faq-answer {
    display: block !important;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    transition: transform 0.3s;
}

/* Blog & Post Extracted CSS */
.blog-container,
.layout-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 5%;
    min-height: 50vh;
}

.blog-header,
.page-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.blog-header h1,
.page-header h1 {
    color: var(--primary);
    font-size: 3rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.blog-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.blog-card-img-link {
    display: block;
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.blog-card-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card-img-link img:hover {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 600;
}

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

.blog-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    flex: 1;
    line-height: 1.6;
}

.blog-card-meta,
.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: #9ca3af;
}

.post-meta {
    justify-content: center;
    border-top: none;
    padding-top: 0;
    margin-bottom: 2rem;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.page-link {
    background: var(--bg-card);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.page-link:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-link.active {
    background: var(--primary);
    border-color: var(--primary);
    pointer-events: none;
}

.layout-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
}

@media (max-width: 992px) {
    .layout-wrapper {
        grid-template-columns: 1fr;
    }
}

.main-content {
    min-width: 0;
}

.breadcrumb {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.breadcrumb a:hover {
    color: var(--primary);
}

.page-content {
    color: #d1d5db;
    line-height: 1.8;
    font-size: 1.1rem;
}

.page-content p {
    margin-bottom: 1.5rem;
}

.page-content h2,
.page-content h3 {
    color: white;
    margin: 2.5rem 0 1rem;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.tag-pill {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.2s;
    border: 1px solid var(--border);
}

.tag-pill:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

@media (max-width: 576px) {
    .post-nav {
        grid-template-columns: 1fr;
    }
}

.nav-box {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-decoration: none;
    transition: 0.2s;
}

.nav-box:hover {
    border-color: var(--primary);
    background: rgba(244, 63, 94, 0.05);
}

.nav-box small {
    display: block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-box span {
    display: block;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.widget {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 1.5rem;
}

.widget h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 600;
}

.widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.widget-list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.2s;
    line-height: 1.4;
    display: block;
}

.widget-list a:hover {
    color: var(--primary);
}

.chat-banner-widget {
    background: var(--landing-gradient);
    border: none;
}

.chat-banner-widget p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.chat-banner-widget .btn {
    background: white;
    color: var(--primary);
    font-weight: 700;
}

/* .in-article-ad styles are defined above near .ad-slot */

.no-posts-placeholder {
    grid-column: 1/-1;
    text-align: center;
    padding: 4rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px dashed var(--border);
}

.no-posts-placeholder h2 {
    color: var(--text-muted);
}

.no-posts-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.post-hero-image {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.post-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.tags-label {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-next {
    text-align: right;
}

.widget-ad {
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background: transparent;
    border: none;
    margin-top: 1.5rem;
}

/* Tag & Navigation Cloud Extracted CSS */
.tag-hero,
.tags-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(244, 63, 94, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(244, 63, 94, 0.15);
    margin-bottom: 3rem;
}

.tag-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 1rem;
}

.tag-pill-lg {
    background: var(--landing-gradient);
    color: white;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.tag-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    border: 1px solid var(--border);
    background: rgba(30, 41, 59, 0.6);
    color: white;
}

.tag-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    background: rgba(244, 63, 94, 0.12);
}

.tag-count {
    background: rgba(244, 63, 94, 0.2);
    color: var(--primary);
    border-radius: 50px;
    padding: 0.15rem 0.55rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.tag-xl {
    font-size: 1.3rem;
}

.tag-lg {
    font-size: 1.1rem;
}

.tag-md {
    font-size: 1rem;
}

.tag-sm {
    font-size: 0.9rem;
}

.related-pages {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.related-pages h3 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.3rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.related-link {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s;
    font-size: 0.95rem;
    font-weight: 500;
}

.related-link:hover {
    border-color: var(--primary);
    background: rgba(244, 63, 94, 0.05);
    color: var(--primary);
}

.related-link i {
    color: var(--primary);
    font-size: 0.8rem;
}

.empty-state {
    text-align: center;
    padding: 4rem;
    grid-column: 1/-1;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* Grid Layout Standardization */
.layout-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 4rem;
    max-width: 1600px;
    margin: 40px auto;
    padding: 0 4%;
}

@media (max-width: 1024px) {
    .layout-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        width: 100%;
        position: static;
    }
}

.main-content {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .main-content {
        padding: 1.5rem;
    }
}

.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.breadcrumb-back:hover {
    transform: translateX(-5px);
}

/* Header & Global Navigation Extracted CSS */
.landing-nav .nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.nav-logo img {
    max-height: 50px; /* Strong increase to compensate for padding */
    width: auto;
    object-fit: contain;
    margin: -80px 0; /* Pull it closer to center since padding is huge */
}

.footer-logo img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
    margin: -40px 5;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-btn-wrap {
    margin-left: 2rem;
}

.nav-btn-wrap .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
}

.header-mobile-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 1rem;
    display: none;
}

@media (max-width: 1024px) {
    .header-mobile-toggle {
        display: block;
    }

    .nav-sponsors,
    .nav-links,
    .nav-btn-wrap {
        display: none;
    }
}

.sidebar-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin: 1.5rem 0;
}

.sidebar-sponsors-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.sidebar-btn-wrap {
    margin-top: 2rem;
    padding: 0 1rem;
}

/* Dropdown Navigation Menus */
.dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.dropdown .dropbtn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background-color: var(--bg-card);
    min-width: 180px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    z-index: 1000;
    top: 100%;
    right: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.dropdown-content a {
    color: var(--text-muted);
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: rgba(244, 63, 94, 0.05);
    color: var(--primary);
}

.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-links .dropdown-content {
    right: 0;
    left: auto;
}

/* Left align for links */
.sponsor-dropdown-content {
    min-width: 200px;
}

/* 404 Redesign Phase 3: 3-Column Navigation Hub */
.error-page-wrapper {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 4%;
    min-height: 80vh;
}

.error-grid-layout {
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    gap: 2.5rem;
    align-items: start;
}

.error-sidebar {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.error-sidebar h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.error-sidebar h3 i {
    color: var(--primary);
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-item-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-muted);
    transition: all 0.2s;
    padding: 0.5rem;
    border-radius: 8px;
}

.sidebar-item-link:hover {
    background: rgba(255, 255, 255, 0.03);
    color: white;
}

.sidebar-item-thumb {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
    background: #1e293b;
}

.sidebar-item-info {
    flex: 1;
    min-width: 0;
}

.sidebar-item-name {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-item-meta {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Center Card 404 */
.error-main-col {
    text-align: center;
}

.error-card-center {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 4rem 2rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.wire-svg-container {
    margin-bottom: 3rem;
}

.wire-svg-container svg {
    max-width: 560px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(244, 63, 94, 0.2));
}

/* Table of Contents Styling */
.toc-box {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    max-width: 500px;
}

.toc-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1rem;
}

.toc-box ol {
    list-style: decimal;
    padding-left: 1.5rem;
    margin: 0;
}

.toc-box li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: var(--text-muted);
}

.toc-box li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.toc-box li a:hover {
    color: var(--primary);
}

.toc-box li.toc-child {
    margin-left: 1.5rem;
    position: relative;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Offset for fixed header when jumping to anchors */
[id] {
    scroll-margin-top: 100px;
}

.error-code {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: white;
    letter-spacing: -2px;
}

.error-msg {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .error-grid-layout {
        grid-template-columns: 1fr 1.5fr;
    }
    .error-sidebar-right {
        display: none;
    }
}

@media (max-width: 900px) {
    .error-grid-layout {
        grid-template-columns: 1fr;
    }
    .error-sidebar-left {
        order: 2;
    }
    .error-main-col {
        order: 1;
    }
}

@media (max-width: 600px) {
    .error-code { font-size: 3.5rem; }
    .error-card-center { padding: 3rem 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   INLINE STYLE EXTRACTIONS — All formerly inline styles are here
   ═══════════════════════════════════════════════════════════════════ */

/* ── Shared Section Subtitle ── */
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ── Feature Cards ── */
.feature-card-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: white;
}
.feature-card-desc {
    color: var(--text-muted);
    line-height: 1.6;
}
.feature-icon-red    { background: rgba(244, 63, 94, 0.1);  color: var(--primary); }
.feature-icon-green  { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.feature-icon-purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.feature-icon-amber  { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.feature-icon-sky    { background: rgba(56, 189, 248, 0.1); color: #38bdf8; }
.feature-icon-pink   { background: rgba(236, 72, 153, 0.1); color: #ec4899; }

/* ── Stats Section ── */
.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ── About Section ── */
.about-section-wrapper {
    background: var(--bg-dark);
    padding: 5rem 5%;
}
.about-section-inner {
    max-width: 900px;
    margin: 0 auto;
}
.about-section-header {
    margin-bottom: 2rem;
    text-align: left;
}
.about-title {
    font-size: 2rem;
}
.about-text-block {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}
.about-para {
    margin-bottom: 1.5rem;
}
.about-link {
    text-decoration: underline;
    font-weight: 700;
    margin-left: 5px;
}

/* ── Trending Posts Section ── */
.trending-section {
    padding: 4rem 5%;
}
.trending-header {
    margin-bottom: 3rem;
    text-align: center;
}
.post-card-title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* ── FAQ Chevron ── */
.faq-chevron {
    color: var(--text-muted);
    flex-shrink: 0;
}
.faq-section-inner {
    max-width: 900px;
    margin: 0 auto 3rem;
}

/* ── Blog Cards ── */
.blog-card {
    display: flex;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
}
.blog-card-img-link {
    height: 220px;
    display: block;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.blog-card-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.blog-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}
.blog-card-title {
    margin: 0 0 0.8rem 0;
    font-size: 1.2rem;
    line-height: 1.4;
}
.blog-card-title a {
    color: white;
    text-decoration: none;
}
.blog-card-desc {
    margin-bottom: auto;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.blog-card-meta {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.no-posts-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 1rem;
}
.no-posts-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.no-posts-title {
    color: white;
}
.pagination-wrap {
    margin-top: 3rem;
}
.page-link.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.blog-groups-section {
    max-width: 1200px;
    margin: 4rem auto 2rem;
    padding: 0 20px;
}
.blog-groups-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.blog-groups-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* ── Contact Form ── */
.contact-alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}
.contact-alert-error {
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.3);
    color: var(--danger);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}
.form-grid-2cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
    .form-grid-2cols {
        grid-template-columns: 1fr;
    }
}
.form-field-mb {
    margin-bottom: 1.5rem;
}
.form-field-mb2 {
    margin-bottom: 2rem;
}
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.5);
    color: white;
    font-size: 1rem;
}
.form-select-wrapper {
    position: relative;
}
.form-select {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.5);
    color: white;
    font-size: 1rem;
    appearance: none;
    cursor: pointer;
}
.form-select-icon {
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: var(--text-muted);
    pointer-events: none;
}
.form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.5);
    color: white;
    font-size: 1rem;
    resize: vertical;
}
.btn-submit-full {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 8px;
}
.btn-icon-mr {
    margin-right: 0.5rem;
}
.page-header-icon {
    margin-right: 0.5rem;
}

/* ── Group Page ── */
.group-hero-content {
    z-index: 2;
    position: relative;
    max-width: 900px;
    width: 100%;
    text-align: center;
}
.group-live-label {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}
.group-cta-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-cta-lg {
    font-size: 1.2rem;
    padding: 1.1rem 3rem;
    border-radius: 50px;
}
.btn-cta-md {
    font-size: 1.1rem;
    padding: 1.1rem 2rem;
    border-radius: 50px;
}
.group-trust-row {
    margin-top: 2.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.icon-success { color: var(--success); }
.icon-primary { color: var(--primary); }
.icon-amber   { color: #fbbf24; }
.content-icon-primary { color: var(--primary); }
.content-icon-success { color: var(--success); }

.cta-banner-title {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}
.cta-banner-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.btn-cta-banner {
    font-size: 1.15rem;
    padding: 1rem 3rem;
    border-radius: 50px;
}

/* ── Tracking / Hidden ── */
.tracker-hidden {
    display: none;
}

/* ── Group Hero Section ── */
.group-hero {
    position: relative;
    overflow: hidden;
}

/* ── Reviews Slider Wrapper ── */
.reviews-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

/* ── Review Card Text ── */
.review-text {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.review-name {
    margin-bottom: 0.2rem;
    color: white;
    font-size: 1.1rem;
}
.review-country {
    color: var(--text-muted);
}

/* ── Hero Trust Row ── */
.hero-trust-row {
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    animation: fadeUp 1s ease 0.6s forwards;
    opacity: 0;
}

/* ── About link icon ── */
.about-link-icon {
    font-size: 0.85em;
}

/* ── Hero Track Row Spacing ── */
.hero-bg-track-mb {
    margin-bottom: 1.5rem;
}
/* Force disable interaction for locked dropdowns across all devices */
.custom-select-wrapper.locked { pointer-events: none !important; opacity: 0.9; user-select: none; touch-action: none; }

