* { 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; --ors-color: #FF6B35; }
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; }
.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; flex-wrap: wrap; gap: 12px; }
.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(--ors-color); }
.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(--ors-color); }
.nav-link.active::after { content: ''; position: absolute; bottom: -8px; left: 0; right: 0; height: 2px; background: var(--ors-color); border-radius: 2px; }
.header-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.solana-badge { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: linear-gradient(135deg, #9945FF, #14F195); color: white; border-radius: 20px; font-size: 13px; font-weight: 700; box-shadow: 0 4px 12px rgba(153, 69, 255, 0.3); }
.license-badge { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: rgba(16, 185, 129, 0.15); border: 1px solid rgba(16, 185, 129, 0.3); color: #10B981; border-radius: 20px; font-size: 11px; font-weight: 700; }
.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-dot { width: 8px; height: 8px; background: #EF4444; border-radius: 50%; animation: livePulse 1.5s infinite; }
@keyframes livePulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.2); } }
.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(--ors-color), #FFD700, #FF6B6B); -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(--ors-color); 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(--ors-color); }
.solana-tag { display: inline-block; padding: 6px 14px; background: rgba(153, 69, 255, 0.15); color: #9945FF; border: 1px solid rgba(153, 69, 255, 0.3); border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.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(--ors-color); border-radius: 4px; }
.crypto-table { width: 100%; min-width: 900px; 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: 600; font-family: 'Courier New', monospace; }
.degisim-badge { display: inline-flex; align-items: center; gap: 4px; padding: 6px 12px; border-radius: 6px; font-weight: 700; font-size: 13px; white-space: nowrap; }
.degisim-badge.pozitif { color: var(--pozitif); background: rgba(16, 185, 129, 0.12); }
.degisim-badge.negatif { color: var(--negatif); background: rgba(239, 68, 68, 0.12); }
.degisim-icon { font-size: 10px; }
.td-mcap, .td-volume { 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(--negatif); }
.btn-sat:hover { background: #DC2626; transform: translateY(-1px); }
.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(--ors-color); }
.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(--ors-color); font-size: 22px; margin: 32px 0 16px; padding-bottom: 8px; border-bottom: 2px solid var(--border); }
.article-content h3:first-child { margin-top: 0; }
.article-content p { color: var(--text-secondary); font-size: 15px; margin-bottom: 16px; text-align: justify; }
.article-content strong { color: var(--text-primary); font-weight: 600; }
.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(--ors-color); 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(--ors-color), #FFD700); 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, 107, 53, 0.3); }
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(255, 107, 53, 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 ease; }
.faq-item.active { border-color: var(--ors-color); box-shadow: 0 4px 20px rgba(255, 107, 53, 0.08); }
.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 ease; }
.faq-question:hover { color: var(--ors-color); }
.faq-q-text { flex: 1; }
.faq-toggle { font-size: 24px; font-weight: 300; color: var(--ors-color); transition: transform 0.3s ease; 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: 600px; padding: 0 24px 20px; }
.faq-answer p { color: var(--text-secondary); line-height: 1.8; font-size: 14px; margin: 0 0 12px 0; }
.leverage-section { padding: 80px 0; background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%); position: relative; overflow: hidden; }
.leverage-header { text-align: center; margin-bottom: 48px; position: relative; z-index: 1; }
.leverage-badge { display: inline-block; padding: 6px 16px; background: linear-gradient(135deg, #10B981, #059669); color: white; border-radius: 20px; font-size: 12px; font-weight: 700; letter-spacing: 1px; margin-bottom: 16px; box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3); }
.leverage-subtitle { color: var(--text-secondary); font-size: 16px; max-width: 700px; margin: 16px auto 0; line-height: 1.6; }
.leverage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; position: relative; z-index: 1; }
.leverage-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px 24px; text-align: center; transition: all 0.3s; position: relative; overflow: hidden; }
.leverage-card:hover { transform: translateY(-8px); border-color: var(--ors-color); box-shadow: 0 12px 32px rgba(255, 107, 53, 0.1); }
.leverage-card.featured { border-color: var(--ors-color); background: linear-gradient(135deg, var(--bg-card), rgba(255, 107, 53, 0.05)); }
.leverage-card-badge { position: absolute; top: 12px; right: 12px; padding: 4px 10px; background: var(--ors-color); color: #000; border-radius: 12px; font-size: 10px; font-weight: 700; letter-spacing: 0.5px; }
.leverage-card-icon { font-size: 48px; margin-bottom: 12px; }
.leverage-card-time { display: inline-block; padding: 4px 12px; background: rgba(255, 107, 53, 0.15); color: var(--ors-color); border-radius: 12px; font-size: 12px; font-weight: 700; margin-bottom: 16px; }
.leverage-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--text-primary); }
.leverage-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.leverage-features { list-style: none; text-align: left; padding: 0; }
.leverage-features li { color: var(--text-secondary); font-size: 13px; padding: 6px 0; border-top: 1px solid var(--border); }
.leverage-features li:first-child { border-top: none; }
.leverage-highlight { background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 215, 0, 0.05)); border: 1px solid rgba(255, 107, 53, 0.3); border-radius: 20px; padding: 40px; display: flex; gap: 32px; align-items: center; position: relative; z-index: 1; }
.highlight-icon { font-size: 64px; flex-shrink: 0; }
.highlight-content h3 { font-size: 24px; margin-bottom: 12px; color: var(--ors-color); }
.highlight-content p { color: var(--text-secondary); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.highlight-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.highlight-stat { text-align: center; padding: 12px; background: rgba(0, 0, 0, 0.2); border-radius: 10px; }
.highlight-stat-value { font-size: 24px; font-weight: 800; color: var(--ors-color); margin-bottom: 4px; }
.highlight-stat-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.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(--ors-color); 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(--ors-color); 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; }
.news-link { color: var(--ors-color); text-decoration: none; font-size: 13px; font-weight: 600; transition: all 0.3s; }
.news-link:hover { color: #FFD700; }
.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(--ors-color); 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 p { color: var(--text-secondary); line-height: 1.6; font-size: 14px; margin: 12px 0; }
.comment-footer { display: flex; align-items: center; gap: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.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; }
.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(--ors-color); }
.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(--ors-color); }
.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(--ors-color); background: rgba(255, 107, 53, 0.05); }
.menu-item.active { color: var(--ors-color); }
.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, 107, 53, 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(--ors-color); 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(--ors-color); }
.scroll-top { position: fixed; bottom: 100px; right: 24px; width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--ors-color), #FFD700); border: none; cursor: pointer; box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4); z-index: 998; opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.8); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.scroll-top:hover { transform: translateY(-4px) scale(1.1); box-shadow: 0 12px 32px rgba(255, 107, 53, 0.6); }
.scroll-top-svg { width: 24px; height: 24px; color: #000; position: relative; z-index: 1; animation: arrowBounce 2s infinite; }
@keyframes arrowBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
.chart-section { padding: 60px 0; background: var(--bg-secondary); }
.chart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; }
.chart-title-group { flex: 1; }
.chart-subtitle { color: var(--text-muted); font-size: 13px; margin-top: 6px; }
.chart-controls { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.chart-select { padding: 10px 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; color: var(--text-primary); font-size: 14px; font-weight: 600; cursor: pointer; min-width: 200px; }
.chart-select:focus { outline: none; border-color: var(--accent-gold); }
.chart-time-info { display: flex; align-items: center; gap: 8px; padding: 10px 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; }
.chart-time-label { color: var(--text-muted); font-size: 12px; }
.chart-time-value { color: var(--accent-gold); font-weight: 700; font-family: 'Courier New', monospace; }
.chart-wrapper { position: relative; background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; padding: 16px; }
#priceChart { width: 100%; height: 550px; display: block; }
.chart-overlay { position: absolute; top: 16px; left: 16px; right: 16px; display: flex; justify-content: space-between; align-items: flex-start; pointer-events: none; flex-wrap: wrap; gap: 12px; }
.chart-current-price { background: rgba(11, 14, 23, 0.85); backdrop-filter: blur(10px); padding: 12px 16px; border-radius: 10px; border: 1px solid var(--border); display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.price-label { color: var(--text-muted); font-size: 12px; }
.price-value { color: var(--accent-gold); font-size: 20px; font-weight: 800; font-family: 'Courier New', monospace; }
.price-change { padding: 4px 10px; border-radius: 6px; font-size: 13px; font-weight: 700; font-family: 'Courier New', monospace; }
.price-change.pozitif { background: rgba(16, 185, 129, 0.15); color: #10B981; }
.price-change.negatif { background: rgba(239, 68, 68, 0.15); color: #EF4444; }
.chart-legend { display: flex; justify-content: center; gap: 24px; margin-top: 16px; flex-wrap: wrap; }
.legend-item { display: flex; align-items: center; gap: 8px; color: var(--text-secondary); font-size: 12px; }
.legend-color { width: 16px; height: 16px; border-radius: 4px; }
@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; } .leverage-grid { grid-template-columns: 1fr; } .leverage-highlight { flex-direction: column; text-align: center; padding: 32px 24px; } .highlight-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .container { padding: 0 16px; } .header { top: 76px; padding: 12px 0; } .nav { display: none; } .header-actions .solana-badge { display: none; } .header-actions .license-badge { 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: 18px; } .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; } .news-title { font-size: 15px; } .footer { padding: 40px 0 30px; } .footer-grid { grid-template-columns: 1fr; gap: 30px; } .bottom-menu { padding: 8px 0; } .menu-svg { width: 20px; height: 20px; } .menu-label { font-size: 9px; } .menu-item { padding: 6px 6px; } .scroll-top { bottom: 90px; right: 16px; width: 48px; height: 48px; } .scroll-top-svg { width: 20px; height: 20px; } .leverage-section { padding: 60px 0; } .leverage-subtitle { font-size: 14px; } .highlight-content h3 { font-size: 20px; } .highlight-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; } .highlight-stat-value { font-size: 20px; } .live-indicator { font-size: 10px; padding: 4px 10px; } .chart-wrapper { padding: 8px; } #priceChart { height: 350px; } .chart-overlay { top: 8px; left: 8px; right: 8px; } .chart-current-price { padding: 8px 12px; } .price-value { font-size: 16px; } .chart-time-info { padding: 6px 10px; font-size: 12px; } }
@media (max-width: 480px) { .hero-title { font-size: 26px; } .hero-stats { grid-template-columns: 1fr; } .stat-value { font-size: 20px; } .crypto-table { min-width: 800px; } .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; } .coin-symbol { font-size: 11px; } .btn-al, .btn-sat { padding: 6px 10px; font-size: 12px; } .article-content { padding: 20px; } .article-content h3 { font-size: 17px; } #priceChart { height: 280px; } }
html { scroll-behavior: smooth; scroll-padding-top: 200px; }
section[id] { scroll-margin-top: 200px; }
#top { scroll-margin-top: 0; }
.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-indicator-small .live-dot { width: 6px; height: 6px; }
.current-coin { background: rgba(255, 107, 53, 0.05); border-left: 3px solid var(--ors-color); }
.gizlilik-wrapper { background: var(--bg-card); border-radius: 16px; border: 1px solid var(--border); overflow: hidden; max-width: 1000px; margin: 0 auto; transition: all 0.3s ease; }
.gizlilik-wrapper.active { border-color: var(--accent-gold); box-shadow: 0 4px 20px rgba(255, 215, 0, 0.08); }
.gizlilik-header { width: 100%; padding: 24px 32px; background: transparent; border: none; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: all 0.3s ease; text-align: left; }
.gizlilik-header:hover { background: rgba(255, 215, 0, 0.03); }
.gizlilik-toggle { color: var(--accent-gold); font-size: 28px; font-weight: 300; transition: transform 0.3s ease; flex-shrink: 0; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; user-select: none; }
.gizlilik-wrapper.active .gizlilik-toggle { transform: rotate(45deg); }
.gizlilik-content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.gizlilik-wrapper.active .gizlilik-content { max-height: 2500px; }
a { color: #3B82F6; text-decoration: none; transition: color 0.3s ease, border-color 0.3s ease; }
a:hover { color: #60A5FA; text-decoration: underline; }
.link-mavi { color: #3B82F6; text-decoration: none; border-bottom: 1px dashed rgba(59, 130, 246, 0.3); transition: all 0.3s ease; }
.link-mavi:hover { color: #60A5FA; border-bottom-color: #60A5FA; text-decoration: none; }
.bg-dark a { color: #60A5FA; }
.bg-dark a:hover { color: #93BBFC; }