* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 100%);
    color: #ffffff;
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Ana içeriği header'ın altına kaydır */
body {
    padding-top: 50px;
}




/* Ana Fiyat Kartı */
.main-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    backdrop-filter: blur(10px);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.price-info {
    flex: 1;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.tl-price {
    font-size: 1rem;
    font-weight: 500;
    color: #a0a0a0;
    margin-bottom: 15px;
    opacity: 0.8;
}

.usd-rate {
    text-align: right;
}

.rate-label {
    font-size: 0.7rem;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.rate-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff4f4;
}

/* 24 saatlik değişim kutusu ve başlık için stil */
.info-label {
    color: #b0b0b0;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-bottom: 2px;
    margin-top: 10px;
    display: block;
}

.price-change {
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.change-amount {
    display: inline-block;
    font-size: 1rem;
    font-weight: bold;
    padding: 4px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    color: #e74c3c;
    letter-spacing: 0.2px;
}

.change-amount.green {
    color: #27ae60;
    background: rgba(39, 174, 96, 0.10);
}

.change-amount.red {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.10);
}

.change-amount-usd {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-left: 2px;
}

.change-percent {
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: 4px;
    color: #e74c3c;
    margin-top: 5px;
}



.change-percent.green {
    color: #27ae60;
}

.change-percent.red {
    color: #e74c3c;
}

/* Ana kart hacim bilgisi stilleri - değişim tasarımı gibi */
.volume-change {
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.volume-amount {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 4px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    color: #ffc107;
    letter-spacing: 0.2px;
}

.volume-analysis {
    font-size: 0.6rem;
    font-weight: 500;
    margin-left: 4px;
    color: #a0a0a0;
    margin-top: 5px;
}

.status-info {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: auto;
    min-width: 120px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .change-amount {
        font-size: 14px;
    }

    .change-amount .change-amount-usd {
        font-size: 12px;
    }
}


.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.open {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.status-dot.closed {
    background: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.status-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.last-update {
    text-align: right;
}

.update-label {
    font-size: 0.7rem;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.update-time {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

/* Detay Kartları */
.details-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* Masaüstü için 5 sütun */
    gap: 15px;
    margin-bottom: 30px;
}

@media (max-width: 1200px) {
    .details-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Daha küçük ekranlarda 3 sütun */
    }
}

@media (max-width: 800px) {
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Tablet için 2 sütun */
    }
}

@media (max-width: 500px) {
    .details-grid {
        grid-template-columns: 1fr;
        /* Mobil için tek sütun */
    }
}

.detail-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 193, 7, 0.3);
}

.card-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.card-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
}

.card-subtitle {
    font-size: 0.7rem;
    color: #6b7280;
}

/* Grafik Bölümü */
.chart-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    backdrop-filter: blur(10px);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.chart-header h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.time-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.time-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #a0a0a0;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 60px;
    text-align: center;
}

.time-btn:hover {
    background: rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.4);
    color: #ffc107;
}

.time-btn.active {
    background: rgba(255, 193, 7, 0.3);
    border-color: #ffc107;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.time-btn[data-period="live"].active {
    background: rgba(239, 68, 68, 0.3);
    border-color: #ef4444;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
    animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px 14px;
    margin: 18px 0 24px 0;
}

@media (max-width: 900px) {
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
}

.chart-container {
    position: relative;
    height: 400px;
    width: 100%;
}

.volume-chart-container {
    position: relative;
    height: 150px;
    width: 100%;
    margin-top: 10px;
    border-radius: 8px;
    padding: 10px;
}

/* Loading ve Error */
.loading {
    text-align: center;
    padding: 40px;
    color: #a0a0a0;
}

.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffc107;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

.error {
    text-align: center;
    padding: 40px;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.footer {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    color: #6b7280;
    font-size: 0.8rem;
}

.footer a {
    color: #ffc107;
    text-decoration: none;
}

/* Animasyonlar */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Fiyat Renk Değişimi */
.current-price.price-up {
    color: #5a8a2a !important;
    /* koyu zeytin yeşili */
}

.current-price.price-down {
    color: #9b2c2c !important;
    /* koyu kan kırmızısı */
}

/* Portföy Bölümü */
.portfolio-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    backdrop-filter: blur(10px);
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.portfolio-header h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}





.portfolio-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-date {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
}

.card-time {
    font-size: 0.8rem;
    color: #a0a0a0;
}

.portfolio-card .card-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 15px;
    margin-top: 20px;
}

