body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
}
.font-serif {
    font-family: 'Playfair Display', serif;
}
.gold-text {
    color: #d4af37;
}
.gold-border {
    border-color: #d4af37;
}
.gold-bg {
    background-color: #d4af37;
}
.btn-premium {
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}
.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}
.glass-card {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.scroll-indicator {
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.ticker {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 40s linear infinite;
}
@keyframes ticker {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
#trading-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}
.page-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 100;
    overflow-y: auto;
    display: none;
    padding: 4rem 2rem;
    color: #ccc;
}
.page-modal-content h1 { font-size: 2.5rem; margin-bottom: 2rem; color: #d4af37; }
.page-modal-content h2 { font-size: 1.8rem; margin-top: 2rem; margin-bottom: 1rem; color: #fff; }
.page-modal-content p, .page-modal-content li { margin-bottom: 1rem; line-height: 1.8; }
.page-modal-close { position: fixed; top: 20px; right: 20px; font-size: 2rem; cursor: pointer; color: white; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}
.faq-arrow {
    transition: transform 0.3s ease;
}
.faq-question.active .faq-arrow {
    transform: rotate(180deg);
}
