/* ORZAX HİSSE SOHBET — VIP Emerald & Champagne Gold Theme */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --emerald-deep: #030a06;
    --emerald-card: #091710;
    --gold-champagne: #d4af37;
    --gold-light: #f3e5ab;
    --emerald-glow: rgba(16, 185, 129, 0.15);
    --gold-glow: rgba(212, 175, 55, 0.2);
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--emerald-deep);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Luxurious gold & emerald gradient grid */
.luxury-grid {
    background-color: var(--emerald-deep);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 40%),
        linear-gradient(to right, rgba(212, 175, 55, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(212, 175, 55, 0.015) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
}

.font-luxury {
    font-family: 'Cinzel', serif;
}

/* Luxury card panel */
.panel-luxury {
    background: rgba(9, 23, 16, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}
.panel-luxury:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 45px rgba(16, 185, 129, 0.08);
}

/* Glowing Gold buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--gold-champagne) 0%, #b28d26 100%);
    color: var(--emerald-deep);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}
.btn-gold:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

.btn-luxury-outline {
    background: transparent;
    color: var(--gold-champagne);
    border: 2px solid rgba(212, 175, 55, 0.3);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.btn-luxury-outline:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold-champagne);
}

/* Custom sliders */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    outline: none;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold-champagne);
    box-shadow: 0 0 10px var(--gold-champagne);
    cursor: pointer;
    transition: transform 0.2s ease;
}
input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.25);
}

/* Whale Alert Ticker custom row styling */
.whale-row {
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
    transition: all 0.4s ease;
}
.whale-row:hover {
    background: rgba(212, 175, 55, 0.02);
}

/* Circular portfolio return chart progress gauge */
.chart-container {
    position: relative;
    width: 160px;
    height: 160px;
}
.circular-progress {
    transform: rotate(-90deg);
}
.circular-progress circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
}
.bg-circle {
    stroke: rgba(255, 255, 255, 0.03);
}
.fg-circle {
    stroke: var(--gold-champagne);
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    transition: stroke-dashoffset 0.8s ease;
}

/* FAQ panel */
.faq-ans {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

/* Sticky Footer on Mobile screens */
.sticky-footer-mobile {
    background: rgba(3, 10, 6, 0.95);
    border-top: 1px solid rgba(212, 175, 55, 0.25);
}

/* Stock Ticker row */
.ticker-wrapper {
    background: #020604;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.ticker-inner {
    display: inline-flex;
    animation: scroll-ticker 30s linear infinite;
    gap: 3rem;
}
@keyframes scroll-ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.tick-up { color: #10b981; }
.tick-down { color: #ef4444; }

/* Custom type rotation caret */
.caret-gold {
    border-right: 2px solid var(--gold-champagne);
    animation: blink-caret 0.8s step-end infinite;
}
@keyframes blink-caret {
    0%, 100% { border-color: transparent; }
    50% { border-color: var(--gold-champagne); }
}

/* Live joined Toast notification popup (bottom-left) */
.toast-popup {
    background: rgba(9, 23, 16, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    border-left: 3px solid var(--gold-champagne);
    transform: translateX(-110%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.toast-popup.visible {
    transform: translateX(0);
    opacity: 1;
}

/* Timeline vertical line */
.timeline-item {
    position: relative;
    padding-left: 2rem;
}
.timeline-item::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 24px;
    bottom: -24px;
    width: 1px;
    background: rgba(212, 175, 55, 0.1);
}
.timeline-item:last-child::after {
    display: none;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 4px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--emerald-deep);
    border: 2px solid var(--gold-champagne);
    box-shadow: 0 0 8px var(--gold-champagne);
}