.portfolio-card .card-row:nth-child(6) {
    grid-column: 1 / -1;
    grid-row: 4;
}

.portfolio-card .card-row:nth-child(8) {
    grid-column: 1 / -1;
    grid-row: 5;
}

.portfolio-card .card-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    min-height: 120px;
    justify-content: center;
}

.portfolio-card .card-row::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffc107;
    opacity: 0.6;
}

.portfolio-card .card-row:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 193, 7, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.portfolio-card .card-row.profit-positive {
    border-color: rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.02));
}

.portfolio-card .card-row.profit-negative {
    border-color: rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.02));
}

.portfolio-card .card-row.profit-positive .card-value {
    color: #10b981;
    font-size: 1.2rem;
    font-weight: 800;
}

.portfolio-card .card-row.profit-negative .card-value {
    color: #ef4444;
    font-size: 1.2rem;
    font-weight: 800;
}

.portfolio-card .card-row:nth-child(6) .card-label {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.portfolio-card .card-row:nth-child(6) .card-value {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.portfolio-card .card-row:nth-child(6) .card-percent {
    font-size: 0.8rem;
}

.portfolio-card .card-label {
    font-size: 0.8rem;
    color: #a0a0a0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.portfolio-card .card-value {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
}

.portfolio-card .card-percent {
    font-size: 0.7rem;
    color: inherit;
    opacity: 0.9;
    font-weight: 600;
}

.profit-positive {
    color: #27ae60;
    font-weight: 600;
}

.profit-negative {
    color: #ef4444;
    font-weight: 600;
}

.main-profit-loss {
    display: flex;
    flex-direction: column;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.main-profit-amount {
    margin-bottom: 5px;
}

.main-profit-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    padding-left: 5px;
}

.main-profit-arrow {
    font-size: 1em;
}

.main-profit-percent {
    font-size: 0.9em;
    opacity: 0.8;
}

.main-profit-title {
    font-size: 0.65rem;
    color: #a0a0a0;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
    margin-left: 2px;
    margin-top: 30px;
}

.performance-section {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 24px 18px 18px 18px;
    margin: 30px 0 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.performance-title {
    font-size: 1.1rem;
    color: #ffc107;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 18px;
    display: block;
}

.performance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px 18px;
}

.performance-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.performance-row span {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.performance-value,
.performance-percent {
    font-weight: 700;
}

.performance-value.green,
.performance-percent.green {
    color: #10b981;
}

.performance-value.red,
.performance-percent.red {
    color: #ef4444;
}

/* Mobil Optimizasyonu */
@media (max-width: 480px) {
    body {
        padding: 5px;
    }

    .container {
        max-width: 100%;
    }

    .header h1 {
        font-size: 1.6rem;
    }

    .main-card {
        padding: 20px;
    }

    .current-price {
        font-size: 2rem;
    }

    .tl-price {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .usd-rate {
        text-align: right;
    }


    .price-row {
        flex-direction: row;
        gap: 5px;
        align-items: flex-start;
    }

    .price-info {
        text-align: left;
        flex: 1;
    }

    .price-change {
        justify-content: flex-start;
    }

    .status-info {
        text-align: right;
        align-items: flex-end;
        width: auto;
        min-width: auto;
    }

    .status-indicator {
        justify-content: flex-end;
    }

    .last-update {
        text-align: right;
    }

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .detail-card {
        padding: 12px;
    }

    .card-value {
        font-size: 1rem;
    }

    .chart-section {
        padding: 10px;
    }

    .chart-header {
        align-items: flex-start;
        gap: 15px;
    }

    .chart-header h2 {
        font-size: 1.1rem;
    }

    .time-filters {
        width: 100%;
        justify-content: center;
    }

    .time-btn {
        flex: 1;
        min-width: auto;
        font-size: 0.75rem;
        padding: 6px 8px;
    }

    .volume-change {
        margin-top: 8px;
    }

    .volume-amount {
        font-size: 0.9rem;
        padding: 3px 10px;
    }

    .volume-analysis {
        font-size: 0.7rem;
        margin-top: 3px;
    }

    .gauge-number {
        font-size: 1.5rem;
    }

    .gauge-text {
        font-size: 0.8rem;
    }

    .gauge-labels {
        margin-bottom: 8px;
    }

    .gauge-label {
        font-size: 0.6rem;
    }

    .chart-container {
        height: 300px;
    }
    
    .volume-chart-container {
        height: 120px;
    }

    .portfolio-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }



    .portfolio-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .portfolio-card {
        padding: 15px;
    }

    .card-header {
        align-items: flex-start;
        gap: 5px;
    }

    .portfolio-card .card-content {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, auto);
        gap: 10px;
    }

    .portfolio-card .card-row:nth-child(6) {
        grid-column: 1 / -1;
        grid-row: 4;
    }

    .portfolio-card .card-row {
        padding: 15px 10px;
        min-height: 100px;
    }

    .portfolio-card .card-label {
        font-size: 0.7rem;
        margin-bottom: 5px;
    }

    .portfolio-card .card-value {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }

    .portfolio-card .card-percent {
        font-size: 0.6rem;
    }

    .portfolio-card .card-row:nth-child(6) .card-label {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .portfolio-card .card-row:nth-child(6) .card-value {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .portfolio-card .card-row:nth-child(6) .card-percent {
        font-size: 0.7rem;
    }

    .card-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .modal-header,
    .modal-body {
        padding: 20px;
    }

    .form-actions {
        flex-direction: column;
    }


}

/* Ekonomi Haberleri Modern Kart Tasarımı */
.bg-pholder {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 30px;
    padding: 10px;
    margin-top: 100px;
}

.trt-news-list {
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    padding-bottom: 8px;
    padding-top: 10px;
}

.trt-news-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 12px 16px 10px 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: box-shadow 0.2s;
}

.trt-news-card:hover {
    box-shadow: 0 4px 16px rgba(79, 163, 255, 0.08);
    background: rgba(79, 163, 255, 0.04);
}

.trt-news-date {
    font-size: 0.80em;
    color: #4fa3ff;
    font-weight: 700;
    margin-bottom: 2px;
    opacity: 0.8;
    letter-spacing: 1px;
    padding: 0;
    padding-bottom: 10px;
}

.trt-news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trt-news-title {
    color: #fff;
    font-size: 1.08em;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 2px;
    margin-top: 0;
    display: block;
    line-height: 1.3;
    padding: 0;
}

.trt-news-title:hover {
    color: #4fa3ff;
    text-decoration: underline;
}

.trt-news-source {
    font-size: 0.85em;
    color: #4fa3ff;
    opacity: 0.7;
    font-weight: 600;
    margin-top: 2px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
}

.trt-news-source-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4fa3ff;
    display: inline-block;
}

.text-blue50 {
    color: #4fa3ff;
}

.text-gray750 {
    color: #a0a0a0;
}

.bg-divide {
    background: #232a3a;
}

@media (max-width: 600px) {
    .trt-news-card {
        flex-direction: column;
        gap: 6px;
        padding: 10px 8px 8px 8px;
        margin-bottom: 8px;
    }

    .trt-news-date {
        min-width: unset;
        font-size: 0.95em;
        margin-bottom: 2px;
        margin-top: 0;
        text-align: left;
    }

    .trt-news-title {
        font-size: 1em;
        white-space: normal;
    }

    .trt-news-content {
        gap: 1px;
    }

    .trt-news-list {
        max-height: 300px;
        padding-bottom: 0;
        padding-top: 10px;
    }
}

@media (max-width: 600px) {
    .chart-container {
        width: 92vw !important;
        min-width: 260px;
        max-width: 100vw;

    }
}


.chart-type-btn {
    padding: 8px 5px;
    border: 1px solid #ffc107;
    background: transparent;
    color: #ffc107;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.chart-type-btn:hover {
    background: rgba(255, 193, 7, 0.1);
}

.chart-type-btn.active {
    background: #ffc107;
    color: #222;
}

.chart-type-btn {
    padding: 8px 10px;
    border: 1px solid #ffc107;
    background: transparent;
    color: #ffc107;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.chart-type-btn:hover {
    background: rgba(255, 193, 7, 0.1);
}

.chart-type-btn.active {
    background: #ffc107;
    color: #222;
}

.zoom-btn {
    padding: 8px 10px;
    font-size: 0.8rem;
}

.zoom-btn:active {
    transform: scale(0.95);
}

/* En Yüksek/En Düşük kart renkleri */
.detail-card.high-approaching {
    background: rgba(255, 193, 7, 0.1) !important;
    border: 1px solid rgba(255, 193, 7, 0.3) !important;
}

.detail-card.high-reached {
    background: rgba(0, 230, 118, 0.1) !important;
    border: 1px solid rgba(0, 230, 118, 0.3) !important;
}

.detail-card.high-exceeded {
    background: rgba(0, 150, 80, 0.15) !important;
    border: 1px solid rgba(0, 150, 80, 0.4) !important;
}

.detail-card.low-approaching {
    background: rgba(255, 193, 7, 0.1) !important;
    border: 1px solid rgba(255, 193, 7, 0.3) !important;
}

.detail-card.low-reached {
    background: rgba(255, 23, 68, 0.1) !important;
    border: 1px solid rgba(255, 23, 68, 0.3) !important;
}

.detail-card.low-exceeded {
    background: rgba(200, 0, 50, 0.15) !important;
    border: 1px solid rgba(200, 0, 50, 0.4) !important;
}

/* Kart durum mesajları */
.card-status {
    font-size: 0.6rem;
    margin-top: 8px;
    padding: 4px 4px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 150px;
}

.detail-card.high-approaching .card-status {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.detail-card.high-reached .card-status {
    background: rgba(0, 230, 118, 0.2);
    color: #00e676;
}

.detail-card.high-exceeded .card-status {
    background: rgba(0, 150, 80, 0.3);
    color: #00ff88;
}

.detail-card.low-approaching .card-status {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.detail-card.low-reached .card-status {
    background: rgba(255, 23, 68, 0.2);
    color: #ff1744;
}

.detail-card.low-exceeded .card-status {
    background: rgba(200, 0, 50, 0.3);
    color: #ff6b6b;
}

.chart-type-btn {
    padding: 8px 12px;
    border: 1px solid #ffc107;
    background: transparent;
    color: #ffc107;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.chart-type-btn:hover {
    background: rgba(255, 193, 7, 0.1);
}

.chart-type-btn.active {
    background: #ffc107;
    color: #222;
}

/* Mum grafiği buton özel stili */
.chart-type-btn[data-type="candlestick"] {
    position: relative;
}

.chart-type-btn[data-type="candlestick"] i {
    font-size: 1.1rem;
}

/* En Yüksek/En Düşük kart renkleri */
.detail-card.high-approaching {
    background: rgba(255, 193, 7, 0.1) !important;
    border: 1px solid rgba(255, 193, 7, 0.3) !important;
}

.detail-card.high-reached {
    background: rgba(0, 230, 118, 0.1) !important;
    border: 1px solid rgba(0, 230, 118, 0.3) !important;
}

.detail-card.high-exceeded {
    background: rgba(0, 150, 80, 0.15) !important;
    border: 1px solid rgba(0, 150, 80, 0.4) !important;
}

.detail-card.low-approaching {
    background: rgba(255, 193, 7, 0.1) !important;
    border: 1px solid rgba(255, 193, 7, 0.3) !important;
}

.detail-card.low-reached {
    background: rgba(255, 23, 68, 0.1) !important;
    border: 1px solid rgba(255, 23, 68, 0.3) !important;
}

.detail-card.low-exceeded {
    background: rgba(200, 0, 50, 0.15) !important;
    border: 1px solid rgba(200, 0, 50, 0.4) !important;
}

/* Ağırlıklı ortalama kart renkleri */
.detail-card.avg-approaching {
    background: rgba(255, 193, 7, 0.1) !important;
    border: 1px solid rgba(255, 193, 7, 0.3) !important;
}

.detail-card.avg-reached {
    background: rgba(79, 163, 255, 0.1) !important;
    border: 1px solid rgba(79, 163, 255, 0.3) !important;
}

.detail-card.avg-exceeded {
    background: rgba(0, 150, 255, 0.15) !important;
    border: 1px solid rgba(0, 150, 255, 0.4) !important;
}

/* Kart durum mesajları */
.card-status {
    font-size: 0.75rem;
    margin-top: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.detail-card.high-approaching .card-status {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.detail-card.high-reached .card-status {
    background: rgba(0, 230, 118, 0.2);
    color: #00e676;
}

.detail-card.high-exceeded .card-status {
    background: rgba(0, 150, 80, 0.3);
    color: #00ff88;
}

.detail-card.low-approaching .card-status {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.detail-card.low-reached .card-status {
    background: rgba(255, 23, 68, 0.2);
    color: #ff1744;
}

.detail-card.low-exceeded .card-status {
    background: rgba(200, 0, 50, 0.3);
    color: #ff6b6b;
}

.detail-card.avg-approaching .card-status {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.detail-card.avg-reached .card-status {
    background: rgba(79, 163, 255, 0.2);
    color: #4fa3ff;
}

.detail-card.avg-exceeded .card-status {
    background: rgba(0, 150, 255, 0.3);
    color: #0096ff;
}

/* Trend ve Destek/Direnç kart renkleri */
.detail-card.trend-bullish {
    background: rgba(0, 230, 118, 0.1) !important;
    border: 1px solid rgba(0, 230, 118, 0.3) !important;
}

.detail-card.trend-bearish {
    background: rgba(255, 23, 68, 0.1) !important;
    border: 1px solid rgba(255, 23, 68, 0.3) !important;
}

.detail-card.trend-neutral {
    background: rgba(255, 193, 7, 0.1) !important;
    border: 1px solid rgba(255, 193, 7, 0.3) !important;
}

.detail-card.support-near {
    background: rgba(255, 23, 68, 0.1) !important;
    border: 1px solid rgba(255, 23, 68, 0.3) !important;
}

.detail-card.resistance-near {
    background: rgba(0, 230, 118, 0.1) !important;
    border: 1px solid rgba(0, 230, 118, 0.3) !important;
}

.detail-card.trend-bullish .card-status {
    background: rgba(0, 230, 118, 0.2);
    color: #00e676;
}

.detail-card.trend-bearish .card-status {
    background: rgba(255, 23, 68, 0.2);
    color: #ff1744;
}

.detail-card.trend-neutral .card-status {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.detail-card.support-near .card-status {
    background: rgba(255, 23, 68, 0.2);
    color: #ff1744;
}

.detail-card.resistance-near .card-status {
    background: rgba(0, 230, 118, 0.2);
    color: #00e676;
}


/* Trend analizi kart renkleri */
.detail-card.trend-up {
    background: rgba(0, 230, 118, 0.1) !important;
    border: 1px solid rgba(0, 230, 118, 0.3) !important;
}

.detail-card.trend-up-strong {
    background: rgba(0, 200, 83, 0.15) !important;
    border: 1px solid rgba(0, 200, 83, 0.4) !important;
}

.detail-card.trend-down {
    background: rgba(255, 23, 68, 0.1) !important;
    border: 1px solid rgba(255, 23, 68, 0.3) !important;
}

.detail-card.trend-down-strong {
    background: rgba(220, 0, 0, 0.15) !important;
    border: 1px solid rgba(220, 0, 0, 0.4) !important;
}

.detail-card.trend-neutral {
    background: rgba(158, 158, 158, 0.1) !important;
    border: 1px solid rgba(158, 158, 158, 0.3) !important;
}

.detail-card.trend-up .card-status {
    background: rgba(0, 230, 118, 0.2);
    color: #00e676;
}

.detail-card.trend-up-strong .card-status {
    background: rgba(0, 200, 83, 0.3);
    color: #00c853;
    font-weight: bold;
}

.detail-card.trend-down .card-status {
    background: rgba(255, 23, 68, 0.2);
    color: #ff1744;
}

.detail-card.trend-down-strong .card-status {
    background: rgba(220, 0, 0, 0.3);
    color: #d32f2f;
    font-weight: bold;
}

.detail-card.trend-neutral .card-status {
    background: rgba(158, 158, 158, 0.2);
    color: #9e9e9e;
}



/* Basit Fear & Greed Gauge Stilleri */
.simple-gauge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
}

.gauge-bar {
    position: relative;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, #00e676, #4caf50, #ffc107, #ff9800, #ff1744);
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
}

.gauge-fill {
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.gauge-marker {
    position: absolute;
    top: -6px;
    width: 4px;
    height: 20px;
    background: #ffffff;
    border-radius: 2px;
    transform: translateX(-50%);
    transition: left 0.5s ease;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.gauge-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
}

.gauge-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gauge-label.fear {
    color: #00e676;
}

.gauge-label.greed {
    color: #ff1744;
}

.gauge-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    text-align: center;
}

.gauge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #a0a0a0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}




/* İndikatör Toggle Buton Stilleri */
.indicator-toggles {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.indicator-toggle-btn {
    background: rgba(79, 163, 255, 0.1);
    border: 1px solid rgba(79, 163, 255, 0.3);
    color: #4fa3ff;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    min-width: 120px;
    justify-content: center;
}

.indicator-toggle-btn:hover {
    background: rgba(79, 163, 255, 0.2);
}

.indicator-toggle-btn:active {
    transform: scale(0.95);
}

.indicator-toggle-btn.active {
    background: rgba(79, 163, 255, 0.3);
}

.indicator-toggle-btn:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #a0a0a0;
}

.indicator-toggle-btn i {
    font-size: 0.8rem;
}

.indicator-toggle-btn span {
    font-size: 0.7rem;
    font-weight: 500;
}

/* Mobil için indicator-toggles düzenlemesi */
@media (max-width: 768px) {
    .indicator-toggles {
        flex-wrap: wrap !important;
        gap: 6px !important;
        justify-content: flex-start !important;
    }

    .indicator-toggle-btn {
        min-width: 100px;
        padding: 4px 8px !important;
        font-size: 0.65rem !important;
    }

    .indicator-toggle-btn span {
        font-size: 0.65rem !important;
    }

    .indicator-toggle-btn i {
        font-size: 0.7rem !important;
    }
}


/* AL/SAT Fiyat Analizi Stilleri */
.refresh-btn {
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid rgba(255, 193, 7, 0.5);
    color: #ffc107;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.refresh-btn:hover {
    background: rgba(255, 193, 7, 0.3);
    border-color: rgba(255, 193, 7, 0.8);
}

.price-analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.price-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 193, 7, 0.1);
    border-radius: 12px;
    padding: 16px;
    backdrop-filter: blur(5px);
}

.price-card h3 {
    color: #ffc107;
    margin: 0 0 12px 0;
    font-size: 1.1rem;
}

.price-item {
    margin-bottom: 12px;
    padding: 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.02);
}

.buy-zone {
    border-left: 4px solid #4caf50;
    background: rgba(76, 175, 80, 0.1);
}

.sell-zone {
    border-left: 4px solid #f44336;
    background: rgba(244, 67, 54, 0.1);
}

.current-pricee {
    border-left: 4px solid #2196f3;
    background: rgba(33, 150, 243, 0.1);
}

.price-label {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.price-value {
    color: #cccccc;
    font-size: 0.9rem;
}

.price-status {
    font-weight: 600;
    margin-top: 4px;
    font-size: 0.85rem;
}

.price-status.buy {
    color: #4caf50;
}

.price-status.sell {
    color: #f44336;
}

.price-status.current {
    color: #2196f3;
}

.price-status.wait {
    color: #ff9800;
}

@media (max-width: 768px) {
    .price-analysis-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .price-card {
        padding: 12px;
    }
}

.headerr h1 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #f7931a, #ffc107);
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.headerr {
    text-align: center;
    margin-bottom: 30px;
}
.headerr .subtitle {
    color: #ffffff;
    font-size: 0.9rem;
}

/* Status-info içindeki günlük kazanç stilleri */
.daily-profit-status {
    margin-top:0px;
    padding-top: 0px;
}



.daily-profit-label {
    font-size: 0.7rem;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.daily-profit-value {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.daily-amount {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
}

.daily-percent {
    font-size: 0.65rem;
    font-weight: 600;
}

/* Günlük kazanç renk stilleri */
.daily-profit-value .daily-amount:contains('+') {
    color: #27ae60 !important;
}

.daily-profit-value .daily-amount:contains('-') {
    color: #ef4444 !important;
}

.daily-profit-value .daily-percent:contains('+') {
    color: #27ae60 !important;
}

.daily-profit-value .daily-percent:contains('-') {
    color: #ef4444 !important;
}

/* Tek Coin Kartı Stilleri */
.single-coin-card {
    margin-bottom: 25px;
    background: #1a1e2a;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.single-coin-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 50%;
    transform: translate(20px, -20px);
}

.coin-card-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.coin-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    overflow: hidden;
    position: relative;
}

.coin-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.coin-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: none;
}

.coin-icon i[style*="display: flex"] {
    display: flex !important;
}

.coin-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.coin-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.coin-symbol {
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modern Coin Selector Tasarımı */
.coin-selector {
    position: relative;
    min-width: 200px;
}

.coin-select-dropdown {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.coin-select-dropdown:hover {
    border-color: rgba(255, 193, 7, 0.6);
}

.coin-select-dropdown:focus {
    outline: none;
    border-color: #ffc107;
}

/* Custom dropdown arrow */
.coin-selector::after {
    content: '▼';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffc107;
    font-size: 0.8rem;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1;
}

.coin-select-dropdown:focus + .coin-selector::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Dropdown options styling */
.coin-select-dropdown option {
    background: #1a1e2a;
    color: #ffffff;
    padding: 12px 16px;
    font-weight: 500;
    border: none;
}



.coin-select-dropdown option:checked {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.1));
    color: #d6a81f;
}

/* Active state */
.coin-select-dropdown:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.3);
}

/* Loading state */
.coin-select-dropdown:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Animation for selection change */
.coin-select-dropdown {
    animation: selectGlow 0.3s ease-out;
}

@keyframes selectGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

/* Mobil responsive */
@media (max-width: 768px) {
    .single-coin-card {
        padding: 15px;
    }

    .coin-card-content {
        flex-direction: row;
        gap: 15px;
        align-items: center;
    }

    .coin-icon {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }

    .coin-info {
        text-align: left;
        flex: 1;
    }

    .coin-name {
        font-size: 0.95rem;
        margin-bottom: 2px;
    }

    .coin-symbol {
        font-size: 0.8rem;
        opacity: 0.8;
    }

    .coin-selector {
        flex-shrink: 0;
        min-width: 120px;
    }

    .coin-select-dropdown {
        font-size: 0.8rem;
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .single-coin-card {
        padding: 12px;
    }

    .coin-card-content {
        flex-direction: row;
        gap: 12px;
        align-items: center;
    }

    .coin-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .coin-info {
        text-align: left;
        flex: 1;
    }

    .coin-name {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }

    .coin-symbol {
        font-size: 0.75rem;
        opacity: 0.8;
    }

    .coin-selector {
        flex-shrink: 0;
        min-width: 100px;
    }

    .coin-select-dropdown {
        padding: 8px 12px;
        font-size: 0.7rem;
    }
}

/* Market Dominance Stilleri */
/* TradingView Widget Stilleri */
.tradingview-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 193, 7, 0.2);
  backdrop-filter: blur(10px);
}

/* Symbol Overview Widget Stilleri */
.symbol-overview-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 193, 7, 0.2);
  backdrop-filter: blur(10px);
}

#symbol-overview-widget {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* Market Symbols Bölümü */
.market-symbols-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 193, 7, 0.2);
  backdrop-filter: blur(10px);
  height: 400px;
}

