/* ==========================================================================
   TamilBTC.in - Official Stylesheet
   Modern Glassmorphism, Neon Accents, Dark Theme (Inspired by aeelectric.in)
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-dark: #0b0e14;
    --bg-dark-secondary: #121722;
    --bg-card: rgba(20, 26, 38, 0.65);
    --bg-card-hover: rgba(28, 36, 52, 0.85);
    
    --primary-gold: #F7931A;
    --primary-gold-glow: rgba(247, 147, 26, 0.35);
    --primary-gold-dark: #d67a0a;

    --neon-cyan: #00F2FE;
    --neon-blue: #4FACFE;
    --neon-green: #00E676;
    --neon-red: #FF5252;
    --neon-purple: #7F00FF;

    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;

    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-gold: rgba(247, 147, 26, 0.25);
    --glass-blur: blur(16px);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 10px 30px rgba(247, 147, 26, 0.25);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Mode Overrides (Optional Toggle) */
body.light-mode {
    --bg-dark: #f4f6fb;
    --bg-dark-secondary: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-card-hover: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --glass-border: rgba(0, 0, 0, 0.08);
}

/* Reset & Global */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Noto Sans Tamil', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Noto Sans Tamil', sans-serif;
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Text Gradient & Helpers */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #FFD700 50%, var(--neon-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.highlight {
    color: var(--primary-gold);
}

.domain {
    color: var(--neon-cyan);
}

.text-gold { color: var(--primary-gold) !important; }
.text-cyan { color: var(--neon-cyan) !important; }
.text-blue { color: var(--neon-blue) !important; }
.text-green { color: var(--neon-green) !important; }
.text-orange { color: #FF9800 !important; }
.text-purple { color: var(--neon-purple) !important; }

.positive { color: var(--neon-green) !important; }
.negative { color: var(--neon-red) !important; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #E67E22 100%);
    color: #000;
    box-shadow: 0 4px 20px var(--primary-gold-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 147, 26, 0.5);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    backdrop-filter: var(--glass-blur);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--primary-gold);
    color: #000;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.3);
}

.btn-telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.5);
}

/* Glass Panel Component */
.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.glass-panel:hover {
    border-color: var(--glass-border-gold);
}

.glass-panel-sm {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 15px;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(247, 147, 26, 0.12);
    border: 1px solid rgba(247, 147, 26, 0.3);
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.badge-green {
    background: rgba(0, 230, 118, 0.12);
    border-color: rgba(0, 230, 118, 0.3);
    color: var(--neon-green);
}

.badge-cyan {
    background: rgba(0, 242, 254, 0.12);
    border-color: rgba(0, 242, 254, 0.3);
    color: var(--neon-cyan);
}

.badge-orange {
    background: rgba(255, 152, 0, 0.12);
    border-color: rgba(255, 152, 0, 0.3);
    color: #FF9800;
}

/* Top Announcement Bar */
.top-bar {
    background: #06080c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    padding: 6px 0;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.live-pulse {
    color: var(--neon-green);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
}

.live-pulse i {
    font-size: 0.5rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-link {
    color: var(--text-secondary);
}

.top-link:hover {
    color: var(--primary-gold);
}

.lang-switch {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    padding: 2px;
    border: 1px solid var(--glass-border);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--primary-gold);
    color: #000;
}

.top-bar-ticker-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    flex: 1;
    max-width: 720px;
}

.ticker-move {
    display: flex;
    gap: 22px;
    white-space: nowrap;
    animation: marqueeTicker 30s linear infinite;
}

.ticker-move:hover {
    animation-play-state: paused;
}

