/* ===== GENEL STİLLER ===== */
html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER BÖLÜMÜ ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: #00d4aa;
    text-decoration: none;
}

.logo i {
    font-size: 28px;
    color: #00d4aa;
}

nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: #b8b8b8;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #00d4aa;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #00d4aa;
    border-radius: 1px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.market-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #b8b8b8;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #666;
    animation: pulse 2s infinite;
}

.status-dot.active {
    background: #00d4aa;
}

.current-time {
    color: #b8b8b8;
    font-size: 12px;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.refresh-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #b8b8b8;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.refresh-btn:hover {
    background: rgba(0, 212, 170, 0.1);
    color: #00d4aa;
    transform: rotate(180deg);
}

.refresh-btn i {
    font-size: 16px;
}

.update-btn {
    background: #00d4aa;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.update-btn:hover {
    background: #00b894;
    transform: translateY(-1px);
}

.update-btn i {
    font-size: 14px;
}

/* ===== DASHBOARD BÖLÜMÜ ===== */
.dashboard-section {
    padding: 200px 0 200px;
    background: #0a0a0f;
    position: relative;
    overflow: hidden;
}

.dashboard-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 1;
}

/* Ana İçerik Layout */
.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Sol Panel */
.left-panel {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Hoş Geldin Bölümü */
.welcome-section {
    padding: 20px 0;
}

.welcome-section h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 16px;
}

.title-accent {
    width: 24px;
    height: 24px;
    background: #00d4aa;
    border-radius: 4px;
    display: inline-block;
}

.welcome-section p {
    font-size: 18px;
    color: #b8b8b8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.welcome-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.welcome-btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
    justify-content: center;
}

.welcome-btn.primary {
    background: #00d4aa;
    color: #ffffff;
}

.welcome-btn.primary:hover {
    background: #00b894;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 170, 0.3);
}

.welcome-btn.secondary {
    background: #2a2a2a;
    color: #ffffff;
    border: 1px solid #404040;
}

.welcome-btn.secondary:hover {
    background: #404040;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

/* Piyasa Durumu Bölümü */
.market-status-section {
    margin-top: 20px;
}

.market-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.market-status-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.market-status-section h3 i {
    color: #00d4aa;
    font-size: 20px;
}

.market-header p {
    color: #b8b8b8;
    font-size: 14px;
    margin: 0;
    text-align: right;
    max-width: 300px;
}

.market-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.market-card {
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid rgba(64, 64, 64, 0.3);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.market-card:hover {
    background: #404040;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.market-card i {
    font-size: 28px;
    min-width: 28px;
    background: #00d4aa;
    color: #000000;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.card-description {
    font-size: 14px;
    color: #b8b8b8;
    line-height: 1.5;
}

/* Sağ Panel */
.right-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: flex-start;
    margin-top: -40px;
}

/* İstatistikler Bölümü */
.stats-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid rgba(64, 64, 64, 0.3);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.stat-card:hover {
    background: #404040;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #00d4aa;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
}



/* ===== TÜM BIST HİSSELERİ BÖLÜMÜ ===== */
.stocks-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}



.stocks-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,212,170,0.05) 0%, transparent 50%, rgba(0,212,170,0.02) 100%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    letter-spacing: -0.5px;
}

.section-header h2 i {
    color: #00d4aa;
    font-size: 36px;
    background: linear-gradient(135deg, #00d4aa, #00b894);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 18px;
    color: #b8b8b8;
    margin: 0;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.stocks-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    background: rgba(42, 42, 42, 0.3);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(64, 64, 64, 0.3);
    backdrop-filter: blur(10px);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-group label {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group input,
.filter-group select {
    padding: 16px 20px;
    border: 2px solid rgba(64, 64, 64, 0.5);
    border-radius: 12px;
    background: rgba(26, 26, 26, 0.8);
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: #00d4aa;
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
    background: rgba(26, 26, 26, 0.9);
    transform: translateY(-2px);
}

.filter-group input::placeholder {
    color: #888;
    font-weight: 400;
    opacity: 1;
}

.filter-group input:focus::placeholder {
    opacity: 0.7;
}

.filter-group input:not(:placeholder-shown) {
    color: #ffffff;
}

/* Select box arrow düzeltme */
.filter-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 48px;
}

/* Arama kutusu temizleme butonu */
.clear-search-btn {
    transition: all 0.3s ease;
}

.clear-search-btn:hover {
    color: #ffffff !important;
    transform: translateY(-50%) scale(1.1) !important;
}

/* Arama kutusu placeholder düzeltmesi */
.filter-group input:focus::placeholder {
    opacity: 0.7;
}

.filter-group input:not(:focus):placeholder-shown::placeholder {
    opacity: 1;
}

/* Arama kutusu placeholder tam düzeltme */
#stock-search::placeholder {
    color: #888 !important;
    opacity: 1 !important;
    transition: opacity 0.3s ease;
}

#stock-search:focus::placeholder {
    opacity: 0.7 !important;
}

#stock-search:not(:focus):placeholder-shown::placeholder {
    opacity: 1 !important;
}

#stock-search:empty::placeholder {
    opacity: 1 !important;
}

.page-size-container {
    display: flex;
    gap: 12px;
    align-items: center;
}