#market-symbols-widget {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* Ekonomik Takvimler Bölümü */
.economic-calendars-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 193, 7, 0.2);
  backdrop-filter: blur(10px);
  height: 500px;
}

.calendar-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.calendar-tab {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.calendar-tab:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

.calendar-tab.active {
  border-color: #00d4aa;
  background: rgba(0, 212, 170, 0.1);
  color: #00d4aa;
}

#economic-calendar-widget {
  width: 100%;
  height: calc(100% - 60px);
  border-radius: 8px;
}

/* Investing.com Ekonomik Takvim */
.investing-calendar-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 193, 7, 0.2);
  backdrop-filter: blur(10px);
}

.investing-calendar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
}

.investing-calendar-header i {
  font-size: 24px;
  color: #00d4aa;
}

.investing-calendar-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.investing-calendar-container {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.investing-calendar-container iframe {
  width: 100%;
  height: 467px;
  border: none;
  border-radius: 12px 12px 0 0;
  background: rgba(255, 255, 255, 0.05);
}

.powered-by {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 15px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 12px 12px;
}

.powered-by span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  color: #cccccc;
  text-decoration: none;
}

.powered-by a {
  font-size: 11px;
  color: #00d4aa;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.powered-by a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Mobil responsive */
@media (max-width: 768px) {

  
  .investing-calendar-header h3 {
    font-size: 18px;
  }
  
  .investing-calendar-container iframe {
    height: 400px;
  }
}

/* TradingView Kripto Heatmap */
.heatmap-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 193, 7, 0.2);
  backdrop-filter: blur(10px);
}

