* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
:root { --bg-primary: #0B0E17; --bg-secondary: #131826; --bg-card: #1A1F2E; --bg-hover: #242B3D; --text-primary: #FFFFFF; --text-secondary: #9CA3AF; --text-muted: #6B7280; --accent-gold: #FFD700; --accent-blue: #3B82F6; --pozitif: #10B981; --negatif: #EF4444; --border: #2A3142; }
body { background: var(--bg-primary); color: var(--text-primary); min-height: 100vh; overflow-x: hidden; padding-bottom: 80px; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.story-bar { position: sticky; top: 0; z-index: 1000; background: var(--bg-secondary); border-bottom: 1px solid var(--border); padding: 10px 0; overflow: hidden; width: 100%; }
.story-track {
    display: flex;
    gap: 16px;
    animation: storyScroll 60s linear infinite;
    width: max-content;
}

@keyframes storyScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.story-item { flex-shrink: 0; width: 220px; height: 70px; border-radius: 12px; padding: 12px 16px; display: flex; flex-direction: column; justify-content: center; color: white; cursor: pointer; transition: transform 0.3s; box-shadow: 0 4px 12px rgba(0,0,0,0.3); text-decoration: none; }
.story-item:hover { transform: scale(1.05); }
.story-baslik { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.story-metin { font-size: 12px; opacity: 0.9; }
@keyframes storyScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.header { background: var(--bg-secondary); border-bottom: 1px solid var(--border); padding: 16px 0; position: sticky; top: 90px; z-index: 900; backdrop-filter: blur(10px); }
.header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 28px; }
.logo-text { font-size: 22px; font-weight: 800; color: var(--text-primary); }
.logo-highlight { color: var(--accent-gold); }
.nav { display: flex; gap: 32px; }
.nav-link { color: var(--text-secondary); text-decoration: none; font-weight: 500; transition: color 0.3s; position: relative; }
.nav-link:hover, .nav-link.active { color: var(--accent-gold); }
.nav-link.active::after { content: ''; position: absolute; bottom: -8px; left: 0; right: 0; height: 2px; background: var(--accent-gold); border-radius: 2px; }
.header-actions { display: flex; gap: 12px; }
.hero { padding: 60px 0; background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%); }
.hero-title { font-size: 56px; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.gradient-text { background: linear-gradient(135deg, var(--accent-gold), #FF6B6B, #4ECDC4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 18px; color: var(--text-secondary); margin-bottom: 40px; max-width: 600px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.stat-box { background: var(--bg-card); padding: 24px; border-radius: 16px; border: 1px solid var(--border); transition: all 0.3s; }
.stat-box:hover { border-color: var(--accent-gold); transform: translateY(-4px); }
.stat-label { color: var(--text-secondary); font-size: 13px; margin-bottom: 8px; }
.stat-value { font-size: 28px; font-weight: 700; color: var(--accent-gold); }
.crypto-section { padding: 60px 0; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.section-title { font-size: 32px; font-weight: 700; }
.section-title.center { text-align: center; margin-bottom: 40px; }
.section-info { color: var(--text-muted); font-size: 14px; }
.table-wrapper { background: var(--bg-card); border-radius: 16px; border: 1px solid var(--border); overflow: hidden; }
.table-scroll { overflow-x: auto; overflow-y: hidden; max-width: 100%; }
.table-scroll::-webkit-scrollbar { height: 8px; }
.table-scroll::-webkit-scrollbar-track { background: var(--bg-secondary); }
.table-scroll::-webkit-scrollbar-thumb { background: var(--accent-gold); border-radius: 4px; }
.crypto-table { width: 100%; min-width: 800px; border-collapse: separate; border-spacing: 0; }
.crypto-table thead { background: var(--bg-secondary); }
.crypto-table th { padding: 16px 20px; text-align: left; font-size: 13px; color: var(--text-secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 2px solid var(--border); white-space: nowrap; position: sticky; top: 0; background: var(--bg-secondary); }
.crypto-table td { padding: 18px 20px; font-size: 14px; vertical-align: middle; border-bottom: 1px solid var(--border); white-space: nowrap; }
.crypto-table tbody tr:last-child td { border-bottom: none; }
.crypto-row { transition: background 0.3s; }
.crypto-row:hover { background: var(--bg-hover); }
.td-sira { color: var(--text-muted); font-weight: 600; width: 50px; }
.coin-info { display: flex; align-items: center; gap: 12px; }
.coin-logo { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; color: white; flex-shrink: 0; }
.coin-name { font-weight: 600; font-size: 15px; }
.coin-symbol { color: var(--text-muted); font-size: 12px; margin-top: 2px; }
.td-fiyat { font-weight: 500; color: var(--text-secondary); }
.td-islem { display: flex; align-items: center; gap: 6px; flex-wrap: nowrap; }
.btn-al, .btn-sat { padding: 8px 14px; border-radius: 6px; border: none; font-weight: 600; cursor: pointer; font-size: 13px; transition: all 0.3s; text-decoration: none; color: white; display: inline-block; }
.btn-al { background: var(--pozitif); }
.btn-al:hover { background: #059669; transform: translateY(-1px); }
.btn-sat { background: var(--accent-gold); color: #000; }
.btn-sat:hover { background: #FFA500; transform: translateY(-1px); }
.btn-incele { padding: 8px 14px; border-radius: 6px; background: var(--accent-gold); color: #000; font-weight: 600; font-size: 13px; text-decoration: none; transition: all 0.3s; display: inline-block; }
.btn-incele:hover { background: #FFA500; transform: translateY(-1px); }
.borsa-badge { display: inline-block; padding: 4px 8px; border-radius: 4px; font-size: 10px; font-weight: 700; color: #000; margin-left: 4px; text-transform: uppercase; }
.solana-tag { display: inline-block; padding: 6px 14px; background: rgba(255, 215, 0, 0.15); color: var(--accent-gold); border: 1px solid rgba(255, 215, 0, 0.3); border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.features { padding: 80px 0; background: var(--bg-secondary); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card { background: var(--bg-card); padding: 32px; border-radius: 16px; border: 1px solid var(--border); text-align: center; transition: all 0.3s; }
.feature-card:hover { transform: translateY(-8px); border-color: var(--accent-gold); }
.feature-icon { font-size: 48px; margin-bottom: 16px; }
.feature-card h3 { font-size: 20px; margin-bottom: 12px; }
.feature-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
.article-section { padding: 80px 0; background: var(--bg-primary); }
.article-content { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 48px; max-width: 1000px; margin: 0 auto; line-height: 1.8; }
.article-content h3 { color: var(--accent-gold); font-size: 24px; font-weight: 700; margin: 40px 0 16px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.article-content h3:first-child { margin-top: 0; }
.article-content h4 { color: #3B82F6; font-size: 18px; font-weight: 600; margin: 24px 0 12px; }
.article-content p { color: var(--text-secondary); font-size: 15px; margin-bottom: 16px; line-height: 1.8; }
.article-content p strong { color: var(--text-primary); }
.article-content strong { color: var(--text-primary); font-weight: 600; }
.article-content ul { color: var(--text-secondary); padding-left: 24px; margin-bottom: 16px; line-height: 2; }
.article-content ul li { margin-bottom: 4px; }
.tip-box { padding: 16px 20px; border-radius: 10px; margin: 16px 0; border-left: 4px solid; }
.tip-box p { margin: 0; color: var(--text-secondary); }
.tip-box p strong { color: var(--text-primary); }
.tip-box .icon { margin-right: 6px; }
.tip-box.gold { background: rgba(255, 215, 0, 0.06); border-left-color: var(--accent-gold); }
.tip-box.green { background: rgba(16, 185, 129, 0.06); border-left-color: var(--pozitif); }
.tip-box.red { background: rgba(239, 68, 68, 0.06); border-left-color: var(--negatif); }
.tip-box.blue { background: rgba(59, 130, 246, 0.06); border-left-color: #3B82F6; }
.warning-box { background: rgba(239, 68, 68, 0.08); padding: 20px; border-radius: 12px; border-left: 4px solid var(--negatif); margin: 16px 0; }
.warning-box p { margin: 0 0 8px 0; color: var(--negatif); font-weight: 700; }
.warning-box ul { margin: 0; padding-left: 20px; color: var(--text-secondary); }
.warning-box ul li { margin-bottom: 4px; }
.warning-box ul li strong { color: var(--text-primary); }
.cta-box { background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card)); padding: 36px 28px; border-radius: 16px; margin-top: 32px; text-align: center; border: 1px solid var(--border); }
.cta-title { color: var(--accent-gold); font-size: 28px; font-weight: 800; margin: 0; }
.cta-desc { color: var(--text-secondary); font-size: 16px; margin: 12px 0 24px; }
.cta-button { display: inline-block; background: linear-gradient(135deg, var(--accent-gold), #FFA500); color: #000; padding: 16px 52px; border-radius: 30px; font-weight: 700; font-size: 16px; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3); }
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(255, 215, 0, 0.5); }
.faq-section { padding: 80px 0; background: var(--bg-secondary); }
.faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: all 0.3s; }
.faq-item.active { border-color: var(--accent-gold); }
.faq-question { width: 100%; padding: 20px 24px; background: transparent; border: none; color: var(--text-primary); font-size: 16px; font-weight: 600; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: all 0.3s; }
.faq-question:hover { color: var(--accent-gold); }
.faq-q-text { flex: 1; }
.faq-toggle { font-size: 24px; font-weight: 300; color: var(--accent-gold); transition: transform 0.3s; flex-shrink: 0; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 24px; }
.faq-item.active .faq-answer { max-height: 500px; padding: 0 24px 20px; }
.faq-answer p { color: var(--text-secondary); line-height: 1.7; font-size: 14px; }
.news-section { padding: 80px 0; background: var(--bg-primary); }
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.news-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; display: flex; gap: 16px; transition: all 0.3s; }
.news-card:hover { border-color: var(--accent-gold); transform: translateY(-4px); }
.news-icon { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
.news-content { flex: 1; min-width: 0; }
.news-meta { display: flex; gap: 8px; font-size: 12px; color: var(--text-muted); margin-bottom: 8px; flex-wrap: wrap; }
.news-source { color: var(--accent-gold); font-weight: 600; }
.news-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; color: var(--text-primary); }
.news-summary { color: var(--text-secondary); font-size: 13px; line-height: 1.6; margin-bottom: 12px; }
.comments-section { padding: 80px 0; background: var(--bg-primary); }
.comments-subtitle { text-align: center; color: var(--text-secondary); font-size: 15px; margin-bottom: 40px; }
.comments-list { display: flex; flex-direction: column; gap: 16px; max-width: 900px; margin: 0 auto 32px; }
.comment-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 20px; transition: all 0.3s; }
.comment-card:hover { border-color: var(--accent-gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); }
.comment-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.comment-avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; color: white; flex-shrink: 0; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); }
.comment-meta { flex: 1; }
.comment-author { font-weight: 700; font-size: 15px; color: var(--text-primary); }
.comment-date { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.comment-rating { display: flex; gap: 2px; }
.star-icon { color: #4B5563; font-size: 18px; transition: color 0.2s; }
.star-icon.filled { color: #FFD700; text-shadow: 0 0 8px rgba(255, 215, 0, 0.5); }
.comment-body { margin-bottom: 12px; }
.comment-body p { color: var(--text-secondary); line-height: 1.6; font-size: 14px; }
.comment-footer { display: flex; align-items: center; gap: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.btn-like { background: transparent; border: 1px solid var(--border); color: var(--text-secondary); padding: 6px 12px; border-radius: 20px; cursor: pointer; font-size: 13px; display: flex; align-items: center; gap: 6px; transition: all 0.2s; }
.btn-like:hover { border-color: var(--accent-gold); color: var(--accent-gold); background: rgba(255, 215, 0, 0.05); }
.comment-coin-badge { background: var(--bg-secondary); color: var(--accent-gold); padding: 4px 10px; border-radius: 12px; font-size: 11px; font-weight: 700; border: 1px solid var(--border); margin-left: auto; }
.btn-load-more { display: block; margin: 0 auto; padding: 12px 32px; background: linear-gradient(135deg, var(--accent-gold), #FFA500); color: #000; border: none; border-radius: 25px; font-weight: 700; font-size: 14px; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3); }
.btn-load-more:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255, 215, 0, 0.5); }
.comment-form-wrapper { max-width: 700px; margin: 48px auto 0; background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.form-title { font-size: 22px; margin-bottom: 24px; color: var(--text-primary); text-align: center; }
.comment-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.form-group input, .form-group textarea { padding: 12px 14px; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 8px; color: var(--text-primary); font-size: 14px; font-family: inherit; transition: all 0.3s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent-gold); box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.star-rating { display: flex; gap: 4px; font-size: 28px; }
.star-rating .star { cursor: pointer; color: #4B5563; transition: all 0.2s; user-select: none; }
.star-rating .star:hover, .star-rating .star.hover, .star-rating .star.selected { color: #FFD700; transform: scale(1.1); text-shadow: 0 0 12px rgba(255, 215, 0, 0.6); }
.btn-submit { padding: 14px 28px; background: linear-gradient(135deg, var(--accent-gold), #FFA500); color: #000; border: none; border-radius: 8px; font-weight: 700; font-size: 15px; cursor: pointer; transition: all 0.3s; margin-top: 8px; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4); }
.form-notice { display: flex; gap: 12px; padding: 14px; background: rgba(59, 130, 246, 0.08); border-left: 3px solid #3B82F6; border-radius: 6px; margin-top: 8px; }
.notice-icon { font-size: 18px; flex-shrink: 0; }
.form-notice p { color: var(--text-secondary); font-size: 13px; line-height: 1.5; margin: 0; }
.form-notice strong { color: #3B82F6; }
.footer { background: var(--bg-secondary); padding: 60px 0 40px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-desc { color: var(--text-secondary); margin-top: 16px; line-height: 1.6; }
.footer-disclaimer { color: var(--text-muted); font-size: 12px; margin-top: 12px; padding: 10px; background: rgba(239, 68, 68, 0.05); border-left: 3px solid var(--negatif); border-radius: 4px; }
.footer-col h4 { margin-bottom: 16px; color: var(--accent-gold); }
.footer-col a { display: block; color: var(--text-secondary); text-decoration: none; margin-bottom: 10px; transition: color 0.3s; }
.footer-col a:hover { color: var(--accent-gold); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 14px; }
.bottom-menu { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(19, 24, 38, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid var(--border); display: flex; justify-content: space-around; padding: 8px 4px 12px; z-index: 999; box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3); }
.menu-item { display: flex; flex-direction: column; align-items: center; gap: 4px; text-decoration: none; color: var(--text-muted); padding: 8px 12px; border-radius: 12px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); flex: 1; position: relative; min-width: 0; }
.menu-item:hover { color: var(--accent-gold); background: rgba(255, 215, 0, 0.05); }
.menu-item.active { color: var(--accent-gold); }
.menu-svg { width: 24px; height: 24px; transition: all 0.3s; flex-shrink: 0; }
.menu-item.active .menu-svg { transform: scale(1.1); filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.5)); }
.menu-label { font-size: 10px; font-weight: 600; letter-spacing: 0.3px; white-space: nowrap; }
.menu-dot { position: absolute; bottom: 2px; width: 4px; height: 4px; border-radius: 50%; background: var(--accent-gold); opacity: 0; transform: scale(0); transition: all 0.3s; }
.menu-item.active .menu-dot { opacity: 1; transform: scale(1); box-shadow: 0 0 8px var(--accent-gold); }
.scroll-top { position: fixed; bottom: 90px; right: 24px; width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-gold), #FFA500); color: #000; border: none; font-size: 22px; font-weight: 700; cursor: pointer; box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4); z-index: 998; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s; }
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 8px 24px rgba(255, 215, 0, 0.6); }
.scroll-top-svg { width: 24px; height: 24px; color: #000; }
.live-indicator { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239, 68, 68, 0.3); color: #EF4444; border-radius: 20px; font-size: 11px; font-weight: 700; letter-spacing: 1px; }
.live-indicator-small { display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px; background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239, 68, 68, 0.3); color: #EF4444; border-radius: 12px; font-size: 10px; font-weight: 700; letter-spacing: 0.5px; margin-right: 8px; }
.live-dot { width: 8px; height: 8px; background: #EF4444; border-radius: 50%; animation: livePulse 1.5s infinite; }
.live-indicator-small .live-dot { width: 6px; height: 6px; }
@keyframes livePulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.2); } }
.coin-hero { padding: 60px 0 40px; border-bottom: 1px solid var(--border); }
.coin-hero-content { max-width: 900px; }
.coin-hero-header { display: flex; align-items: center; gap: 24px; margin-bottom: 20px; }
.coin-hero-logo { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 40px; font-weight: 700; color: white; flex-shrink: 0; box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.coin-hero-info { flex: 1; }
.coin-hero-name { font-size: 32px; font-weight: 800; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.coin-hero-symbol { color: var(--text-muted); font-size: 20px; font-weight: 600; }
.coin-hero-rank { background: var(--bg-card); padding: 4px 12px; border-radius: 20px; font-size: 14px; color: var(--accent-gold); border: 1px solid var(--border); }
.coin-hero-price { font-size: 24px; font-weight: 600; color: var(--text-secondary); margin: 12px 0; }
.coin-hero-ozet { color: var(--text-secondary); font-size: 16px; line-height: 1.6; margin: 20px 0; max-width: 700px; }
.coin-hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.current-coin { background: rgba(255, 215, 0, 0.05); border-left: 3px solid var(--accent-gold); }

@media (max-width: 1024px) { .hero-title { font-size: 44px; } .hero-stats { grid-template-columns: repeat(2, 1fr); } .features-grid { grid-template-columns: repeat(2, 1fr); } .footer-grid { grid-template-columns: repeat(2, 1fr); } .news-grid { grid-template-columns: 1fr; } .section-title { font-size: 28px; } .article-content { padding: 32px; } }
@media (max-width: 768px) { .container { padding: 0 16px; } .header { top: 76px; padding: 12px 0; } .nav { display: none; } .header-actions .btn-outline { display: none; } .logo-text { font-size: 18px; } .logo-icon { font-size: 22px; } .hero { padding: 40px 0; } .hero-title { font-size: 32px; } .hero-desc { font-size: 15px; } .hero-stats { grid-template-columns: 1fr 1fr; gap: 12px; } .stat-box { padding: 16px; } .stat-value { font-size: 22px; } .stat-label { font-size: 12px; } .crypto-section { padding: 40px 0; } .section-title { font-size: 24px; } .section-header { flex-direction: column; align-items: flex-start; } .features { padding: 60px 0; } .features-grid { grid-template-columns: 1fr; gap: 16px; } .feature-card { padding: 24px; } .article-section { padding: 60px 0; } .article-content { padding: 24px; } .article-content h3 { font-size: 20px; } .article-content p { font-size: 14px; } .faq-section { padding: 60px 0; } .faq-question { font-size: 14px; padding: 16px 20px; } .news-section { padding: 60px 0; } .news-card { flex-direction: column; padding: 20px; } .news-icon { width: 48px; height: 48px; font-size: 24px; } .footer { padding: 40px 0 30px; } .footer-grid { grid-template-columns: 1fr; gap: 30px; } .bottom-menu { padding: 6px 2px 10px; } .menu-svg { width: 20px; height: 20px; } .menu-label { font-size: 9px; } .menu-item { padding: 6px 6px; } .scroll-top { width: 44px; height: 44px; bottom: 90px; right: 16px; } .coin-hero-header { flex-direction: column; text-align: center; } .coin-hero-name { justify-content: center; } .coin-hero-price { font-size: 18px; } .coin-hero-actions { justify-content: center; } .form-row { grid-template-columns: 1fr; } .comment-form-wrapper { padding: 20px; } }
@media (max-width: 480px) { .hero-title { font-size: 26px; } .hero-stats { grid-template-columns: 1fr; } .stat-value { font-size: 20px; } .crypto-table { min-width: 700px; } .crypto-table th, .crypto-table td { padding: 12px 14px; font-size: 13px; } .coin-logo { width: 32px; height: 32px; font-size: 16px; } .coin-name { font-size: 13px; } .btn-al, .btn-sat, .btn-incele { padding: 6px 10px; font-size: 12px; } .article-content { padding: 16px; } .article-content h3 { font-size: 18px; } }
/* STORY BAR - RESİMLİ, YAZILAR ALTA */
.story-bar { position: sticky; top: 0; z-index: 1000; background: var(--bg-secondary); border-bottom: 1px solid var(--border); padding: 10px 0; overflow: hidden; width: 100%; }
.story-track { display: flex; gap: 12px; animation: storyScroll 60s linear infinite; width: max-content; }
.story-item { flex-shrink: 0; width: 160px; height: 200px; border-radius: 12px; display: flex; flex-direction: column; overflow: hidden; background: var(--bg-card); border: 1px solid var(--border); cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 4px 12px rgba(0,0,0,0.3); text-decoration: none; }
.story-item:hover { transform: scale(1.05); box-shadow: 0 8px 24px rgba(0,0,0,0.5); }
.story-img { width: 100%; height: 140px; object-fit: cover; display: block; background: var(--bg-secondary); }
.story-text { padding: 8px 12px; display: flex; flex-direction: column; justify-content: center; flex: 1; background: var(--bg-card); }
.story-baslik { font-weight: 700; font-size: 14px; color: var(--accent-gold); text-align: center; }
.story-metin { font-size: 12px; color: var(--text-secondary); text-align: center; }
@keyframes storyScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (max-width: 768px) { .story-item { width: 120px; height: 160px; } .story-img { height: 100px; } .story-baslik { font-size: 12px; } .story-metin { font-size: 10px; } .story-text { padding: 6px 8px; } }

/* COIN HERO */
.coin-hero { padding: 40px 0 30px; border-bottom: 1px solid var(--border); }
.coin-hero-content { max-width: 900px; }
.coin-hero-header { display: flex; align-items: center; gap: 20px; margin-bottom: 16px; }
.coin-hero-logo { width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 700; color: white; flex-shrink: 0; box-shadow: 0 4px 16px rgba(0,0,0,0.3); overflow: hidden; }
.coin-hero-logo img { width: 100%; height: 100%; object-fit: cover; }
.coin-hero-info { flex: 1; min-width: 0; }
.coin-hero-name { font-size: 28px; font-weight: 800; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.coin-hero-symbol { color: var(--text-muted); font-size: 18px; font-weight: 600; }
.coin-hero-rank { background: var(--bg-card); padding: 2px 12px; border-radius: 20px; font-size: 13px; color: var(--accent-gold); border: 1px solid var(--border); }
.coin-hero-price { font-size: 18px; font-weight: 500; color: var(--text-secondary); margin-top: 6px; }
.coin-hero-ozet { color: var(--text-secondary); font-size: 15px; line-height: 1.6; margin: 12px 0 16px; max-width: 700px; }
.coin-hero-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
@media (max-width: 768px) { .coin-hero-header { flex-direction: column; text-align: center; gap: 12px; } .coin-hero-name { justify-content: center; font-size: 22px; } .coin-hero-price { font-size: 16px; text-align: center; } .coin-hero-ozet { text-align: center; } .coin-hero-actions { justify-content: center; } .coin-hero-logo { width: 60px; height: 60px; font-size: 28px; } }

/* BAHİS FİRMALARI TABLOSU */
.crypto-table { width: 100%; border-collapse: collapse; min-width: 900px; }
.crypto-table thead { background: #1a2035; }
.crypto-table th { padding: 16px 20px; text-align: left; font-size: 12px; font-weight: 700; color: var(--accent-gold); text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 2px solid var(--accent-gold); white-space: nowrap; }
.crypto-table td { padding: 16px 20px; font-size: 14px; color: var(--text-primary); vertical-align: middle; border-bottom: 1px solid var(--border); }
.crypto-table tbody tr:hover { background: rgba(255, 215, 0, 0.05); }
.crypto-table tbody tr:last-child td { border-bottom: none; }

.td-sira { font-weight: 700; color: var(--text-muted); text-align: center; width: 60px; }
.coin-info { display: flex; align-items: center; gap: 14px; }
.coin-logo { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: white; flex-shrink: 0; overflow: hidden; background: transparent !important; }
.coin-name { font-weight: 700; font-size: 15px; white-space: nowrap; }
.coin-symbol { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.td-fiyat { color: var(--text-secondary); font-size: 13px; line-height: 1.5; white-space: normal; }

/* İŞLEM SÜTUNU - YAN YANA DURAN BUTONLAR */
.td-islem { display: flex !important; gap: 8px; align-items: center; justify-content: flex-start; flex-wrap: nowrap; white-space: nowrap; padding: 10px 16px !important; }

/* BUTONLAR - TEK SATIRDA, TAŞMAZ */
.td-islem .btn-incele, .td-islem .btn-al { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    padding: 8px 16px; 
    border-radius: 6px; 
    font-weight: 600; 
    font-size: 13px; 
    text-decoration: none; 
    transition: all 0.3s; 
    white-space: nowrap; 
    flex-shrink: 0; 
    min-width: 75px; 
    height: 36px; 
    border: none; 
    cursor: pointer; 
}

.td-islem .btn-incele { background: linear-gradient(135deg, var(--accent-gold), #FFA500); color: #000; }
.td-islem .btn-incele:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4); color: #000; }

.td-islem .btn-al { background: linear-gradient(135deg, #10B981, #059669); color: white; }
.td-islem .btn-al:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4); color: white; }

/* TABLO BAŞLIKLARI - SÜTUN GENİŞLİKLERİ */
.crypto-table th:nth-child(1) { width: 60px; text-align: center; }
.crypto-table th:nth-child(2) { width: auto; }
.crypto-table th:nth-child(3) { width: auto; }
.crypto-table th:nth-child(4) { width: 110px; text-align: center; }
.crypto-table th:nth-child(5) { width: 110px; text-align: center; }

.crypto-table td:nth-child(1) { text-align: center; }
.crypto-table td:nth-child(4) { text-align: center; }
.crypto-table td:nth-child(5) { text-align: center; }

.table-scroll { overflow-x: auto; }
.table-scroll::-webkit-scrollbar { height: 8px; }
.table-scroll::-webkit-scrollbar-thumb { background: var(--accent-gold); border-radius: 4px; }

.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.section-title { font-size: 28px; font-weight: 800; }
.section-info { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); }

.live-indicator-small { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239, 68, 68, 0.3); color: #EF4444; border-radius: 12px; font-size: 11px; font-weight: 700; }
.live-dot { width: 6px; height: 6px; background: #EF4444; border-radius: 50%; animation: livePulse 1.5s infinite; }
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

@media (max-width: 768px) { 
    .crypto-table { min-width: 700px; } 
    .td-islem .btn-incele, .td-islem .btn-al { padding: 5px 10px; font-size: 11px; min-width: 60px; height: 30px; }
    .crypto-table th { padding: 10px 12px; font-size: 10px; }
    .crypto-table td { padding: 10px 12px; font-size: 12px; }
    .td-islem { padding: 6px 8px !important; gap: 4px; }
}
/* TABLO İÇİNDEKİ BUTONLAR - ALT ÇİZGİ YOK */
.td-islem a,
.td-islem a:link,
.td-islem a:visited,
.td-islem a:hover,
.td-islem a:active {
    text-decoration: none !important;
    border-bottom: none !important;
    outline: none !important;
}

.td-islem .btn-incele,
.td-islem .btn-al {
    text-decoration: none !important;
    border-bottom: none !important;
}