/* Ana Sayfa Stilleri */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-section h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: white; /* Başlık rengi ana sayfada beyaz */
}

.hero-section p {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto 40px;
}

.market-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.market-card {
    background-color: var(--module-bg); /* Yarı saydam modül arka planı */
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 280px;
    max-width: 32%;
    transition: transform 0.3s ease;
    color: var(--light-text-color); /* Metin rengi açık */
}

.market-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15); /* Hafif koyulaşma */
}

.market-card h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 1.5em;
}

.market-card .price {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 5px;
}

.market-card .change {
    font-weight: bold;
}

/* Yeni Özellikler Alanı Stilleri */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.feature-item {
    background-color: var(--module-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    color: var(--light-text-color);
}

.feature-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.feature-item i {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: var(--light-text-color);
}

.feature-item p {
    font-size: 1em;
    color: var(--text-color);
}


.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-item {
    background-color: var(--module-bg); /* Yarı saydam modül arka planı */
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    color: var(--light-text-color);
}

.news-item h4 {
    color: var(--light-text-color);
    margin-bottom: 10px;
}

.news-item .news-date {
    font-size: 0.9em;
    color: #bbb;
    margin-bottom: 10px;
}

.news-item p {
    font-size: 1em;
    margin-bottom: 15px;
}

.news-item .read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.news-item .read-more:hover {
    text-decoration: underline;
}