.heatmap-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
}

.heatmap-header i {
  font-size: 24px;
  color: #ff6b35;
}

.heatmap-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.heatmap-container {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.heatmap-container {
  position: relative;
  width: 100%;
  height: 700px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.heatmap-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

/* Mobil responsive */
@media (max-width: 768px) {
  .heatmap-section {
    padding: 15px;
  }
  
  .heatmap-header h3 {
    font-size: 18px;
  }
  
  .heatmap-container {
    height: 600px;
  }
  
  /* Mobil touch sorunları için düzeltmeler */
  .heatmap-container iframe,
  .stock-heatmap-container iframe,
  .technical-analysis-container iframe,
  .economic-calendars-section iframe,
  .investing-calendar-container iframe {
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Widget container'lar için scroll düzeltmesi */
  .heatmap-container,
  .stock-heatmap-container,
  .technical-analysis-container,
  .economic-calendars-section,
  .investing-calendar-container {
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
  }
  
  /* Sayfa scroll'unu engellememesi için */
  body {
    -webkit-overflow-scrolling: touch;
  }
}

/* TradingView Stock Heatmap */
.stock-heatmap-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 193, 7, 0.2);
  backdrop-filter: blur(10px);
}

.stock-heatmap-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
}

.stock-heatmap-header i {
  font-size: 24px;
  color: #4CAF50;
}

