/* ============================================
   FREYA TRADES - TRADING SIGNALS LANDING PAGE
   ============================================ */

/* CSS Variables */
:root {
    --bg-primary: #0d0d0d;
    --bg-secondary: #1a1a1a;
    --bg-card: #1f1f1f;
    --bg-elevated: #252525;
    
    --accent-yellow: #f5d547;
    --accent-yellow-hover: #e5c537;
    --accent-teal: #a855f7; /* Changed to Purple */
    --accent-teal-dark: #7e22ce; /* Changed to Dark Purple */
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    
    --buy-green: #22c55e;
    --sell-red: #ef4444;
    
    --border-color: rgba(168, 85, 247, 0.3); /* Purple border */
    --border-subtle: rgba(255, 255, 255, 0.08);
    
    --shadow-glow: 0 0 40px rgba(245, 213, 71, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: #050505; /* Dark background */
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

/* Ensure content sits above the grid */
header, section, footer, .modal-overlay {
    position: relative;
    z-index: 1;
}

/* Grid Background & Spotlight */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0; /* Behind content, but on top of body bg? */
    /* Actually, fixed elements relate to viewport. */
    background-image: 
        linear-gradient(to right, rgba(168, 85, 247, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(168, 85, 247, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    
    /* Reveal effect */
    -webkit-mask-image: radial-gradient(
        circle 300px at var(--mouse-x, 50%) var(--mouse-y, 50%),
        black 0%,
        transparent 100%
    );
    mask-image: radial-gradient(
        circle 300px at var(--mouse-x, 50%) var(--mouse-y, 50%),
        black 0%,
        transparent 100%
    );
}

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

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

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: none;
    transition: transform 0.4s ease, background 0.3s ease, backdrop-filter 0.3s ease;
}

.header.hidden {
    transform: translateY(-100%);
}

.header.scrolled {
    transform: translateY(0);
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
}

.header.scrolled .header-container {
    padding: 0.6rem 2rem;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    transition: padding 0.3s ease;
}

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

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-teal);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.btn-demo {
    background: var(--accent-yellow);
    color: var(--bg-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.btn-demo:hover {
    background: var(--accent-yellow-hover);
    transform: translateY(-2px);
}

.header-line {
    height: 2px;
    background: linear-gradient(90deg, var(--accent-teal), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header.scrolled .header-line {
    opacity: 1;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--bg-primary);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background: var(--accent-yellow-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(245, 213, 71, 0.3);
}

.btn-whop {
    display: inline-block;
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 2rem;
    border: 2px solid var(--accent-teal);
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition-medium);
}

.btn-whop:hover {
    background: var(--accent-teal);
    color: var(--bg-primary);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(245, 213, 71, 0.05) 0%, transparent 40%);
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-trial {
    font-family: var(--font-accent);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-style: italic;
    color: var(--accent-teal);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    margin-bottom: 1.5rem;
}

.hero-note {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: 3rem 2rem;
    background: transparent;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-medium);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-teal);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

.chat-images-section {
    padding: 3rem 2rem;
    background: transparent;
}

.chat-images-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
}

.chat-images-container.chat-images-3col {
    grid-template-columns: repeat(3, 1fr);
}

.chat-image-box {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    padding: 1rem;
    overflow: hidden;
    transition: var(--transition-medium);
    max-width: 400px;
    width: 100%;
}

.chat-image-box:hover {
    transform: translateY(-4px);
    border-color: var(--accent-teal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.chat-image-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Public Channel Card */
.public-channel-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 136, 204, 0.1) 100%);
    border-radius: 16px;
    border: 2px solid #0088cc;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: var(--transition-medium);
    max-width: 400px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.public-channel-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    position: relative;
    z-index: 1;
}

.public-channel-icon,
.public-channel-btn {
    position: relative;
    z-index: 1;
}

.public-channel-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 136, 204, 0.1) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.public-channel-card:hover {
    transform: translateY(-8px);
    border-color: #00aaff;
    box-shadow: 0 15px 40px rgba(0, 136, 204, 0.3);
}

.public-channel-icon {
    color: #0088cc;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.public-channel-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.public-channel-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0088cc;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.public-channel-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.public-channel-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0088cc;
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.public-channel-btn:hover {
    background: #0099e6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
}

.funding-section {
    padding: 3rem 2rem;
    background: transparent;
}

.funding-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* ============================================
   SECTION TITLES
   ============================================ */

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--accent-teal);
    text-align: center;
    margin-bottom: 3rem;
}