.ticker-coin {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

/* Sticky Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 14, 20, 0.85);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    padding: 14px 0;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-only {
    height: 48px;
    width: auto;
    background: #ffffff;
    padding: 4px 12px;
    border-radius: var(--radius-md);
    box-shadow: 0 0 15px var(--primary-gold-glow);
    border: 1px solid var(--primary-gold);
    transition: var(--transition);
}

.nav-logo-only:hover {
    transform: scale(1.04);
    box-shadow: 0 0 25px rgba(247, 147, 26, 0.6);
}

.logo-icon-box {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #E67E22 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px var(--primary-gold-glow);
}

.logo-img-box {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    box-shadow: 0 0 15px var(--primary-gold-glow);
    overflow: hidden;
}

.logo-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-banner-full {
    max-height: 52px;
    width: auto;
    background: #ffffff;
    padding: 6px 14px;
    border-radius: var(--radius-md);
    box-shadow: 0 0 20px var(--primary-gold-glow);
    border: 1px solid var(--primary-gold);
}

.logo-icon {
    font-size: 1.5rem;
    color: #000;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gold);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--primary-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    pointer-events: none;
}

.orb-1 {
    width: 450px;
    height: 450px;
    background: var(--primary-gold);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--neon-cyan);
    bottom: -150px;
    right: -100px;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--neon-purple);
    top: 40%;
    left: 40%;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 45px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid var(--glass-border);
}

.stat-card {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Hero Showcase Visual Tiles (Matching aeelectric.in) */
.hero-visual {
    position: relative;
}

.hero-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.hero-showcase-main {
    grid-column: span 2;
    padding: 24px;
    border: 1px solid var(--glass-border-gold);
    position: relative;
    overflow: hidden;
}

.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.hero-showcase-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.crypto-price-large {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-top: 4px;
}

.badge-change {
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

.badge-change.positive {
    background: rgba(0, 230, 118, 0.15);
    color: var(--neon-green);
}

.chart-container-mini {
    margin: 15px 0;
}

.hero-showcase-overlay {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--glass-border);
}

.showcase-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-gold);
}

.showcase-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hero-showcase-tile {
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-showcase-tile:hover {
    transform: translateY(-4px);
    border-color: var(--primary-gold);
    background: var(--bg-card-hover);
}

.tile-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.tile-text {
    display: flex;
    flex-direction: column;
}

.tile-text strong {
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.tile-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Brand Ticker Showcase */
.brand-showcase {
    padding: 25px 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
    overflow: hidden;
}

.brand-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.brand-ticker {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    align-items: center;
}

.brand-item {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
}

/* Section Shared Layout */
.section {
    padding: 90px 0;
    position: relative;
}

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

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

.section-header.text-center {
    text-align: center;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
}

/* Grid System */
.grid {
    display: grid;
    gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.exchange-card {
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.exchange-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: 0 12px 30px rgba(247, 147, 26, 0.2);
}

.ex-icon-box {
    width: 68px;
    height: 68px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.exchange-card:hover .ex-icon-box {
    transform: scale(1.08);
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px var(--primary-gold-glow);
}

.exchange-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.align-center { align-items: center; }

/* Market Controls & Table */
.market-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 16px 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    flex: 1;
    max-width: 320px;
}

.search-box input {
    background: transparent;
    border: none;
    color: var(--text-primary);
    outline: none;
    width: 100%;
    font-size: 0.9rem;
}

.currency-toggle {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    padding: 3px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
}

.curr-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.curr-btn.active {
    background: var(--primary-gold);
    color: #000;
}

.table-responsive {
    overflow-x: auto;
}

.crypto-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.crypto-table th, .crypto-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--glass-border);
}

.crypto-table th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

.crypto-table tbody tr {
    transition: var(--transition);
}

.crypto-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.coin-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.coin-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.coin-symbol {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 5px;
}

/* Tools & Converter Cards */
.tool-card {
    padding: 30px;
}

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

.tool-card-header h3 {
    font-size: 1.3rem;
}

.tool-card-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.input-with-icon {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 0 16px;
    overflow: hidden;
}

.input-with-icon span {
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin-right: 10px;
}

.input-with-icon input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    outline: none;
}

.form-group-swap {
    display: flex;
    justify-content: center;
    margin: -10px 0 10px;
}

.btn-swap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: #000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-swap:hover {
    transform: rotate(180deg) scale(1.1);
}

.sats-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

/* Range Slider */
.slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    accent-color: var(--primary-gold);
}

