    /* --- Root Variables (Taken from original index.html) --- */
    :root {
      /* Base Theme Colors */
      --bg-dark: #0f172a;
      --bg-card: rgba(30, 41, 59, 0.7);
      --primary: #6366f1; /* Indigo */
      --primary-hover: #4f46e5;
      --accent: #f59e0b; /* Amber */
      --text-main: #f8fafc;
      --text-muted: #94a3b8;
      --border-light: rgba(255, 255, 255, 0.1);
      --primary-yellow: #f59e0b; /* Added for general use */

      /* Social Brand Colors */
      --brand-insta: #E1306C;
      --brand-fb: #1877F2;
      --brand-tiktok: #FE2C55;
      --brand-yt: #FF0000;
      --brand-wa: #25D366;
      --brand-x: #ffffff;
      --brand-snap: #FFFC00;
      --glass-bg: rgba(255, 255, 255, 0.05);
      --glass-border: rgba(255, 255, 255, 0.1);
      --alert-red: #ef4444;
    }

    /* --- Reset & Base --- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      text-decoration: none;
      list-style: none;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--bg-dark);
      color: var(--text-main);
      overflow-x: hidden;
      background-image:
        radial-gradient(circle at 15% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(236, 72, 153, 0.15) 0%, transparent 25%);
    }

    .glass {
      background: var(--glass-bg);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--glass-border);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
    
    .text-center {
        text-align: center;
    }

   
    
    /* --- Ticker/Disclaimer Bar --- */
    .ticker-bar {
        margin-top: 80px; /* Push down below fixed header */
        background-color: var(--accent);
        color: var(--bg-dark);
        padding: 10px 0;
        font-size: 14px;
        font-weight: 700;
        text-align: center;
        overflow: hidden;
    }
    
    .ticker-bar marquee {
        padding: 0 20px;
    }

    /* --- Page Hero --- */
    .page-hero {
      position: relative;
      padding: 150px 0 100px;
      text-align: center;
      overflow: hidden;
    }
    
    .page-hero h1 {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 20px;
        background: linear-gradient(to right, #fff, #94a3b8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
        .quick-select-label {
      display: block;
      margin-bottom: 15px;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--accent);
      font-weight: 700;
    }

    .quick-select-container {
      display: inline-flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
      background: rgba(255, 255, 255, 0.03);
      padding: 15px;
      border-radius: 100px;
      border: 1px solid var(--border-light);
      backdrop-filter: blur(5px);
    }

    .platform-chip {
      background: rgba(255, 255, 255, 0.05);
      color: white;
      padding: 10px 20px;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s;
      border: 1px solid transparent;
    }

    .platform-chip:hover {
      transform: translateY(-3px);
      background: rgba(255, 255, 255, 0.1);
    }

    /* Specific Hover Colors for Chips */
    .chip-ig:hover {
      border-color: var(--brand-insta);
      box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
    }

    .chip-fb:hover {
      border-color: var(--brand-fb);
      box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
    }

    .chip-tk:hover {
      border-color: var(--brand-tiktok);
      box-shadow: 0 5px 15px rgba(254, 44, 85, 0.3);
    }

    /* --- Process Section --- */
    .process-section {
      padding: 80px 0;
      background: rgba(15, 23, 42, 0.5);
    }

    .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .section-tag {
      color: var(--primary);
      font-weight: 700;
      text-transform: uppercase;
      font-size: 0.85rem;
      letter-spacing: 1.5px;
      margin-bottom: 10px;
      display: block;
    }

    .section-title {
      font-size: 2.5rem;
      margin-bottom: 25px;
      line-height: 1.2;
    }

    .step-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin: 30px 0;
    }

    .step-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      background: rgba(255, 255, 255, 0.03);
      padding: 20px;
      border-radius: 12px;
      border: 1px solid var(--border-light);
    }

    .step-icon {
      min-width: 40px;
      height: 40px;
      background: rgba(99, 102, 241, 0.2);
      color: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    .step-content h4 {
      color: white;
      margin-bottom: 5px;
    }

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

    .styled-img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      border: 1px solid var(--border-light);
    }
    
    .page-hero p {
        font-size: 1.15rem;
        color: var(--text-muted);
        max-width: 800px;
        margin: 0 auto 40px;
    }
    
    .cta-btn {
        background: var(--accent);
        color: var(--bg-dark);
        padding: 12px 30px;
        border: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }
    
    .cta-btn:hover {
        background: #ffc244;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4);
    }
    
    /* --- Platform Cards (Issues Section style applied) --- */
    .platform-section {
        padding: 80px 0;
        background: rgba(15, 23, 42, 0.5);
    }
    
    .platform-section h2 {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .issue-card {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      padding: 35px;
      border-radius: 16px;
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
      text-align: center;
      cursor: pointer;
    }
    
    .issue-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--text-muted); /* Default */
        transition: height 0.3s;
    }
    
    .issue-card:hover {
      transform: translateY(-10px);
      background: #1e293b;
    }

    .issue-card:hover::before {
      height: 6px;
    }
    
    .card-icon {
      font-size: 3rem;
      margin-bottom: 20px;
      display: block;
    }
    
    .issue-card h3 {
      font-size: 1.4rem;
      margin-bottom: 15px;
      color: white;
    }
    
    .issue-card p {
        color: var(--text-muted);
        min-height: 40px;
    }
    
    /* Brand Specific Styling (Using the same colors from original design) */
    .card-insta::before { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
    .card-insta i { color: var(--brand-insta); }
    
    .card-fb::before { background: var(--brand-fb); }
    .card-fb i { color: var(--brand-fb); }
    
    .card-tiktok::before { background: var(--brand-tiktok); }
    .card-tiktok i { color: var(--brand-tiktok); }
    
    .card-yt::before { background: var(--brand-yt); }
    .card-yt i { color: var(--brand-yt); }
    
    .card-x::before { background: var(--brand-x); }
     .card-x i { color: var(--brand-x); font-size: 2rem; margin-bottom: 20px;}
    
    .card-snap::before { background: var(--brand-snap); }
    .card-snap i { color: var(--brand-snap); text-shadow: 0 0 5px rgba(0, 0, 0, 0.5); }
    
    .card-link-btn {
        background: var(--primary);
        color: white;
        padding: 10px 20px;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        display: inline-block;
        margin-top: 20px;
        transition: background 0.3s;
    }
    
    .card-link-btn:hover {
        background: var(--primary-hover);
    }
        /* --- Process Section --- */
    .process-section {
      padding: 80px 0;
      background: rgba(15, 23, 42, 0.5);
    }

    .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .section-tag {
      color: var(--primary);
      font-weight: 700;
      text-transform: uppercase;
      font-size: 0.85rem;
      letter-spacing: 1.5px;
      margin-bottom: 10px;
      display: block;
    }

    .section-title {
      font-size: 2.5rem;
      margin-bottom: 25px;
      line-height: 1.2;
    }

    .step-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin: 30px 0;
    }

    .step-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      background: rgba(255, 255, 255, 0.03);
      padding: 20px;
      border-radius: 12px;
      border: 1px solid var(--border-light);
    }

    .step-icon {
      min-width: 40px;
      height: 40px;
      background: rgba(99, 102, 241, 0.2);
      color: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    .step-content h4 {
      color: white;
      margin-bottom: 5px;
    }

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

    .styled-img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      border: 1px solid var(--border-light);
    }