.stock-heatmap-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.stock-heatmap-container {
  position: relative;
  width: 100%;
  height: 700px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stock-heatmap-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

/* Mobil responsive */
@media (max-width: 768px) {
  .stock-heatmap-section {
    padding: 15px;
  }
  
  .stock-heatmap-header h3 {
    font-size: 18px;
  }
  
  .stock-heatmap-container {
    height: 600px;
  }
}

/* TradingView Technical Analysis */
.technical-analysis-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 193, 7, 0.2);
  backdrop-filter: blur(10px);
}

.technical-analysis-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
}

.technical-analysis-header i {
  font-size: 24px;
  color: #2196F3;
}

.technical-analysis-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.technical-analysis-container {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tradingview-widget-container {
  width: 100%;
  height: 450px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.tradingview-widget-container__widget {
  width: 100%;
  height: 450px;
  border-radius: 12px;
}

/* Mobil responsive */
@media (max-width: 768px) {
 
  
  .technical-analysis-header h3 {
    font-size: 18px;
  }
  
  .tradingview-widget-container {
    height: 400px;
  }
  
  .tradingview-widget-container__widget {
    height: 400px;
  }
  
  /* Technical Analysis mobil düzeltmeleri */
  .technical-analysis-section {
    padding: 15px;
  }
  
  .technical-analysis-header h3 {
    font-size: 18px;
  }
  
  .tradingview-widget-container {
    height: 400px;
  }
  
  .tradingview-widget-container__widget {
    height: 400px;
  }
}



.tradingview-container {
  height: 600px;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1e2b;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#tradingview-widget {
  width: 100%;
  height: 100%;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
  .tradingview-header {
    flex-direction: column;
    align-items: stretch;
  }
  
  .tradingview-header h2 {
    text-align: center;
    font-size: 1.3rem;
  }
  
  .tradingview-controls {
    justify-content: center;
  }
  
  .tradingview-container {
    height: 400px;
  }
}

@media (max-width: 480px) {
 
  
  .tradingview-container {
    height: 350px;
  }
}

/* Genel Mobil Touch Düzeltmeleri */
@media (max-width: 768px) {
  /* Tüm iframe'ler için touch düzeltmesi */
  iframe {
    pointer-events: auto !important;
    touch-action: manipulation !important;
    -webkit-overflow-scrolling: touch !important;
  }
  
  /* Widget container'lar için scroll düzeltmesi */
  .heatmap-container,
  .stock-heatmap-container,
  .technical-analysis-container,
  .economic-calendars-section,
  .investing-calendar-container,
  .tradingview-widget-container {
    -webkit-overflow-scrolling: touch !important;
    overflow: hidden !important;
  }
  
  /* Sayfa scroll'unu engellememesi için */
  body {
    -webkit-overflow-scrolling: touch !important;
  }
}

/* Mobil Ticker Responsive */
@media (max-width: 768px) {
  .live-price-ticker {
    padding: 3px 0;
    display: flex;
    align-items: center;
  }
  
  .ticker-container {
    display: flex;
    align-items: center;
  }
  
  .ticker-content {
    display: flex;
    align-items: center;
  }
    
    .ticker-item {
      margin-right: 15px;
      font-size: 10px;
      display: flex;
      align-items: center;
    }
    
    .ticker-symbol {
      margin-right: 4px;
    }
    
    .ticker-price {
      margin-right: 4px;
    }
}

@media (max-width: 480px) {
  .live-price-ticker {
    padding: 2px 0;
    display: flex;
    align-items: center;
  }
  
  .ticker-container {
    display: flex;
    align-items: center;
  }
  
  .ticker-content {
    display: flex;
    align-items: center;
  }
  
  .ticker-item {
    margin-right: 5px;
    padding: 1px 6px;
    font-size: 9px;
    display: flex;
    align-items: center;
  }
  
  .ticker-symbol {
    margin-right: 3px;
  }
  
  .ticker-price {
    margin-right: 3px;
  }
}