/* ============================================
   WHAT YOU GET SECTION
   ============================================ */

.what-you-get {
    padding: 3rem 2rem;
    background: transparent;
}

.benefits-box {
    max-width: 800px;
    margin: 3rem auto 0;
    background: var(--bg-card);
    border: 2px solid var(--accent-teal);
    border-radius: 20px;
    padding: 2.5rem 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.05rem;
}

.benefit-item:not(:last-child) {
    border-bottom: 1px solid var(--border-subtle);
}

.checkmark {
    color: var(--accent-yellow);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* ============================================
   JOIN VIA WHOP SECTION
   ============================================ */

.join-whop {
    padding: 4rem 2rem;
    background: transparent;
}

.join-whop-container {
    max-width: 1200px;
    margin: 0 auto;
}

.join-whop-card {
    text-align: center;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
}

.join-whop-note {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   LIVE SIGNALS PREVIEW
   ============================================ */

.signals-preview {
    padding: 3rem 2rem;
    background: transparent;
}

.signals-container {
    max-width: 1100px;
    margin: 0 auto;
}

.telegram-mockup {
    display: grid;
    grid-template-columns: 350px 1fr;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-top: 3rem;
    min-height: 500px;
}

/* Sidebar */
.telegram-sidebar {
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-subtle);
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.sidebar-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

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

.channel-list {
    padding: 0.5rem 0;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.channel-item:hover,
.channel-item.active {
    background: var(--bg-card);
}

.channel-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.channel-icon.money {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.channel-icon.star {
    background: linear-gradient(135deg, #eab308, #ca8a04);
}

.channel-icon.gift {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.channel-icon.hash {
    background: var(--bg-elevated);
    color: var(--text-muted);
    font-weight: bold;
}

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

.channel-name {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.channel-preview {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.channel-date {
    font-size: 0.75rem;
    color: var(--accent-teal);
}

/* Chat Area */
.telegram-chat {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--bg-primary); /* Ensure background is solid */
    height: 100%; /* Fill the container */
}

.chat-view {
    display: none;
    flex-direction: column;
    height: 100%;
    width: 100%;
    position: relative;
}

.chat-view.active-view {
    display: flex;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--accent-teal);
}

.chat-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-header-info {
    display: flex;
    flex-direction: column;
}

.chat-title {
    font-weight: 700;
}

.chat-messages {
    font-size: 0.85rem;
    color: var(--accent-teal);
}

.pinned-badge {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.chat-messages-area {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto; /* Enable scrolling */
}

.message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-elevated);
    border-radius: 12px;
    max-width: 300px;
}

.alert-icon {
    font-size: 1.5rem;
}

.message-title {
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

.message-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

.signal-message {
    background: var(--accent-teal);
    color: var(--bg-primary);
    padding: 1.25rem;
    border-radius: 12px;
    max-width: 400px;
    align-self: flex-end;
}

/* --- TELEGRAM LINK PREVIEW --- */
.link-preview {
    border-left: 2px solid #5288c1;
    padding-left: 8px;
    margin-top: 5px;
    margin-bottom: 5px;
}
.link-title {
    color: #5288c1;
    font-weight: 600;
    font-size: 14px;
}
.link-desc {
    font-size: 13px;
    color: #cfd4d9;
}

/* --- TRADE SUMMARY TABLE --- */
.image-container {
    background-color: #1b212d;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
    border: 1px solid #28303a;
    margin-top: 0.5rem;
}

.trade-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 10px;
    font-family: monospace;
    background: #222;
}
.trade-table th {
    background-color: #333;
    color: #ddd;
    padding: 4px;
    text-align: left;
}
.trade-table td {
    border-bottom: 1px solid #333;
    padding: 4px;
    color: #ccc;
}
.trade-title {
    background: #2b2b2b;
    color: #fff;
    padding: 5px;
    font-size: 11px;
    font-weight: bold;
    border-bottom: 1px solid #444;
    display: flex;
    align-items: center;
    gap: 5px;
}
.icon-trade {
    color: #d9534f;
}

/* --- DATE DIVIDERS --- */
.date-divider {
    align-self: center;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin: 15px 0;
    backdrop-filter: blur(2px);
}

.code-block {
    font-family: monospace;
    background: #111;
    padding: 5px;
    border-radius: 4px;
    color: #a9b7c6;
    font-size: 12px;
    white-space: pre-wrap;
    margin: 5px 0;
}

/* Overriding bubble content for list styles if needed */
.bubble-content ul {
    margin-left: 20px;
    margin-bottom: 8px;
}

.signal-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

/* Telegram Style Messages */
.telegram-message-row {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 25px; /* Spacing between rows */
}

.message-avatar-container {
    flex-shrink: 0;
}

.message-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.telegram-bubble {
    background: #182533; /* Dark Telegram theme color */
    border-radius: 12px 12px 12px 0; /* Corner radius like image */
    padding: 10px 15px;
    max-width: 80%;
    position: relative;
    /* Optional shadow */
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.bubble-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.bubble-name {
    color: #e17055; /* Orange color from image */
    font-weight: 700;
    font-size: 0.95rem;
    margin-right: 10px;
}

.bubble-admin {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    background: transparent;
}

.bubble-content {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
}

.bubble-content p {
    margin-bottom: 4px;
}

.bubble-content p:last-child {
    margin-bottom: 0;
}

.bubble-time {
    display: block;
    text-align: right;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 5px;
}

.sorcerer-icon {
    font-size: 1.25rem;
}

.sorcerer-name {
    font-weight: 600;
}

.signal-content {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.signal-content .buy {
    color: var(--buy-green);
    font-weight: bold;
    background: rgba(34, 197, 94, 0.2);
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
}

.signal-content .sell {
    color: #1a1a1a;
    font-weight: bold;
    background: rgba(239, 68, 68, 0.3);
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
}

.signal-time {
    font-size: 0.75rem;
    opacity: 0.7;
    display: block;
    margin-top: 0.5rem;
}

/* Chat Overlay */
.chat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent 0%, var(--bg-card) 30%, var(--bg-elevated) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
}

.overlay-content {
    text-align: center;
    padding: 2rem;
}

.lock-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.overlay-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.overlay-note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing {
    padding: 3rem 2rem;
    background: transparent;
}

.pricing-cards {
    max-width: 900px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card .btn-primary {
    margin-top: auto;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border-color: var(--accent-yellow);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245, 213, 71, 0.05) 100%);
}

.pricing-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-teal);
    color: var(--bg-primary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-badge {
    background: var(--accent-yellow);
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.pricing-period {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.pricing-features .checkmark {
    font-size: 1.25rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    padding: 3rem 2rem;
    background: transparent;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-elevated);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-teal);
    transition: var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    padding: 8rem 2rem;
    background: 
        radial-gradient(ellipse at 50% 100%, rgba(245, 213, 71, 0.1) 0%, transparent 50%);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-note {
    margin-top: 1rem !important;
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 3rem 2rem;
    background: transparent;
    border-top: 1px solid var(--border-subtle);
}

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

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--accent-teal);
    color: var(--bg-primary);
    transform: translateY(-3px);
}

.whop-link {
    width: auto;
    padding: 0 1.25rem;
    border-radius: 22px;
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

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

.footer-nav a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--accent-teal);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .chat-images-container.chat-images-3col {
        grid-template-columns: 1fr 1fr;
    }
    
    .chat-images-container.chat-images-3col .public-channel-card {
        grid-column: span 2;
        max-width: 500px;
        justify-self: center;
    }
}

@media (max-width: 900px) {
    .telegram-mockup {
        grid-template-columns: 1fr;
    }
    
    .telegram-sidebar {
        display: none;
    }
    
    .signal-message {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0.75rem 1rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .btn-demo {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 7rem 1.5rem 3rem;
    }
    
    .benefits-box {
        padding: 1.5rem;
    }
    
    .benefit-item {
        font-size: 0.95rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .avatar {
        width: 36px;
        height: 36px;
    }
    
    .btn-primary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Additional mobile pricing adjustments */
    .pricing {
        padding: 2rem 1rem;
    }
    
    .pricing-card {
        min-width: 90% !important;
        padding: 1.5rem 1rem !important;
    }
    
    .pricing-price {
        font-size: 2rem !important;
    }
    
    .pricing-features li {
        font-size: 0.8rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-title {
    animation: fadeInUp 0.8s ease-out;
}

.hero-trial {
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-note {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Scroll Reveal */
.feature-card,
.benefits-box,
.pricing-card,
.faq-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card.visible,
.benefits-box.visible,
.pricing-card.visible,
.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================
   PLATFORM SELECTION MODAL
   ============================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

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

.modal-content {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--accent-teal);
    width: 90%;
    max-width: 420px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
    padding: 5px;
}

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

.modal-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.modal-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.platform-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1.25rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.platform-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.telegram-btn {
    background: #0088cc;
    color: white;
    border: 2px solid transparent;
}

.telegram-btn:hover {
    background: #0099e6;
    box-shadow: 0 10px 25px -5px rgba(0, 136, 204, 0.4);
}

.whop-btn {
    background: #FF6243;
    color: white;
    border: 2px solid transparent;
}

.whop-btn:hover {
    background: #ff7a5c;
    box-shadow: 0 10px 25px -5px rgba(255, 98, 67, 0.4);
}

.platform-icon {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}

/* Modal Divider */
.modal-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    gap: 1rem;
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.modal-divider span {
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Public Channel Modal Button */
.public-channel-modal-btn {
    background: transparent;
    color: #0088cc;
    border: 2px solid #0088cc;
}

.public-channel-modal-btn:hover {
    background: rgba(0, 136, 204, 0.1);
    box-shadow: 0 10px 25px -5px rgba(0, 136, 204, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .modal-content {
        padding: 2rem 1.5rem;
    }
}


/* ============================================
   TESTIMONIALS SECTION (MARQUEE)
   ============================================ */

.testimonials-section {
    padding: 3rem 0;
    background: transparent;
    overflow: hidden;
}

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

.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    /* Add gradient masks for fading edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-row {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.marquee-row.left-to-right {
    animation: scroll-right 40s linear infinite;
}

.marquee-row.right-to-left {
    animation: scroll-left 40s linear infinite;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.5rem;
    width: 320px;
    flex-shrink: 0;
    transition: var(--transition-medium);
}

.testimonial-card:hover {
    border-color: var(--accent-teal);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

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

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-elevated);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 0.95rem;
    line-height: 1.2;
    margin-bottom: 2px;
}

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

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

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

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

/* Premium glow pulse animation */
@keyframes premiumGlow {
    0%, 100% {
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.6),
            0 0 25px rgba(168, 85, 247, 0.25),
            0 0 50px rgba(168, 85, 247, 0.12),
            0 0 80px rgba(245, 213, 71, 0.06),
            inset 0 0 15px rgba(168, 85, 247, 0.06);
    }
    50% {
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.6),
            0 0 30px rgba(168, 85, 247, 0.3),
            0 0 60px rgba(168, 85, 247, 0.15),
            0 0 90px rgba(245, 213, 71, 0.08),
            inset 0 0 18px rgba(168, 85, 247, 0.08);
    }
}

/* Subtle float animation for depth */
@keyframes subtleFloat {
    0%, 100% {
        transform: scale(1.05) translateY(-8px);
    }
    50% {
        transform: scale(1.06) translateY(-10px);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        width: 280px;
    }
}


/* ============================================
   PREVIEW GALLERY SECTION
   ============================================ */

.preview-gallery {
    padding: 3rem 2rem;
    background: transparent;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-header {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.gallery-title {
    margin-bottom: 0.5rem;
}

.gallery-stars {
    font-size: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
}

.mobile-mockup {
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    height: 600px; /* Fixed height for consistency */
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.4),
        0 0 0 0 rgba(168, 85, 247, 0);
    transition: 
        all 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        border-width 0.3s ease,
        background-image 0.5s ease;
    position: relative;
    transform: scale(1);
    filter: brightness(1) blur(0px);
    opacity: 1;
    z-index: 1;
    /* Subtle inner glow preparation */
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.03) 0%, transparent 50%);
}

/* Glassy highlight effect */
.mobile-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(245, 213, 71, 0.3) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

/* Hovered panel - Enlarged with neon glow */
.gallery-grid:hover .mobile-mockup:hover {
    transform: scale(1.05) translateY(-8px);
    border-color: var(--accent-teal);
    border-width: 2px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(168, 85, 247, 0.25),
        0 0 50px rgba(168, 85, 247, 0.12),
        0 0 80px rgba(245, 213, 71, 0.06),
        inset 0 0 15px rgba(168, 85, 247, 0.06),
        inset 0 1px 0 rgba(245, 213, 71, 0.15);
    filter: brightness(1.05) contrast(1.05);
    opacity: 1;
    z-index: 10;
    animation: premiumGlow 3s ease-in-out infinite;
    /* Enhanced inner glow */
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 50% 100%, rgba(245, 213, 71, 0.04) 0%, transparent 50%);
}

/* Optional: Subtle float animation on hover (uncomment if desired) */
/* .gallery-grid:hover .mobile-mockup:hover {
    animation: premiumGlow 3s ease-in-out infinite, subtleFloat 4s ease-in-out infinite;
} */

/* Glassy highlight on hover */
.gallery-grid:hover .mobile-mockup:hover::before {
    opacity: 1;
}

/* Dimmed non-hovered panels */
.gallery-grid:hover .mobile-mockup:not(:hover) {
    transform: scale(0.95);
    filter: brightness(0.75) blur(1px);
    opacity: 0.85;
    border-color: rgba(255, 255, 255, 0.08);
    border-width: 1px;
    box-shadow: 
        0 2px 12px rgba(0, 0, 0, 0.3),
        0 0 0 0 rgba(168, 85, 247, 0);
    /* Reduced inner glow */
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.01) 0%, transparent 50%);
}

/* Smooth transition for all panels when grid is hovered */
.gallery-grid:hover .mobile-mockup {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mockup-header {
    background: #0a0a0a;
    color: #ffffff;
    padding: 0 1.25rem;
    height: 52px;
    min-height: 52px;
    max-height: 52px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-sizing: border-box;
}

/* Enhanced header on hover */
.gallery-grid:hover .mobile-mockup:hover .mockup-header {
    background: #0f0f0f;
    border-bottom-color: #151515;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.mockup-content {
    padding: 1.5rem;
    flex: 1;
    overflow-y: auto;
    /* Custom Scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--accent-teal) transparent;
    position: relative;
    transition: all 0.4s ease;
}

/* Enhanced content brightness on hover */
.gallery-grid:hover .mobile-mockup:hover .mockup-content {
    filter: brightness(1.05);
}

/* Dimmed content for non-hovered panels */
.gallery-grid:hover .mobile-mockup:not(:hover) .mockup-content {
    filter: brightness(0.8);
}

.mockup-content.padding-0 {
    padding: 0;
}

/* Telegram Widget Styling */
.mockup-content iframe[src*="telegram.org"] {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    display: block;
}

/* Results Panel Styling */
.result-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-subtle);
}

.result-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
    text-align: center;
}

.result-stats .stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

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

.result-stats strong {
    font-size: 1.1rem;
}

/* Channel List Styling */
.mock-channel-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: background 0.2s;
}

.mock-channel-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.mock-channel-item.active {
    background: rgba(168, 85, 247, 0.1);
    border-left: 3px solid var(--accent-purple);
}

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

.mock-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mock-name {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.mock-msg {
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

/* Signals Styling */
.mock-message {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent-purple);
}

.mock-msg-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.mock-admin-tag {
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    color: var(--text-secondary);
}

.mock-msg-body p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.mock-msg-body strong {
    color: var(--text-primary);
}

.mock-msg-time {
    display: block;
    text-align: right;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Mobile Responsiveness for Gallery */
@media (max-width: 900px) {
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 2rem;
        margin-top: 2rem;
        /* Ensure full width scrolling */
        width: 100vw;
        margin-left: -2rem; /* Counteract section padding */
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .mobile-mockup {
        min-width: 75vw; /* Show 75% of card so next card peeks more */
        scroll-snap-align: center;
        margin-right: 0;
    }
    
    /* Disable hover effects on mobile for better touch experience */
    .gallery-grid:hover .mobile-mockup:hover {
        transform: scale(1);
        filter: brightness(1) contrast(1);
        animation: none;
    }
    
    .gallery-grid:hover .mobile-mockup:not(:hover) {
        transform: scale(1);
        filter: brightness(1) blur(0px);
        opacity: 1;
    }
    
    /* Hide scrollbar for cleaner look */
    .gallery-grid::-webkit-scrollbar {
        display: none;
    }
    .gallery-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    /* Scroll Arrows */
    .scroll-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: var(--bg-elevated);
        border: 1px solid var(--border-subtle);
        color: var(--text-primary);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        transition: all 0.2s;
        /* Only show if supported, often touch users don't need buttons but user asked for them */
        display: flex; 
    }

    .scroll-arrow:hover {
        background: var(--accent-purple);
        border-color: var(--accent-purple);
    }
    
    .scroll-arrow:active {
        transform: translateY(-50%) scale(0.9);
    }

    .scroll-arrow.prev {
        left: -10px;
    }

    .scroll-arrow.next {
        right: -10px;
    }
}

/* Default hide arrows and dots on desktop */
.scroll-arrow {
    display: none;
}

.gallery-dots {
    display: none;
}

/* ============================================
   GALLERY PAGINATION DOTS (Mobile Only)
   ============================================ */

@media (max-width: 900px) {
    .gallery-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 1.5rem;
        padding: 0.5rem 0;
    }
    
    .gallery-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }
    
    .gallery-dot:hover {
        background: rgba(255, 255, 255, 0.5);
        transform: scale(1.1);
    }
    
    .gallery-dot.active {
        background: var(--accent-yellow);
        border-color: var(--accent-yellow);
        transform: scale(1.2);
        box-shadow: 0 0 10px rgba(245, 213, 71, 0.5);
    }
    
    /* Scroll Arrow Pulse Animation */
    @keyframes arrowPulse {
        0%, 100% {
            transform: translateY(-50%) scale(1);
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        50% {
            transform: translateY(-50%) scale(1.15);
            box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
        }
    }
    
    @keyframes arrowBounceLeft {
        0%, 100% {
            transform: translateY(-50%) translateX(0);
        }
        50% {
            transform: translateY(-50%) translateX(-5px);
        }
    }
    
    @keyframes arrowBounceRight {
        0%, 100% {
            transform: translateY(-50%) translateX(0);
        }
        50% {
            transform: translateY(-50%) translateX(5px);
        }
    }
    
    .scroll-arrow.animate-pulse {
        animation: arrowPulse 1s ease-in-out 3;
        background: var(--accent-teal);
        border-color: var(--accent-teal);
    }
    
    .scroll-arrow.prev.animate-bounce {
        animation: arrowBounceLeft 0.6s ease-in-out 5;
    }
    
    .scroll-arrow.next.animate-bounce {
        animation: arrowBounceRight 0.6s ease-in-out 5;
    }
}

/* Trade Summary Table */
.trade-summary-container {
    padding: 1rem;
    color: var(--text-primary);
    background: var(--bg-card);
}

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

.trade-summary-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.summary-icon {
    font-size: 1.2rem;
}

.trade-summary-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
    white-space: nowrap; /* Prevent wrapping for cleaner look on small screens */
}

.trade-summary-table th,
.trade-summary-table td {
    padding: 0.75rem 0.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
}

.trade-summary-table th {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 1rem;
}

.trade-summary-table td:first-child,
.trade-summary-table th:first-child {
    text-align: left;
    padding-left: 0;
}

.trade-summary-table td:last-child,
.trade-summary-table th:last-child {
    padding-right: 0;
}

.trade-summary-table td:first-child {
    font-family: 'Courier New', monospace;
    color: var(--text-muted);
    font-weight: 600;
}

/* Highlight TP columns slightly */
.trade-summary-table td:nth-child(3),
.trade-summary-table td:nth-child(4),
.trade-summary-table td:nth-child(5),
.trade-summary-table td:nth-child(6) {
    color: var(--text-primary);
}

/* SL Column */

/* Utility */
.padding-0 {
    padding: 0 !important;
}


@media (max-width: 768px) {
    /* Chat images responsive */
    .chat-images-container,
    .chat-images-container.chat-images-3col {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .chat-image-box {
        max-width: 100%;
    }
    
    .public-channel-card {
        max-width: 100%;
        padding: 0.75rem;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        text-align: left;
    }
    
    .public-channel-card::before {
        display: none;
    }
    
    .public-channel-icon {
        margin-bottom: 0;
        flex-shrink: 0;
        display: flex;
        align-items: center;
    }
    
    .public-channel-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .public-channel-content {
        flex: 1;
        min-width: 0;
        display: block;
    }
    
    .public-channel-title {
        font-size: 0.9rem;
        margin-bottom: 0.1rem;
        text-align: left;
    }
    
    .public-channel-subtitle {
        font-size: 0.75rem;
        margin-bottom: 0;
        text-align: left;
    }
    
    .public-channel-desc {
        display: none;
    }
    
    .public-channel-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
        width: auto;
        flex-shrink: 0;
        gap: 0.25rem;
    }

    /* Horizontal scroll for Funding section cards */
    .funding-container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        gap: 12px;
        padding: 10px 5px;
        scroll-snap-type: x mandatory;
    }
    
    .funding-container .feature-card {
        min-width: 70%;
        flex-shrink: 0;
        scroll-snap-align: center;
    }

    /* Horizontal scroll for Features section cards */
    .features-container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        gap: 12px;
        padding: 10px 5px;
        scroll-snap-type: x mandatory;
    }
    
    .features-container .feature-card {
        min-width: 70%;
        flex-shrink: 0;
        scroll-snap-align: center;
    }

    /* Horizontal pricing cards */
    .pricing-cards {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto;
        padding: 10px 2rem !important;
        gap: 1rem !important;
        justify-content: flex-start;
        flex-wrap: nowrap !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-card {
        min-width: 85%;
        width: 85%;
        max-width: 400px;
        padding: 2rem 1.5rem !important;
        flex-shrink: 0;
        scroll-snap-align: center;
    }

    .pricing-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }
    
    .pricing-price {
        font-size: 2.5rem !important;
        margin-bottom: 0.5rem;
    }
    
    .pricing-period {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .pricing-features {
        margin-bottom: 1.5rem;
    }
    
    .pricing-features li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
        line-height: 1.4;
    }
    
    .pricing-card .btn-primary {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }
    
    /* Hide Live Signals Preview section on mobile */
    .signals-preview {
        display: none !important;
    }
}