/* --- User Profile Dropdown Styles --- */

.user-profile-wrapper {
    position: relative;
    cursor: pointer;
}

.user-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.user-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.user-name-text {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
}

/* The Dropdown Card */
.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 240px;
    background: var(--bg-dark); /* Solid fallback */
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 15px;
    display: none; /* Hidden by default */
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: fadeInDown 0.3s ease;
}

.user-profile-wrapper.active .user-dropdown-menu {
    display: flex;
}

.user-info-header {
    padding: 5px 10px 15px;
    display: flex;
    flex-direction: column;
}

.user-info-header strong {
    font-size: 1rem;
    color: white;
}

.user-info-header span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.dropdown-divider {
    border: 0;
    border-top: 1px solid var(--glass-border);
    margin: 10px 0;
}

.dropdown-item, .logout-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.2s;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-item:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
}

.logout-link {
    color: var(--alert-red);
}

.logout-link:hover {
    background: rgba(239, 68, 68, 0.1);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .user-name-text {
        display: none; /* Only show avatar on small mobile headers */
    }
}


/* --- Global Responsive Containers --- */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }
}

 

/* --- Hero Section Fixes --- */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 50px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .quick-select-container {
        border-radius: 20px;
        padding: 10px;
        gap: 10px;
    }

    .platform-chip {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

/* --- Process Section (The Grid Fix) --- */
@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .process-section .grid-2 div:last-child {
        order: -1; /* Puts the image above text on mobile */
    }

    .styled-img {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .step-icon {
        margin: 0 auto 10px;
    }
}

/* --- Platform Cards (Responsive Grid) --- */
@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr; /* Single column on phones */
        gap: 20px;
    }
}

/* --- Footer (Multi-Column to Stack) --- */
@media (max-width: 992px) {
    .footer-container {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 columns on tablets */
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr; /* 1 column on phones */
        text-align: center;
    }

    .footer-col .social-links {
        justify-content: center;
    }

    .logo {
        justify-content: center;
        display: flex;
    }
}



