/* Genel Ayarlar ve Fontlar */
body {
    font-family: 'Oswald', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #1f2833 0%, #0b0c0e 100%); /* Koyu, modern arka plan */
    color: #c5c6c7;
    line-height: 1.6;
}

/* Başlık (Hero Section) Stili */
.hero-section {
    background-color: #008000; /* Çimen Yeşili */
    padding: 80px 20px;
    text-align: center;
    border-bottom: 8px solid #66fcf1; /* Neon Mavi/Turkuaz Vurgu */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-section h1 {
    font-size: 3.5em;
    margin: 10px 0 5px 0;
    color: white;
    text-transform: uppercase;
}

.hero-section p {
    font-size: 1.3em;
    color: #e0e0e0;
}

.fa-trophy {
    color: #ffcc00; /* Altın Sarısı Kupa */
}

/* Ana İçerik ve Kartlar */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Esnek kart düzeni */
    gap: 30px;
}

.card {
    background-color: #1f2833; /* Koyu Kart Arka Planı */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #66fcf133; /* Hafif çerçeve */
}

.card:hover {
    transform: translateY(-5px); /* Hafif yukarı kayma efekti */
    box-shadow: 0 15px 25px rgba(102, 252, 241, 0.2);
}

.card h2 {
    color: #66fcf1;
    border-bottom: 2px solid #66fcf155;
    padding-bottom: 10px;
    margin-top: 0;
    text-transform: uppercase;
}

/* Profil Kartı Özel Stili */
.profile-card {
    text-align: center;
    grid-column: span 1; /* Normalde 1 sütun kapla */
}

.profile-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Yuvarlak resim */
    object-fit: cover;
    border: 5px solid #ffcc00; /* Altın çerçeve */
    margin-bottom: 20px;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.stats div {
    font-size: 1.5em;
    font-weight: bold;
    color: #ffcc00;
}

.stats small {
    display: block;
    font-size: 0.7em;
    color: #c5c6c7;
}

/* Liste Kartı Stili */
.list-card ul {
    list-style: none;
    padding: 0;
}

.list-card li {
    background-color: #0d1218;
    padding: 12px;
    margin-bottom: 10px;
    border-left: 4px solid #008000;
    border-radius: 5px;
    font-weight: bold;
}

.list-card small {
    color: #66fcf1;
    display: block;
}

.icon-title {
    color: #ffcc00;
    margin-bottom: 10px;
}

/* Bilgi Kartı Stili */
.fact-item {
    background-color: #0d1218;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
}

/* Alt Kısım (Footer) Stili */
.footer-section {
    text-align: center;
    padding: 25px;
    background-color: #0b0c0e;
    color: #66fcf1;
    margin-top: 40px;
    font-size: 1em;
    border-top: 3px solid #1f2833;
}

/* Kalp Animasyonu */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.heart-pulse {
    color: #ff0000;
    display: inline-block;
    animation: pulse 1s infinite;
}