.range-val-flex {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.roi-results {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.roi-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

/* Products / Solutions Cards (Matching aeelectric.in) */
.product-card {
    padding: 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(247, 147, 26, 0.15);
}

.product-img-wrapper {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
}

.card-badge {
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: rgba(247, 147, 26, 0.15);
    color: var(--primary-gold);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.product-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Chart & Sentiment Section */
.chart-big-card {
    padding: 28px;
}

.timeframe-btns {
    display: flex;
    gap: 6px;
    background: rgba(0, 0, 0, 0.3);
    padding: 3px;
    border-radius: var(--radius-sm);
}

.tf-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.tf-btn.active {
    background: var(--primary-gold);
    color: #000;
}

.canvas-wrapper {
    position: relative;
    width: 100%;
    margin-top: 15px;
}

.sentiment-card {
    padding: 35px;
    text-align: center;
}

.gauge-container {
    margin: 25px auto;
    position: relative;
    width: 200px;
    height: 110px;
}

.gauge-arc {
    width: 200px;
    height: 100px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.gauge-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    background: linear-gradient(90deg, var(--neon-red) 0%, var(--primary-gold) 50%, var(--neon-green) 100%);
    transform-origin: center bottom;
    transition: transform 1.5s ease-out;
}

.gauge-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-top: 10px;
    line-height: 1;
}

.gauge-label {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--neon-green);
}

.sentiment-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Feature Boxes */
.feature-box {
    padding: 28px;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-header {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
}

.faq-header:hover {
    color: var(--primary-gold);
}

.faq-icon {
    transition: var(--transition);
    color: var(--text-muted);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-gold);
}

.faq-body {
    padding: 0 28px 22px;
    display: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

/* Contact Section */
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.c-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.c-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(247, 147, 26, 0.12);
    border: 1px solid rgba(247, 147, 26, 0.3);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.c-detail-item strong {
    display: block;
    font-size: 0.95rem;
}

.c-detail-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.social-links-flex {
    display: flex;
    gap: 12px;
}

.social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.social-circle:hover {
    background: var(--primary-gold);
    color: #000;
    transform: translateY(-3px);
}

.contact-form-side {
    padding: 35px;
}

.contact-form-side input, .contact-form-side select, .contact-form-side textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.contact-form-side input:focus, .contact-form-side select:focus, .contact-form-side textarea:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 10px var(--primary-gold-glow);
}

.contact-form-side select option {
    background: #121722;
    color: #fff;
}

/* Footer */
.footer {
    background: #06080c;
    border-top: 1px solid var(--glass-border);
    padding: 70px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 15px 0;
}

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

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
}

.disclaimer-text {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.8);
}

.float-tooltip {
    position: absolute;
    right: 70px;
    background: #121722;
    color: #fff;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    white-space: nowrap;
    border: 1px solid var(--glass-border);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .float-tooltip {
    opacity: 1;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

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

.modal-content {
    max-width: 650px;
    width: 100%;
    padding: 35px;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
    border: 1px solid var(--glass-border-gold);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--primary-gold);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: #121722;
    border: 1px solid var(--glass-border-gold);
    color: #fff;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    animation: slideInLeft 0.3s forwards;
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Instagram Profile Header & Reels Grid */
.ig-profile-card {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    border: 1px solid rgba(225, 0, 255, 0.25);
    background: linear-gradient(135deg, rgba(127, 0, 255, 0.1) 0%, rgba(225, 0, 255, 0.05) 100%);
    flex-wrap: wrap;
    border-radius: var(--radius-lg);
}

.ig-profile-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ig-avatar-box {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 0 15px rgba(225, 0, 255, 0.4);
    flex-shrink: 0;
}

.ig-avatar-box img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}

.ig-details h3 {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ig-details p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.ig-stats-row {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    margin-top: 5px;
}

.ig-stats-row span strong {
    color: var(--text-primary);
}

.reel-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 380px;
    border: 1px solid var(--glass-border);
    background: var(--bg-card);
    transition: var(--transition);
}

.reel-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(247, 147, 26, 0.25);
}

.reel-thumbnail {
    height: 240px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e1b4b 0%, #311042 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-bg-icon {
    font-size: 4.5rem;
    opacity: 0.2;
    color: var(--primary-gold);
    transition: var(--transition);
}

.reel-card:hover .reel-bg-icon {
    transform: scale(1.2);
    opacity: 0.4;
}

.reel-play-btn {
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 20px var(--primary-gold-glow);
    transition: var(--transition);
    cursor: pointer;
}

.reel-card:hover .reel-play-btn {
    transform: scale(1.15);
    background: var(--primary-gold);
    color: #000;
}

.reel-duration {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}

.reel-views-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--neon-green);
    display: flex;
    align-items: center;
    gap: 5px;
}

.reel-info {
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.reel-title {
    font-size: 0.95rem;
    line-height: 1.35;
    font-weight: 600;
    color: var(--text-primary);
}

.reel-footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 35px;
    }

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

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

    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar-container {
        justify-content: center;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-actions {
        display: none;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero-showcase {
        grid-template-columns: 1fr;
    }

    .hero-showcase-main {
        grid-column: span 1;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}
