/**
 * Coin Tablosu Premium Elite Edition
 * Ultra Modern Luxury Design v3
 */

/* Tablo container stil */
.crypto-coin-table-container {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.95));
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* TR class - removing old styles */
tr {
    transition: all 0.4s ease;
}

/* Tablo ayarları */
.crypto-coin-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

/* Dikey zebra deseni - sütunlar için */
.crypto-coin-table > thead > tr > th:nth-child(odd),
.crypto-coin-table > tbody > tr > td:nth-child(odd) {
    background-color: rgba(19, 23, 64, 0.6) !important;
}

.crypto-coin-table > thead > tr > th:nth-child(even),
.crypto-coin-table > tbody > tr > td:nth-child(even) {
    background-color: rgba(25, 30, 85, 0.3) !important;
}

/* İlk sütun için özel stil */
.crypto-coin-table > thead > tr > th:first-child,
.crypto-coin-table > tbody > tr > td:first-child,
.crypto-coin-table th.sticky-column,
.crypto-coin-table td.sticky-column {
    background: rgba(15, 23, 42, 0.95) !important;
}

/* Header stili */
.crypto-coin-table thead th {
    padding: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85em;
}

/* Hücre padding */
.crypto-coin-table td {
    padding: 16px 20px;
}

/* Hover efekti */
.crypto-coin-table > tbody > tr:hover > td {
    filter: brightness(1.2);
    transition: filter 0.3s ease;
}

/* Coin sütununun genişliği */
.crypto-coin-table th.sticky-column {
    min-width: 200px !important;
    width: 200px !important;
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.crypto-coin-table td.sticky-column {
    min-width: 200px !important;
    width: 200px !important;
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

/* Coin bilgileri düzenlemesi */
.coin-info {
    display: flex;
    align-items: center;
    text-align: left;
    width: 100%;
    position: relative;
}

.coin-info-container {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 14px;
    background: rgba(30, 41, 59, 0.4);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.coin-info-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.coin-info-container:hover {
    transform: translateY(-3px) scale(1.02);
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(99, 102, 241, 0.1);
}

.coin-info-container:hover::before {
    opacity: 1;
}

/* Tıklanabilir alanı vurgula */
.coin-info-container[data-coin-page-id] {
    cursor: pointer;
    position: relative;
}

.coin-info-container[data-coin-page-id]:hover {
    transform: translateY(-3px) scale(1.02);
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(99, 102, 241, 0.2);
}

.coin-info-container[data-coin-page-id]:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), transparent);
    pointer-events: none;
}

.coin-logo {
    margin-right: 12px;
    display: flex;
    align-items: center;
}