.refresh-btn {
    background: linear-gradient(135deg, #00d4aa, #00b894);
    color: #000000;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.refresh-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
    background: linear-gradient(135deg, #00b894, #00d4aa);
}

.refresh-btn:active {
    transform: translateY(-1px);
}

/* ===== HİSSE VERİLERİ GÖRÜNTÜLEME ALANLARI ===== */
.stocks-view {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

/* Tablo Görünümü */
.stocks-table-container {
    background: rgba(42, 42, 42, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(64, 64, 64, 0.3);
    backdrop-filter: blur(10px);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stocks-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.stocks-table thead {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 184, 148, 0.1));
    border-bottom: 2px solid rgba(0, 212, 170, 0.2);
}

.stocks-table th {
    padding: 20px 16px;
    text-align: left;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
    border-bottom: 1px solid rgba(64, 64, 64, 0.5);
}

.stocks-table td {
    padding: 18px 16px;
    border-bottom: 1px solid rgba(64, 64, 64, 0.3);
    color: #ffffff;
    transition: all 0.3s ease;
}

/* Tablo ve kompakt görünümler için canlı saat etiketi */
.last-update-site-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #b8b8b8;
    font-size: 13px;
}

.last-update-site-time::before {
    content: '\f017'; /* fa-clock */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #00d4aa;
    font-size: 12px;
}

.stocks-table tbody tr {
    transition: all 0.3s ease;
}

.stocks-table tbody tr:hover {
    background: rgba(0, 212, 170, 0.05);
    transform: scale(1.01);
}

/* Kart Görünümü */
.stocks-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.stock-card {
    background: rgba(42, 42, 42, 0.3);
    border: 1px solid rgba(64, 64, 64, 0.3);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.stock-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 212, 170, 0.3);
}

.stock-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.stock-code {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
}

.stock-change {
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid;
}

.stock-change.positive {
    background: rgba(0, 212, 170, 0.1);
    color: #00d4aa;
    border-color: rgba(0, 212, 170, 0.3);
}

.stock-change.negative {
    background: rgba(255, 82, 82, 0.1);
    color: #ff6b6b;
    border-color: rgba(255, 82, 82, 0.3);
}

.stock-price {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.stock-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

.stock-detail {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.stock-detail-label {
    color: #b8b8b8;
}

.stock-detail-value {
    color: #ffffff;
    font-weight: 600;
}

/* Kompakt Görünüm */
.stocks-compact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stock-compact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(42, 42, 42, 0.3);
    border: 1px solid rgba(64, 64, 64, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.stock-compact-item:hover {
    background: rgba(42, 42, 42, 0.5);
    border-color: rgba(0, 212, 170, 0.3);
}

/* Pill tarzı yerine eski sade görünüm kullanılacak (üstteki sınıflar kaldırıldı) */

@media (max-width: 768px) {
    .last-update-site-time { display: none; }
}

/* Sayfalama */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.pagination-btn {
    padding: 12px 16px;
    border: 1px solid rgba(64, 64, 64, 0.5);
    background: rgba(42, 42, 42, 0.8);
    color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.pagination-btn:hover {
    background: rgba(0, 212, 170, 0.1);
    border-color: #00d4aa;
    color: #00d4aa;
}

.pagination-btn.active {
    background: #00d4aa;
    color: #000000;
    border-color: #00d4aa;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Yükleme Durumu */
.loading-state {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    color: #b8b8b8;
    font-size: 16px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(64, 64, 64, 0.3);
    border-top: 3px solid #00d4aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 16px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Boş Durum */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #b8b8b8;
}

.empty-state i {
    font-size: 48px;
    color: #666;
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 14px;
    color: #888;
}

/* ===== BORSA EĞİTİMİ BÖLÜMÜ ===== */
.education-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.education-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.education-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.education-section .section-header h2 {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4aa, #00b894);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.education-section .section-header h2 i {
    font-size: 36px;
    color: #00d4aa;
    -webkit-text-fill-color: #00d4aa;
}

.education-section .section-header p {
    font-size: 18px;
    color: #b8b8b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.education-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.education-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4aa, #00b894);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.education-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 170, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 212, 170, 0.1);
}

.education-card:hover::before {
    transform: scaleX(1);
}

.education-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 184, 148, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.education-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.education-card:hover .education-icon::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.education-icon i {
    font-size: 32px;
    color: #00d4aa;
    z-index: 2;
    position: relative;
}

.education-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.education-card p {
    font-size: 16px;
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 24px;
}

.education-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.topic {
    background: rgba(0, 212, 170, 0.1);
    color: #00d4aa;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 170, 0.2);
    transition: all 0.3s ease;
}

.education-card:hover .topic {
    background: rgba(0, 212, 170, 0.2);
    border-color: rgba(0, 212, 170, 0.4);
    transform: translateY(-1px);
}

.education-btn {
    width: 100%;
    background: linear-gradient(135deg, #00d4aa, #00b894);
    color: #000000;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.education-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.education-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
}

.education-btn:hover::before {
    left: 100%;
}

.education-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.education-btn:hover i {
    transform: translateX(4px);
}

/* Terimler Sözlüğü */
.glossary-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.glossary-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.glossary-section .section-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.glossary-section .section-header h3 i {
    color: #00d4aa;
}

.glossary-section .section-header p {
    font-size: 16px;
    color: #b8b8b8;
}

/* Modern Glossary Controls */
.glossary-controls {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    background: rgba(26, 26, 46, 0.6);
    padding: 24px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.glossary-search {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.glossary-search input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border: 2px solid rgba(64, 64, 64, 0.5);
    border-radius: 12px;
    background: rgba(26, 26, 26, 0.8);
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.glossary-search input:focus {
    outline: none;
    border-color: #00d4aa;
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
    background: rgba(26, 26, 26, 0.9);
    transform: translateY(-2px);
}

.glossary-search input::placeholder {
    color: #888;
    font-weight: 400;
}

.glossary-search::before {
    content: '\f002';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 14px;
    z-index: 2;
}

.glossary-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.glossary-category-btn {
    padding: 12px 20px;
    border: 2px solid rgba(64, 64, 64, 0.5);
    background: rgba(26, 26, 26, 0.8);
    color: #b8b8b8;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.glossary-category-btn:hover {
    border-color: #00d4aa;
    color: #00d4aa;
    background: rgba(0, 212, 170, 0.1);
    transform: translateY(-2px);
}

.glossary-category-btn.active {
    background: #00d4aa;
    color: #000000;
    border-color: #00d4aa;
}

/* Profesyonel Glossary Tablosu */
.glossary-table-container {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.glossary-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.glossary-table thead {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 184, 148, 0.1));
    border-bottom: 2px solid rgba(0, 212, 170, 0.2);
}

.glossary-table th {
    padding: 20px 16px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
    color: #00d4aa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.glossary-table th i {
    margin-right: 8px;
    font-size: 12px;
}

.glossary-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    background: transparent;
}

.glossary-table tbody tr:hover {
    background: rgba(0, 212, 170, 0.05);
    transform: translateX(4px);
}

.glossary-table tbody tr:last-child {
    border-bottom: none;
}

.glossary-table td {
    padding: 20px 16px;
    vertical-align: top;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.glossary-table td:last-child {
    border-right: none;
}

.glossary-term-cell {
    width: 25%;
    min-width: 150px;
}

.glossary-definition-cell {
    width: 60%;
}

.glossary-category-cell {
    width: 15%;
    min-width: 120px;
    text-align: center;
}

.glossary-term-content {
    display: flex;
    align-items: center;
}

.glossary-term-text {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
}

.glossary-definition-content {
    display: flex;
    align-items: flex-start;
}

.glossary-definition-text {
    font-size: 14px;
    color: #b8b8b8;
    line-height: 1.6;
    text-align: justify;
}

.glossary-category-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid;
}

.glossary-category-badge.basic {
    background: rgba(0, 212, 170, 0.1);
    color: #00d4aa;
    border-color: rgba(0, 212, 170, 0.3);
}

.glossary-category-badge.technical {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    border-color: rgba(255, 107, 107, 0.3);
}

.glossary-category-badge.fundamental {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border-color: rgba(255, 193, 7, 0.3);
}

.glossary-category-badge.risk {
    background: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
    border-color: rgba(156, 39, 176, 0.3);
}

/* Glossary Empty State */
.glossary-empty {
    text-align: center;
    padding: 60px 20px;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 16px;
    border: 2px dashed rgba(255, 255, 255, 0.1);
}

.glossary-empty i {
    font-size: 48px;
    color: #888;
    margin-bottom: 20px;
}

.glossary-empty h4 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 12px;
}

.glossary-empty p {
    font-size: 14px;
    color: #888;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== UZMAN ANALİZLERİ BÖLÜMÜ ===== */
.analysis-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.analysis-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 75%, rgba(0, 212, 170, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.analysis-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.analysis-section .section-header h2 {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4aa, #00b894);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.analysis-section .section-header h2 i {
    font-size: 36px;
    color: #00d4aa;
    -webkit-text-fill-color: #00d4aa;
}

.analysis-section .section-header p {
    font-size: 18px;
    color: #b8b8b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Professional Analysis Controls */
.analysis-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    background: rgba(26, 26, 46, 0.6);
    padding: 24px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.analysis-search {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.analysis-search input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border: 2px solid rgba(64, 64, 64, 0.5);
    border-radius: 12px;
    background: rgba(26, 26, 26, 0.8);
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.analysis-search input:focus {
    outline: none;
    border-color: #00d4aa;
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
    background: rgba(26, 26, 26, 0.9);
    transform: translateY(-2px);
}

.analysis-search input::placeholder {
    color: #888;
    font-weight: 400;
}

.analysis-search::before {
    content: '\f002';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 14px;
    z-index: 2;
}

.analysis-filters {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.analysis-filter-btn {
    padding: 12px 20px;
    border: 2px solid rgba(64, 64, 64, 0.5);
    background: rgba(26, 26, 26, 0.8);
    color: #b8b8b8;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    white-space: nowrap;
}

.analysis-filter-btn:hover {
    border-color: #00d4aa;
    color: #00d4aa;
    background: rgba(0, 212, 170, 0.1);
    transform: translateY(-2px);
}

.analysis-filter-btn.active {
    background: #00d4aa;
    color: #000000;
    border-color: #00d4aa;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.analysis-item {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    min-height: 300px;
    text-decoration: none;
    color: inherit;
}

.analysis-item::before { content: none; }

.analysis-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 170, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 212, 170, 0.1);
}

.analysis-item:hover::before { content: none; }

.analysis-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.analysis-expert {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.expert-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 184, 148, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(0, 212, 170, 0.3);
}

.expert-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.analysis-item:hover .expert-avatar::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.expert-avatar i {
    font-size: 24px;
    color: #00d4aa;
    z-index: 2;
    position: relative;
}

.expert-info {
    flex: 1;
}

.expert-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.expert-title {
    font-size: 14px;
    color: #00d4aa;
    font-weight: 600;
}

.expert-credentials {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.analysis-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #888;
}

.analysis-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

.analysis-date i {
    color: #00d4aa;
    font-size: 12px;
}

.analysis-category-badge {
    display: inline-block;
    background: rgba(0, 212, 170, 0.2);
    color: #00d4aa;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 170, 0.3);
    position: absolute;
    top: 20px;
    right: 20px;
}

.analysis-category {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
}

.analysis-content {
    padding: 20px 30px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.analysis-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.analysis-excerpt {
    font-size: 15px;
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.analysis-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.analysis-tag {
    background: rgba(0, 212, 170, 0.1);
    color: #00d4aa;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 170, 0.2);
    transition: all 0.3s ease;
}

.analysis-item:hover .analysis-tag {
    background: rgba(0, 212, 170, 0.2);
    border-color: rgba(0, 212, 170, 0.4);
    transform: translateY(-1px);
}

.analysis-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.analysis-read-btn {
    background: linear-gradient(135deg, #00d4aa, #00b894);
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.analysis-read-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 170, 0.3);
}

.analysis-stats {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #888;
}

.analysis-stat {
    display: flex;
    align-items: center;
    gap: 4px;
}

.analysis-stat i {
    color: #00d4aa;
    font-size: 10px;
}

.analysis-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    color: #b8b8b8;
    font-size: 16px;
}

.analysis-loading .loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(64, 64, 64, 0.3);
    border-top: 3px solid #00d4aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 16px;
}

.analysis-empty {
    text-align: center;
    padding: 60px 20px;
    color: #b8b8b8;
}

.analysis-empty i {
    font-size: 48px;
    color: #666;
    margin-bottom: 16px;
}

.analysis-empty h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 8px;
}

.analysis-empty p {
    font-size: 14px;
    color: #888;
}

/* Analizler Mobil Responsive */
@media (max-width: 768px) {
    .analysis-controls {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .analysis-search {
        max-width: none;
    }
    
    .analysis-filters {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .analysis-filter-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .analysis-section .section-header h2 {
        font-size: 28px;
    }
    
    .analysis-header {
        padding: 20px 20px 15px;
    }
    
    .analysis-content {
        padding: 15px 20px 20px;
    }
    
    .analysis-title {
        font-size: 18px;
    }
    
    .analysis-actions {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        margin-top: 20px;
    }
    
    .analysis-read-btn {
        justify-content: center;
    }
    
    .expert-avatar {
        width: 50px;
        height: 50px;
    }
    
    .expert-avatar i {
        font-size: 20px;
    }
    
    .expert-name {
        font-size: 16px;
    }
    
    .expert-title {
        font-size: 13px;
    }
    
    /* Akademi Mobil Responsive */
    .academy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .academy-section .section-header h2 {
        font-size: 28px;
    }
    
    .academy-header {
        padding: 20px 20px 15px;
    }
    
    .academy-content {
        padding: 15px 20px 20px;
    }
    
    .academy-title {
        font-size: 18px;
    }
    
    .academy-actions {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        margin-top: 20px;
    }
    
    .academy-start-btn {
        justify-content: center;
    }
    
    .academy-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .instructor-avatar {
        width: 50px;
        height: 50px;
    }
    
    .instructor-avatar i {
        font-size: 20px;
    }
    
    .instructor-name {
        font-size: 16px;
    }
    
    .instructor-title {
        font-size: 13px;
    }
    
    /* Uyarı ve Footer Mobil Responsive */
    .investment-warning {
        padding: 60px 0;
    }
    
    .warning-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .warning-content i {
        font-size: 48px;
    }
    
    .warning-content h3 {
        font-size: 28px;
    }
    
    .warning-content p {
        font-size: 15px;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .footer-logo {
        justify-content: center;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    /* Modal Mobil Responsive */
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header {
        padding: 20px 20px;
    }
    
    .modal-header h3 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .close-btn {
        font-size: 24px;
        width: 28px;
        height: 28px;
    }
}

/* ===== MOBİL RESPONSIVE ===== */
@media (max-width: 768px) {
    .header-content {
        padding: 0 15px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .main-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .left-panel {
        order: 1;
    }
    
    .right-panel {
        order: 2;
    }
    
    .welcome-section h1 {
        font-size: 28px;
        text-align: center;
    }
    
    .welcome-section p {
        font-size: 14px;
        text-align: center;
    }
    
    .welcome-buttons {
        justify-content: center;
    }
    
    .welcome-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .market-cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .market-card {
        padding: 15px;
    }
    
    .market-status-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .stats-section {
        text-align: center;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 20px;
    }
}

/* ===== TOUCH OPTİMİZASYONLARI ===== */
@media (hover: none) and (pointer: coarse) {
    .welcome-btn,
    .refresh-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .market-card,
    .stat-card {
        cursor: pointer;
    }
}

/* ===== AKADEMİ BÖLÜMÜ ===== */
.academy-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.academy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(0, 212, 170, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.academy-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.academy-section .section-header h2 {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4aa, #00b894);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.academy-section .section-header p {
    font-size: 18px;
    color: #b8b8b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.academy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.academy-item {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    min-height: 280px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.academy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4aa, #00b894);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.academy-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 170, 0.3);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 212, 170, 0.1);
}

.academy-item:hover::before {
    transform: scaleX(1);
}

.academy-header { display: none; }

.academy-instructor {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.instructor-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 184, 148, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(0, 212, 170, 0.3);
}

.instructor-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.academy-item:hover .instructor-avatar::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.instructor-avatar i {
    font-size: 20px;
    color: #00d4aa;
    z-index: 2;
    position: relative;
}

.instructor-info {
    flex: 1;
}

.instructor-name {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.instructor-title {
    font-size: 14px;
    color: #00d4aa;
    font-weight: 500;
}

.academy-level-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0,0,0,.45);
    color: #fff;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 11px;
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
}

.academy-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.academy-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.academy-description {
    font-size: 15px;
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.academy-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

.academy-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 3px;
}

.academy-item:hover .academy-tag {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.academy-actions {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.academy-stats {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: #888;
    flex-wrap: wrap;
}

.academy-stat {
    display: flex;
    align-items: center;
    gap: 4px;
}

.academy-stat i {
    color: #00d4aa;
    font-size: 11px;
}

.academy-start-btn {
    background: linear-gradient(135deg, #00d4aa, #00b894);
    color: #000000;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.academy-start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 170, 0.3);
}

/* ===== YATIRIM UYARISI ===== */
.investment-warning {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.investment-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(255, 193, 7, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.warning-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(26, 26, 46, 0.6);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.warning-content i {
    font-size: 56px;
    color: #ffc107;
    margin-bottom: 24px;
    display: block;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.warning-content h3 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.warning-content p {
    font-size: 17px;
    color: #b8b8b8;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

/* ===== FOOTER BÖLÜMÜ ===== */
.footer {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 170, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 32px;
    color: #00d4aa;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 184, 148, 0.2));
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.footer-logo span {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #00d4aa, #00b894);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    font-size: 15px;
    color: #b8b8b8;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8b8b8;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(0, 212, 170, 0.2);
    border-color: rgba(0, 212, 170, 0.4);
    color: #00d4aa;
    transform: translateY(-2px);
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    position: relative;
    letter-spacing: 0.5px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #00d4aa, #00b894);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 0;
    line-height: 1.4;
}

.footer-links a::before {
    content: '→';
    color: #00d4aa;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-right: 6px;
    font-size: 12px;
}

.footer-links a:hover {
    color: #00d4aa;
    transform: translateX(4px);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    position: relative;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #00d4aa;
}



/* ===== MODAL'LAR ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-content {
    background: rgba(26, 26, 46, 0.95);
    margin: 2% auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.modal-content.large {
    max-width: 1400px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: #b8b8b8;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.modal-body {
    padding: 30px;
    color: #b8b8b8;
    line-height: 1.6;
}

/* Modal Animasyonları */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.modal.show .modal-content {
    animation: modalFadeIn 0.3s ease-out;
}

/* ===== HABERLER BÖLÜMÜ ===== */
.news-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(0, 212, 170, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.news-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.news-section .section-header h2 {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4aa, #00b894);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.news-section .section-header h2 i {
    font-size: 36px;
    color: #00d4aa;
    -webkit-text-fill-color: #00d4aa;
}

.news-section .section-header p {
    font-size: 18px;
    color: #b8b8b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.news-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    background: rgba(26, 26, 46, 0.6);
    padding: 24px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.news-search {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.news-search input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border: 2px solid rgba(64, 64, 64, 0.5);
    border-radius: 12px;
    background: rgba(26, 26, 26, 0.8);
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.news-search input:focus {
    outline: none;
    border-color: #00d4aa;
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
    background: rgba(26, 26, 26, 0.9);
    transform: translateY(-2px);
}

.news-search input::placeholder {
    color: #888;
    font-weight: 400;
}

.news-search::before {
    content: '\f002';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 14px;
    z-index: 2;
    line-height: 1;
}

.news-filters {
    display: flex;
    gap: 12px;
    align-items: center;
}

.news-filter-btn {
    padding: 12px 20px;
    border: 2px solid rgba(64, 64, 64, 0.5);
    background: rgba(26, 26, 26, 0.8);
    color: #b8b8b8;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.news-filter-btn:hover {
    border-color: #00d4aa;
    color: #00d4aa;
    background: rgba(0, 212, 170, 0.1);
    transform: translateY(-2px);
}

.news-filter-btn.active {
    background: #00d4aa;
    color: #000000;
    border-color: #00d4aa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Profesyonel Haber Kartları */
.news-card {
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.95) 0%, rgba(18, 18, 36, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
    backdrop-filter: blur(14px);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    text-decoration: none;
    color: inherit;
}
.news-card:link,
.news-card:visited,
.news-card:hover,
.news-card:active { text-decoration: none; color: inherit; }

.news-card .news-title { text-decoration: none; border-bottom: 0; }


.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4aa, #00b894);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.news-card.positive::before {
    background: linear-gradient(90deg, #00d4aa, #00b894);
}

.news-card.negative::before {
    background: linear-gradient(90deg, #ff6b6b, #ee5a52);
}

.news-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 170, 0.25);
    box-shadow: 0 18px 40px rgba(0,0,0,.45), 0 0 0 1px rgba(0,212,170,.08);
}

.news-card:hover::before { transform: none; }

/* Haber Başlığı */
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.news-source-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-source-logo {
    font-size: 18px;
}

.news-source-name {
    font-size: 14px;
    font-weight: 600;
    color: #00d4aa;
}

.news-priority-badges {
    display: flex;
    gap: 6px;
}

.news-badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-badge.important {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.news-badge.positive {
    background: rgba(0, 212, 170, 0.2);
    color: #00d4aa;
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.news-badge.negative {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

/* Haber Görseli */
.news-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 184, 148, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.news-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.news-card:hover .news-image::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.news-image i {
    font-size: 48px;
    color: #00d4aa;
    z-index: 2;
    position: relative;
}

.news-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Haber İçeriği */
.news-content {
    padding: 18px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px; /* gradient stroke */
    background: linear-gradient(135deg, rgba(0,212,170,.35), rgba(0,184,148,.15));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: .0;
    pointer-events: none;
    transition: opacity .35s ease;
}

.news-card:hover::after { opacity: 1; }

/* Header row inside news card produced by inline renderer */
.news-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px 0;
}

.news-time {
    color: #9aa3b2;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.news-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-summary {
    font-size: 15px;
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Haber Etiketleri */
.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.news-tag {
    background: rgba(0, 212, 170, 0.1);
    color: #00d4aa;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 170, 0.2);
}

/* İlgili Hisseler */
.news-related-stocks {
    margin-bottom: 16px;
}

.related-stocks-label {
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
    font-weight: 500;
}

.related-stocks-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.stock-tag {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    padding: 3px 6px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

/* Haber Meta Bilgileri */
.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #888;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.news-author-info,
.news-time-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-author-info i,
.news-time-info i {
    color: #00d4aa;
    font-size: 11px;
}

.news-author {
    font-weight: 500;
    color: #b8b8b8;
}

.news-date {
    font-weight: 500;
    color: #b8b8b8;
}

.news-read-time {
    background: rgba(0, 212, 170, 0.1);
    color: #00d4aa;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
}

/* Haber Alt Kısmı */
.news-footer {
    padding: 0 25px 25px;
}

.news-read-more-btn {
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 184, 148, 0.1));
    border: 1px solid rgba(0, 212, 170, 0.2);
    color: #00d4aa;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.news-read-more-btn:hover {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 184, 148, 0.2));
    border-color: rgba(0, 212, 170, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 170, 0.2);
}

.news-read-more-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.news-read-more-btn:hover i {
    transform: translateX(4px);
}

.news-date i {
    color: #00d4aa;
    font-size: 12px;
}

.news-source {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
}

.news-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    color: #b8b8b8;
    font-size: 16px;
}

.news-loading .loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(64, 64, 64, 0.3);
    border-top: 3px solid #00d4aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 16px;
}

.news-empty {
    text-align: center;
    padding: 60px 20px;
    color: #b8b8b8;
}

.news-empty i {
    font-size: 48px;
    color: #666;
    margin-bottom: 16px;
}

.news-empty h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 8px;
}

.news-empty p {
    font-size: 14px;
    color: #888;
}

/* ===== TRADING SİNYALLERİ BÖLÜMÜ ===== */
.trading-signals-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(18, 18, 36, 0.95));
    position: relative;
    overflow: hidden;
}

.trading-signals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Trading Dashboard Header */
.trading-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.dashboard-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-title h2 i {
    color: #00d4aa;
    font-size: 28px;
}

.dashboard-title p {
    font-size: 16px;
    color: #b8b8b8;
    margin: 0;
}

.dashboard-stats {
    display: flex;
    gap: 20px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 170, 0.2);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00d4aa, #00b894);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    color: #ffffff;
    font-size: 18px;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: #b8b8b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trading Controls */
.trading-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 25px 30px;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(20px);
}

.control-group {
    display: flex;
    gap: 12px;
}

.refresh-btn,
.auto-refresh-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 10px;
    background: rgba(0, 212, 170, 0.1);
    color: #00d4aa;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.refresh-btn:hover,
.auto-refresh-btn:hover {
    background: rgba(0, 212, 170, 0.2);
    border-color: rgba(0, 212, 170, 0.5);
    transform: translateY(-2px);
}

.auto-refresh-btn {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.auto-refresh-btn:hover {
    background: rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.5);
}

.auto-refresh-btn.active {
    background: rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.5);
    color: #ff6b6b;
}

.auto-refresh-btn.active:hover {
    background: rgba(255, 107, 107, 0.3);
    border-color: rgba(255, 107, 107, 0.7);
}

.filters-section {
    display: flex;
    gap: 20px;
    align-items: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-group label {
    font-size: 12px;
    color: #b8b8b8;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-group label i {
    color: #00d4aa;
    font-size: 10px;
}

.filter-group select,
.filter-group input {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(26, 26, 26, 0.8);
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: #00d4aa;
    box-shadow: 0 0 0 2px rgba(0, 212, 170, 0.1);
    background: rgba(26, 26, 26, 0.9);
    transform: translateY(-1px);
}

.filter-group select:hover,
.filter-group input:hover {
    border-color: rgba(0, 212, 170, 0.3);
    background: rgba(26, 26, 26, 0.9);
}

.filter-group input::placeholder {
    color: #888;
    opacity: 0.7;
}

.filter-group input:focus::placeholder {
    opacity: 0.5;
}

/* Arama kutusu için özel stiller */
.filter-group input[type="text"] {
    padding-right: 30px;
    position: relative;
}

/* Hosting uyumlu placeholder kontrolü */
.filter-group input[type="text"].has-content {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 14px;
    cursor: pointer;
}

.filter-group input[type="text"].has-content:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
}

/* Temizle butonu */
.clear-filters-btn {
    padding: 8px 12px;
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 8px;
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.clear-filters-btn:hover {
    background: rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.5);
    transform: translateY(-1px);
}

.clear-filters-btn i {
    font-size: 12px;
}

/* Signals Container */
.signals-container {
    position: relative;
}

.signals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

/* Signal Cards */
.signal-card {
    background: rgba(26, 26, 46, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
}

.signal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4aa, #00b894);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.signal-card.buy::before {
    background: linear-gradient(90deg, #00d4aa, #00b894);
}

.signal-card.sell::before {
    background: linear-gradient(90deg, #ff6b6b, #ee5a52);
}

.signal-card.stop::before {
    background: linear-gradient(90deg, #ffc107, #ff9800);
}

.signal-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 170, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 212, 170, 0.1);
}

.signal-card:hover::before {
    transform: scaleX(1);
}

.signal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.signal-stock-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.signal-stock-symbol {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
}

.signal-stock-name {
    font-size: 14px;
    color: #b8b8b8;
    font-weight: 500;
}

.signal-type-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.signal-type-badge.buy {
    background: rgba(0, 212, 170, 0.2);
    color: #00d4aa;
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.signal-type-badge.sell {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.signal-type-badge.stop {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.signal-content {
    padding: 25px;
}

.signal-price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.signal-current-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.signal-price-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.signal-price-value {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
}

.signal-target-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
}

.signal-target-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.signal-target-value {
    font-size: 20px;
    font-weight: 700;
    color: #00d4aa;
}

.signal-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.signal-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.signal-detail-label {
    font-size: 11px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.signal-detail-value {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.signal-confidence {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.confidence-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.confidence-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4aa, #00b894);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.confidence-fill.high {
    background: linear-gradient(90deg, #00d4aa, #00b894);
}

.confidence-fill.medium {
    background: linear-gradient(90deg, #ffc107, #ff9800);
}

.confidence-fill.low {
    background: linear-gradient(90deg, #ff6b6b, #ee5a52);
}

.confidence-text {
    font-size: 12px;
    font-weight: 600;
    color: #b8b8b8;
    min-width: 40px;
    text-align: right;
}

.signal-actions {
    display: flex;
    gap: 12px;
}

.signal-action-btn {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(26, 26, 26, 0.8);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.signal-action-btn:hover {
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateY(-2px);
}

.signal-action-btn.primary {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 184, 148, 0.2));
    border-color: rgba(0, 212, 170, 0.4);
    color: #00d4aa;
}

.signal-action-btn.primary:hover {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.3), rgba(0, 184, 148, 0.3));
    box-shadow: 0 8px 20px rgba(0, 212, 170, 0.2);
}

/* Loading ve Empty States */
.signals-loading,
.signals-empty {
    text-align: center;
    padding: 60px 20px;
    color: #b8b8b8;
}

/* Trading Modal Stilleri */
.signal-execution-content,
.signal-detail-content {
    padding: 20px;
}

/* Sinyal Detay Modal Stilleri */
.signal-detail-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.signal-detail-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-detail-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.signal-detail-info {
    flex: 1;
}

.signal-detail-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.signal-detail-stats {
    display: flex;
    gap: 20px;
}

.signal-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.signal-detail-left,
.signal-detail-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.signal-detail-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-price-details,
.signal-risk-analysis,
.signal-sentiment,
.signal-recommendations,
.signal-detail-analysis {
    padding: 20px;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.signal-price-details h4,
.signal-risk-analysis h4,
.signal-sentiment h4,
.signal-recommendations h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.signal-price-details h4 i,
.signal-risk-analysis h4 i,
.signal-sentiment h4 i,
.signal-recommendations h4 i {
    color: #00d4aa;
    font-size: 14px;
}

/* Fiyat Grid */
.price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.price-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.price-value.current { color: #00d4aa; }
.price-value.entry { color: #ffc107; }
.price-value.target { color: #00d4aa; }
.price-value.stop { color: #ff6b6b; }

/* Risk Metrikleri */
.risk-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.risk-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.risk-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.risk-value {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.risk-value.positive { color: #00d4aa; }
.risk-value.negative { color: #ff6b6b; }

/* Teknik Göstergeler */
.technical-indicators {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.indicator-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.indicator-name {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.indicator-value {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.indicator-value.oversold { color: #00d4aa; }
.indicator-value.overbought { color: #ff6b6b; }
.indicator-value.neutral { color: #ffc107; }
.indicator-value.positive { color: #00d4aa; }
.indicator-value.negative { color: #ff6b6b; }
.indicator-value.high { color: #00d4aa; }
.indicator-value.low { color: #ff6b6b; }
.indicator-value.normal { color: #ffc107; }

.indicator-signal {
    font-size: 11px;
    color: #b8b8b8;
    font-weight: 500;
}

/* Sentiment Barları */
.sentiment-bars {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sentiment-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sentiment-label {
    font-size: 14px;
    color: #b8b8b8;
    font-weight: 500;
    min-width: 80px;
}

.sentiment-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.sentiment-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.sentiment-fill.buyer {
    background: linear-gradient(90deg, #00d4aa, #00b894);
}

.sentiment-fill.seller {
    background: linear-gradient(90deg, #ff6b6b, #ee5a52);
}

.sentiment-value {
    font-size: 12px;
    color: #ffffff;
    font-weight: 600;
    min-width: 40px;
    text-align: right;
}

/* Öneriler Listesi */
.recommendation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recommendation-list li {
    padding: 8px 0;
    color: #b8b8b8;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.recommendation-list li::before {
    content: '•';
    color: #00d4aa;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Detay Aksiyon Butonları */
.signal-detail-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.signal-detail-btn {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(26, 26, 26, 0.8);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.signal-detail-btn:hover {
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateY(-2px);
}

.signal-detail-btn.primary {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 184, 148, 0.2));
    border-color: rgba(0, 212, 170, 0.4);
    color: #00d4aa;
}

.signal-detail-btn.primary:hover {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.3), rgba(0, 184, 148, 0.3));
    box-shadow: 0 8px 20px rgba(0, 212, 170, 0.2);
}

.signal-detail-btn.secondary {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
}

.signal-detail-btn.secondary:hover {
    background: rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.5);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.2);
}

.signal-execution-header,
.signal-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-symbol {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
}

.signal-execution-info,
.signal-detail-info {
    margin-bottom: 20px;
}

.signal-execution-info h3,
.signal-detail-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.signal-execution-info p,
.signal-detail-info p {
    font-size: 14px;
    color: #b8b8b8;
    line-height: 1.6;
}

.signal-detail-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.signal-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.signal-stat .stat-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.signal-stat .stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #00d4aa;
}

.signal-detail-analysis {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 10px;
}

.signal-detail-analysis h4 {
    font-size: 16px;
    font-weight: 700;
    color: #00d4aa;
    margin-bottom: 8px;
}

.signal-detail-analysis p {
    font-size: 14px;
    color: #b8b8b8;
    line-height: 1.6;
}

.signal-execution-actions,
.signal-detail-actions {
    display: flex;
    gap: 12px;
}

.signal-execution-btn,
.signal-detail-btn {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(26, 26, 26, 0.8);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.signal-execution-btn:hover,
.signal-detail-btn:hover {
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateY(-2px);
}

.signal-execution-btn.primary,
.signal-detail-btn.primary {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 184, 148, 0.2));
    border-color: rgba(0, 212, 170, 0.4);
    color: #00d4aa;
}

.signal-execution-btn.primary:hover,
.signal-detail-btn.primary:hover {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.3), rgba(0, 184, 148, 0.3));
    box-shadow: 0 8px 20px rgba(0, 212, 170, 0.2);
}

.signal-execution-btn.secondary,
.signal-detail-btn.secondary {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
}

.signal-execution-btn.secondary:hover,
.signal-detail-btn.secondary:hover {
    background: rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.5);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.2);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(64, 64, 64, 0.3);
    border-top: 3px solid #00d4aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.signals-empty i {
    font-size: 48px;
    color: #666;
    margin-bottom: 16px;
}

.signals-empty h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 8px;
}

.signals-empty p {
    font-size: 14px;
    color: #888;
}

/* Trading Detay Modal Mobil Responsive */
@media (max-width: 768px) {
    .signal-detail-top-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .signal-detail-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .signal-detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .price-grid,
    .risk-metrics,
    .technical-indicators {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .signal-detail-actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .sentiment-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .sentiment-label {
        min-width: auto;
    }
    
    .sentiment-value {
        min-width: auto;
        text-align: left;
    }
    
    .signal-price-details,
    .signal-risk-analysis,
    .signal-sentiment,
    .signal-recommendations,
    .signal-detail-analysis {
        padding: 15px;
    }
    
    .price-item,
    .risk-item,
    .indicator-item {
        padding: 10px;
    }
    
    .price-value,
    .risk-value,
    .indicator-value {
        font-size: 14px;
    }
    
    .signal-detail-info h3 {
        font-size: 18px;
    }
}

/* Haberler Mobil Responsive */
@media (max-width: 768px) {
    .news-controls {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .news-search {
        max-width: none;
    }
    
    .news-filters {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-section .section-header h2 {
        font-size: 28px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-title {
        font-size: 18px;
    }
    
    /* Glossary Tablosu Mobil Responsive */
    .glossary-table-container {
        overflow-x: auto;
        border-radius: 12px;
    }
    
    .glossary-table {
        min-width: 600px;
    }
    
    .glossary-table th,
    .glossary-table td {
        padding: 15px 12px;
        font-size: 13px;
    }
    
    .glossary-term-cell {
        width: 20%;
        min-width: 120px;
    }
    
    .glossary-definition-cell {
        width: 65%;
    }
    
    .glossary-category-cell {
        width: 15%;
        min-width: 100px;
    }
    
    .glossary-term-text {
        font-size: 14px;
    }
    
    .glossary-definition-text {
        font-size: 13px;
    }
    
    .glossary-category-badge {
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .glossary-controls {
        padding: 20px;
        gap: 20px;
    }
    
    .glossary-categories {
        gap: 8px;
    }
    
    .glossary-category-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

}
