/* Arka plan gradyanı ve genel ayarlar */
body {
    background: linear-gradient(135deg, #f3e8ff 0%, #ffffff 50%, #e0e7ff 100%);
    background-attachment: fixed;
}
/* Gizli kaydırma çubuğu (Payouts listesi için) */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Otomatik yukarı kayma animasyonu */
@keyframes scrollUp {
    0% { transform: translateY(0%); }
    100% { transform: translateY(-50%); }
}

.animate-scroll {
    animation: scrollUp 20s linear infinite;
}

.animate-scroll:hover {
    animation-play-state: paused;
}

/* Yatay kayan yazı animasyonu */
@keyframes marqueeX {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.animate-marquee-x {
    animation: marqueeX 15s linear infinite;
    white-space: nowrap;
    display: inline-block;
}

.animate-marquee-x:hover {
    animation-play-state: paused;
}

/* FAQ Akordeon Animasyonu */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}
.faq-content.open {
    max-height: 300px;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(2px);
    z-index: 40;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.public-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 340px);
    height: 100vh;
    background: #ffffff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
    z-index: 50;
    padding: 1.25rem;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.public-mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

/* Rich text page content styles */
.page-content {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.75;
}
.page-content h1 { font-size: 2rem; font-weight: 800; color: #0f172a; margin: 2rem 0 1rem; }
.page-content h2 { font-size: 1.5rem; font-weight: 700; color: #1e293b; margin: 2rem 0 0.75rem; padding-bottom: 0.5rem; border-bottom: 1px solid #e2e8f0; }
.page-content h3 { font-size: 1.2rem; font-weight: 700; color: #1e293b; margin: 1.5rem 0 0.5rem; }
.page-content h4 { font-size: 1rem; font-weight: 700; color: #334155; margin: 1rem 0 0.4rem; }
.page-content p  { margin-bottom: 1rem; }
.page-content a  { color: #4f46e5; font-weight: 600; text-decoration: none; }
.page-content a:hover { text-decoration: underline; }
.page-content strong { color: #1e293b; font-weight: 700; }
.page-content em { font-style: italic; }
.page-content ul { list-style: disc; margin: 0.75rem 0 1rem 1.5rem; }
.page-content ol { list-style: decimal; margin: 0.75rem 0 1rem 1.5rem; }
.page-content li { margin-bottom: 0.4rem; }
.page-content blockquote { border-left: 4px solid #818cf8; padding: 0.75rem 1.25rem; background: #f8fafc; color: #64748b; border-radius: 0 0.75rem 0.75rem 0; margin: 1.25rem 0; font-style: italic; }
.page-content code { background: #f1f5f9; border-radius: 0.3rem; padding: 0.1em 0.35em; font-size: 0.85em; color: #4f46e5; }
.page-content pre { background: #1e293b; color: #e2e8f0; border-radius: 0.75rem; padding: 1.25rem; overflow-x: auto; margin: 1.25rem 0; font-size: 0.85rem; }
.page-content hr { border: none; border-top: 1px solid #e2e8f0; margin: 2rem 0; }
.page-content img { border-radius: 0.75rem; max-width: 100%; height: auto; margin: 1rem 0; }
.page-content table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; font-size: 0.85rem; }
.page-content th { background: #f1f5f9; font-weight: 700; color: #1e293b; padding: 0.6rem 1rem; text-align: left; border: 1px solid #e2e8f0; }
.page-content td { padding: 0.6rem 1rem; border: 1px solid #e2e8f0; }
.page-content tr:nth-child(even) td { background: #f8fafc; }