.coin-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.coin-info-container:hover .coin-logo-img {
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.default-coin-logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.coin-info-container:hover .default-coin-logo {
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.coin-details {
    flex: 1;
    min-width: 140px;
}

.coin-name {
    font-size: 1em;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.coin-tag {
    font-size: 0.75em;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    padding: 6px 14px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 
        0 4px 12px rgba(99, 102, 241, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

/* Votes sütunu */
.votes-column {
    text-align: center;
    font-feature-settings: "tnum";
}

.vote-count {
    font-weight: 700;
    font-size: 1.1em;
    color: #fff;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Tüm rank elemanları için temel stil */
.coin-rank {
    width: 36px !important;
    height: 36px !important;
    font-size: 16px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin: 0 auto;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* İlk 3 rank için özel stiller */
.rank-1 {
    background: linear-gradient(135deg, #ffd700, #ffa500) !important;
    color: #000 !important;
    border: none !important;
    box-shadow: 
        0 8px 24px rgba(255, 215, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.rank-2 {
    background: linear-gradient(135deg, #e0e0e0, #b0b0b0) !important;
    color: #000 !important;
    border: none !important;
    box-shadow: 
        0 8px 24px rgba(224, 224, 224, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.rank-3 {
    background: linear-gradient(135deg, #cd7f32, #a0522d) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 
        0 8px 24px rgba(205, 127, 50, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

/* Promoted coin için özel efekt */
.is-promoted .coin-info-container {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(30, 41, 59, 0.4));
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.is-promoted .coin-info-container:hover {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7), rgba(30, 41, 59, 0.5));
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 15px 40px rgba(255, 215, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Favori coinler için özel efekt */
.is-favorite .coin-info-container {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(30, 41, 59, 0.4));
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.is-favorite .coin-info-container:hover {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7), rgba(30, 41, 59, 0.5));
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 
        0 15px 40px rgba(99, 102, 241, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Vote button styles - with higher specificity */
.crypto-coin-table .vote-column .vote-button {
    background: linear-gradient(135deg, #FFD700, #DAA520) !important;
    color: #000000 !important;
    border: none !important;
    padding: 8px 16px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 0.9em !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    box-shadow: 
        0 4px 12px rgba(255, 215, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.3) !important;
    cursor: pointer !important;
}

.crypto-coin-table .vote-column .vote-button:hover {
    background: linear-gradient(135deg, #DAA520, #B8860B) !important;
    transform: translateY(-2px) !important;
    box-shadow: 
        0 6px 15px rgba(255, 215, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2) !important;
}

.crypto-coin-table .vote-column .vote-button svg {
    width: 16px !important;
    height: 16px !important;
    color: #000000 !important;
    opacity: 0.8 !important;
}

.crypto-coin-table .vote-column .vote-button:hover svg {
    opacity: 1 !important;
    transform: scale(1.1) !important;
}

/* Chain badge stilleri */
.chain-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 80px;
    text-align: center;
}

.chain-badge img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.chain-badge span {
    font-size: 0.85em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .crypto-coin-table-container {
        padding: 12px;
        border-radius: 14px;
    }

    .crypto-coin-table th.sticky-column,
    .crypto-coin-table td.sticky-column {
        min-width: 75px !important;
        width: 75px !important;
    }
    
    /* Diğer sütunların genişliğini azalt */
    .crypto-coin-table th,
    .crypto-coin-table td {
        padding: 10px 6px;
    }
    
    /* Zincir ve diğer kolonların genişliğini ayarla */
    .crypto-coin-table .vote-column {
        width: 50px !important;
        min-width: 50px !important;
    }
    
    .crypto-coin-table .chain-column {
        width: 45px !important;
        min-width: 45px !important;
    }
    
    .crypto-coin-table .rank-column {
        width: 35px !important;
        min-width: 35px !important;
    }
    
    .coin-logo-img,
    .default-coin-logo {
        width: 28px;
        height: 28px;
        border-radius: 7px;
    }
    
    .coin-info-container {
        padding: 3px 5px;
    }
    
    .coin-name {
        font-size: 0.7em;
        margin-bottom: 2px;
    }
    
    .coin-tag {
        font-size: 0.5em;
        padding: 1px 5px;
        letter-spacing: 0.5px;
    }
    
    .coin-logo {
        margin-right: 5px;
    }
    
    .coin-rank {
        width: 30px !important;
        height: 30px !important;
        font-size: 12px !important;
    }

    .chain-badge {
        padding: 6px;
        min-width: 50px;
    }
    
    .chain-badge img {
        width: 18px;
        height: 18px;
    }
    
    .chain-badge span {
        font-size: 0.75em;
    }
    
    .coin-details {
        min-width: 55px;
    }
    
    /* Oy sayısı hücresi */
    .votes-column {
        text-align: center;
    }
    
    .vote-count {
        font-size: 0.9em;
    }
    
    /* Oy butonlarını küçült */
    .crypto-coin-table .vote-column .vote-button {
        padding: 6px 10px !important;
        font-size: 0.8em !important;
    }

    /* Likidite sütunu küçük ekranlarda */
    .liquidity-column {
        min-width: 70px;
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .crypto-coin-table th.sticky-column,
    .crypto-coin-table td.sticky-column {
        min-width: 60px !important;
        width: 60px !important;
    }
    
    /* Diğer sütunların genişliğini daha da azalt */
    .crypto-coin-table th,
    .crypto-coin-table td {
        padding: 8px 4px;
    }
    
    /* Zincir ve diğer kolonların genişliğini ayarla */
    .crypto-coin-table .vote-column {
        width: 40px !important;
        min-width: 40px !important;
    }
    
    .crypto-coin-table .chain-column {
        width: 35px !important;
        min-width: 35px !important;
    }
    
    .crypto-coin-table .rank-column {
        width: 30px !important;
        min-width: 30px !important;
    }
    
    /* Bazı sütunları gizle */
    .crypto-coin-table .hide-sm {
        display: none !important;
    }
    
    .coin-logo-img,
    .default-coin-logo {
        width: 24px;
        height: 24px;
        border-radius: 6px;
    }
    
    .coin-info-container {
        padding: 2px 3px;
    }
    
    .coin-name {
        font-size: 0.62em;
        margin-bottom: 1px;
    }
    
    .coin-tag {
        font-size: 0.42em;
        padding: 1px 2px;
        letter-spacing: 0;
    }
    
    .coin-logo {
        margin-right: 3px;
    }
    
    .coin-details {
        min-width: 42px;
    }
    
    /* Oy sayısı hücresi */
    .vote-count {
        font-size: 0.8em;
    }
    
    /* Oy butonlarını daha da küçült */
    .crypto-coin-table .vote-column .vote-button {
        padding: 4px 8px !important;
        font-size: 0.7em !important;
    }
    
    .crypto-coin-table .vote-column .vote-button svg {
        width: 12px !important;
        height: 12px !important;
    }
    
    /* Rank stilini güncelle */
    .coin-rank {
        width: 26px !important;
        height: 26px !important;
        font-size: 11px !important;
    }

    /* Likidite sütunu çok küçük ekranlarda */
    .liquidity-column {
        min-width: 60px;
        font-size: 0.8em;
    }
}

/* En küçük ekranlar için (ince mobil telefonlar) */
@media (max-width: 375px) {
    .crypto-coin-table th.sticky-column,
    .crypto-coin-table td.sticky-column {
        min-width: 50px !important;
        width: 50px !important;
    }
    
    /* Diğer sütunların genişliğini daha da azalt */
    .crypto-coin-table th,
    .crypto-coin-table td {
        padding: 6px 3px;
    }
    
    /* Zincir ve diğer kolonların genişliğini ayarla */
    .crypto-coin-table .vote-column {
        width: 32px !important;
        min-width: 32px !important;
    }
    
    .crypto-coin-table .chain-column {
        width: 30px !important;
        min-width: 30px !important;
    }
    
    .crypto-coin-table .rank-column {
        width: 25px !important;
        min-width: 25px !important;
    }
    
    /* Bazı hücreleri gizle */
    .crypto-coin-table .hide-xs,
    .crypto-coin-table .hide-sm {
        display: none !important;
    }
    
    .coin-logo-img,
    .default-coin-logo {
        width: 22px;
        height: 22px;
        border-radius: 5px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }
    
    .coin-info-container {
        padding: 2px;
    }
    
    .coin-name {
        font-size: 0.6em;
        margin-bottom: 0;
    }
    
    .coin-tag {
        font-size: 0.4em;
        padding: 1px 2px;
    }
    
    .coin-logo {
        margin-right: 3px;
    }
    
    .coin-details {
        min-width: 36px;
    }
    
    /* Oy sayısı hücresi */
    .vote-count {
        font-size: 0.7em;
    }
    
    /* Oy butonlarını minimuma indir */
    .crypto-coin-table .vote-column .vote-button {
        padding: 3px 6px !important;
        font-size: 0.65em !important;
    }
    
    .crypto-coin-table .vote-column .vote-button svg {
        width: 10px !important;
        height: 10px !important;
    }
}

/* Ekstra küçük mobil ekranlar için */
@media (max-width: 320px) {
    .crypto-coin-table th.sticky-column,
    .crypto-coin-table td.sticky-column {
        min-width: 40px !important;
        width: 40px !important;
    }
    
    /* Diğer sütunların genişliğini minimuma indir */
    .crypto-coin-table th,
    .crypto-coin-table td {
        padding: 4px 1px;
    }
    
    /* Zincir ve diğer kolonların genişliğini ayarla */
    .crypto-coin-table .vote-column {
        width: 28px !important;
        min-width: 28px !important;
    }
    
    .crypto-coin-table .chain-column {
        width: 25px !important;
        min-width: 25px !important;
    }
    
    .crypto-coin-table .rank-column {
        width: 20px !important;
        min-width: 20px !important;
    }
    
    /* Daha fazla hücre gizle */
    .crypto-coin-table .hide-xxs,
    .crypto-coin-table .hide-xs,
    .crypto-coin-table .hide-sm {
        display: none !important;
    }
    
    .coin-logo-img,
    .default-coin-logo {
        width: 20px;
        height: 20px;
        border-radius: 4px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    }
    
    .coin-info-container {
        padding: 1px;
    }
    
    .coin-name {
        font-size: 0.55em;
    }
    
    .coin-tag {
        font-size: 0.35em;
        padding: 0 1px;
    }
    
    .coin-logo {
        margin-right: 2px;
    }
    
    .coin-details {
        min-width: 30px;
    }
    
    /* Oy butonlarını ekstra küçült */
    .crypto-coin-table .vote-column .vote-button {
        padding: 2px 4px !important;
        font-size: 0.6em !important;
    }
    
    .crypto-coin-table .vote-column .vote-button svg {
        width: 9px !important;
        height: 9px !important;
    }
}

/* Premium Header Styles */
.crypto-coin-table-header {
    background: linear-gradient(135deg, rgba(16, 20, 45, 0.95) 0%, rgba(14, 17, 36, 0.98) 100%);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Parlayan kenar efekti */
.crypto-coin-table-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.05) 0%, 
        rgba(255, 215, 0, 0) 20%, 
        rgba(255, 215, 0, 0) 80%, 
        rgba(255, 215, 0, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
    animation: shineEffect 8s infinite linear;
}

/* Arka plan deseni */
.crypto-coin-table-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background-image: 
        radial-gradient(circle, rgba(255, 215, 0, 0.08) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 215, 0, 0.05) 1px, transparent 1px);
    background-size: 20px 20px, 30px 30px;
    background-position: 0 0, 15px 15px;
    opacity: 0.3;
    z-index: 0;
    transform: rotate(15deg);
    animation: patternMove 60s infinite linear;
}

.crypto-coin-table-header-content {
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.crypto-coin-table-title {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #ffffff, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleGlow 3s infinite alternate;
}

.crypto-coin-table-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, 
        rgba(255, 215, 0, 0.8) 0%,
        rgba(255, 215, 0, 0.4) 50%,
        rgba(255, 215, 0, 0) 100%);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.crypto-coin-table-header:hover .crypto-coin-table-title::after {
    width: 100px;
}

.crypto-coin-table-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.5;
    max-width: 600px;
    margin-bottom: 0;
    transition: color 0.3s ease, transform 0.3s ease;
    animation: fadeIn 1s ease-out;
    position: relative;
}

.crypto-coin-table-header:hover .crypto-coin-table-subtitle {
    color: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

/* 3D hover efekti */
.crypto-coin-table-header:hover {
    transform: translateY(-5px) perspective(500px) rotateX(2deg);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Filtreler ve başlık arasında esnek alan */
.crypto-coin-filters {
    display: flex;
    align-items: center;
    z-index: 2;
    position: relative;
}

/* Animasyonlar */
@keyframes shineEffect {
    0% {
        background-position: -500px 0;
    }
    100% {
        background-position: 500px 0;
    }
}

@keyframes patternMove {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.2);
    }
    100% {
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.3);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Filtre butonu yeni stili */
.crypto-coin-filters .filter-button {
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    border: 1px solid rgba(255, 215, 0, 0.4);
    padding: 12px 24px;
    border-radius: 12px;
    color: #000000;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.crypto-coin-filters .filter-button::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.7s ease;
    z-index: -1;
}

.crypto-coin-filters .filter-button:hover {
    background: rgba(13, 18, 38, 0.95);
    border-color: #FFD700;
    color: #FFD700;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.3),
        0 6px 10px rgba(255, 215, 0, 0.2);
}

.crypto-coin-filters .filter-button:hover::before {
    left: 100%;
}

.crypto-coin-filters .filter-button svg {
    width: 16px;
    height: 16px;
    opacity: 0.9;
    color: #000000;
    transition: all 0.3s ease;
}

.crypto-coin-filters .filter-button:hover svg {
    opacity: 1;
    color: #FFD700;
    transform: rotate(180deg);
}

/* Basit Modal Tasarımı - d-none yerine modal-hidden kullanılıyor */
.filter-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    overflow: hidden;
}

.filter-modal.modal-hidden {
    display: none;
}

.filter-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    z-index: 99990;
}

.filter-modal-content {
    position: relative;
    width: 90%;
    max-width: 400px;
    max-height: 80vh;
    overflow-y: auto;
    background: linear-gradient(135deg, rgba(20, 25, 52, 0.98), rgba(15, 20, 42, 0.95));
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 5px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 99999;
    margin: auto;
}

.filter-modal-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);
}

.filter-modal-title {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(to right, #ffffff, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.filter-modal-close {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-modal-close:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    color: #FFD700;
    transform: rotate(90deg);
}

.filter-modal-body {
    padding: 10px 0;
}

/* Form elemanları stilleri */
.filter-modal .crypto-search-container,
.filter-modal .crypto-chain-filter,
.filter-modal .crypto-promoted-filter,
.filter-modal .crypto-favorite-filter {
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.filter-modal .crypto-search-container:hover,
.filter-modal .crypto-chain-filter:hover,
.filter-modal .crypto-promoted-filter:hover,
.filter-modal .crypto-favorite-filter:hover {
    background: rgba(255, 255, 255, 0.08);
}

.filter-modal input[type="text"],
.filter-modal select {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s ease;
}

.filter-modal input[type="text"]:focus,
.filter-modal select:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.filter-modal input[type="checkbox"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    position: relative;
    top: 2px;
}

/* Select Kutusu Özel Stili */
.filter-modal select.custom-select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M12 15l-4.243-4.243 1.415-1.414L12 12.172l2.828-2.829 1.415 1.414z' fill='rgba(255,215,0,0.8)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    cursor: pointer;
}

/* Scrollbar Stilleri */
.filter-modal-content::-webkit-scrollbar {
    width: 8px;
}

.filter-modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.filter-modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 10px;
}

.filter-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.5);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .filter-modal-content {
        width: 85%;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .filter-modal-content {
        width: 90%;
        padding: 15px;
        max-height: 70vh;
    }
    
    .filter-modal-title {
        font-size: 1rem;
    }
    
    .filter-modal-close {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
    
    .filter-modal .crypto-search-container,
    .filter-modal .crypto-chain-filter,
    .filter-modal .crypto-promoted-filter,
    .filter-modal .crypto-favorite-filter {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .filter-modal input[type="text"],
    .filter-modal select {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .filter-modal-content {
        width: 95%;
        padding: 12px;
    }
    
    .filter-modal-title {
        font-size: 0.9rem;
    }
    
    .filter-modal-close {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }
}

/* iOS spesifik düzeltmeler */
@supports (-webkit-touch-callout: none) {
    .filter-modal-content {
        max-height: 70vh;
    }
}

/* Yüzen Kripto İkonları Stilleri */
.crypto-coin-floating-icons {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    opacity: 0.4;
    filter: blur(0.5px);
    transition: opacity 0.3s ease;
}

.crypto-coin-table-header:hover .floating-icon {
    opacity: 0.7;
}

.floating-icon.bitcoin {
    top: 15%;
    right: 15%;
    animation: floatingCoin 12s infinite ease-in-out;
}

.floating-icon.eth {
    top: 40%;
    right: 25%;
    animation: floatingCoin 9s infinite ease-in-out;
    animation-delay: 1s;
}

.floating-icon.bnb {
    top: 60%;
    right: 20%;
    animation: floatingCoin 15s infinite ease-in-out;
    animation-delay: 2s;
}

@keyframes floatingCoin {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(-15px, 10px) rotate(10deg) scale(1.1);
    }
    50% {
        transform: translate(-5px, -15px) rotate(-5deg) scale(0.95);
    }
    75% {
        transform: translate(10px, 5px) rotate(-15deg) scale(1.05);
    }
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

/* Filter Button Yeni Efektler */
.filter-button {
    position: relative;
    overflow: hidden;
}

.filter-button-glow {
    position: absolute;
    width: 30px;
    height: 100%;
    top: 0;
    left: -100px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    animation: buttonGlowEffect 2s infinite;
    pointer-events: none;
}

@keyframes buttonGlowEffect {
    0% {
        left: -100px;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .floating-icon.bitcoin {
        top: 10%;
        right: 10%;
    }
    
    .floating-icon.eth {
        top: 30%;
        right: 20%;
    }
    
    .floating-icon.bnb {
        top: 50%;
        right: 15%;
    }
}

/* Mobil cihazlarda daha iyi performans için hardware acceleration aktif et */
.filter-dropdown, 
.filter-modal-overlay {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
}

@media (max-width: 480px) {
    body.modal-open {
        /* Mobil tarayıcıları için daha iyi overflow kontrolü */
        position: fixed;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
}

/* iOS spesifik ayarlar için */
@supports (-webkit-touch-callout: none) {
    body.modal-open {
        position: fixed;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .filter-dropdown {
        -webkit-transform: translate3d(-50%, -50%, 0) scale(0.9);
        transform: translate3d(-50%, -50%, 0) scale(0.9);
    }
    
    .filter-dropdown:not(.d-none) {
        -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
        transform: translate3d(-50%, -50%, 0) scale(1);
    }
}

/* Body'yi modal açıkken sabit tut */
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Modal ön plan ve arka plan konumu için ek stil */
.crypto-coin-table-wrap {
    position: relative;
}

/* Modal konumu için ek stil */
.filter-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    overflow: hidden;
}

/* Modal içindeki select kutusu için özel stil */
.filter-modal .crypto-chain-filter {
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(30, 41, 59, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.filter-modal .crypto-chain-filter:hover {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255, 255, 255, 0.15);
}

.filter-modal select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.6);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    padding-right: 40px;
}

.filter-modal select:focus {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.filter-modal select option {
    background: rgba(15, 23, 42, 0.95);
    color: #fff;
    padding: 10px;
}

/* Arama ve checkbox container için stil düzenlemeleri */
.filter-modal .crypto-search-container {
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(30, 41, 59, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.filter-modal .crypto-search-container:hover {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255, 255, 255, 0.15);
}

.filter-modal .crypto-search-container input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    padding-right: 40px;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.6);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.filter-modal .crypto-search-container input[type="text"]:focus {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.filter-modal .crypto-search-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
}

/* Checkbox container için stil */
.filter-modal .crypto-favorite-filter {
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(30, 41, 59, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.filter-modal .crypto-favorite-filter:hover {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255, 255, 255, 0.15);
}

.filter-modal .crypto-favorite-filter label {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
}

.filter-modal .crypto-favorite-filter input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(15, 23, 42, 0.6);
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-modal .crypto-favorite-filter input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    border-color: #4f46e5;
}

.filter-modal .crypto-favorite-filter input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Modal içeriği için ek stil */
.filter-modal-content {
    background: linear-gradient(135deg, rgba(20, 25, 52, 0.98), rgba(15, 20, 42, 0.95));
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    padding: 20px;
}

.filter-modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

/* Likidite sütunu stili */
.liquidity-column {
    font-family: 'Roboto Mono', monospace;
    font-weight: 500;
    color: var(--text-primary);
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 100px;
}

@media (max-width: 768px) {
    /* ... existing code ... */
    
    /* Likidite sütunu küçük ekranlarda */
    .liquidity-column {
        min-width: 70px;
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    /* ... existing code ... */
    
    /* Likidite sütunu çok küçük ekranlarda */
    .liquidity-column {
        min-width: 60px;
        font-size: 0.8em;
    }
} 