/* Ana kapsayıcı */
.kka-wrap {
    font-family: 'Poppins', sans-serif; /* WordPress temasının fontu da kullanılabilir */
    background-color: #f1f5f9; /* Hafif gri arka plan */
    padding: 20px;
    border-radius: 20px;
}

.kka-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Banner Alanı */
.kka-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%); /* Koyu lacivert gradyan */
    color: white;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Başlık */
.kka-header {
    text-align: center;
    position: relative;
    z-index: 10;
}

.kka-header h2 {
    color: white;
    font-size: 24px;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
}

.kka-subtitle {
    background-color: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 14px;
    margin-top: 5px;
}

.kka-help-icon {
    position: absolute;
    top: 0;
    right: 0;
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    cursor: pointer;
}

/* Ana İçerik: Ağaç, Kitap Sayısı, Saray */
.kka-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
    position: relative;
    z-index: 5;
}

.kka-island-left, .kka-island-right {
    flex: 1;
    position: relative;
}

.kka-island-left img, .kka-island-right img {
    max-width: 100%;
    height: auto;
}

/* Orta Kitap Sayısı */
.kka-book-count-circle {
    width: 200px;
    height: 200px;
    background-color: #3b82f6; /* Canlı mavi */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.7); /* Neon Glow */
    z-index: 10;
}

.kka-book-count-inner {
    text-align: center;
}

.kka-count-number {
    display: block;
    font-size: 64px;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.kka-count-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* İlerleme Bölümü */
.kka-progress-section {
    text-align: center;
    margin-top: 20px;
}

.kka-current-status {
    font-weight: bold;
    margin-bottom: 10px;
}

.kka-progress-bar-container {
    width: 80%;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}

.kka-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffedd5 0%, #fb923c 50%, #facc15 100%); /* Turuncu-Sarı gradyan */
    border-radius: 10px;
    transition: width 0.5s ease; /* Hareket efekti */
}

.kka-progress-message {
    font-size: 14px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.8);
}

/* Alt Bilgi Panelleri */
.kka-info-panels {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.kka-panel {
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    flex: 1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.kka-panel h3 {
    margin: 0 0 15px 0;
    font-size: 16px;
    text-transform: uppercase;
    color: #475569;
}

/* Rozetler */
.kka-badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
}

.kka-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kka-badge-icon {
    font-size: 32px;
    margin-bottom: 5px;
    /* Neon Glow Efektleri */
}

.kka-icon-hizli { text-shadow: 0 0 10px rgba(250, 204, 21, 0.7); color: #facc15; }
.kka-icon-uzay { text-shadow: 0 0 10px rgba(56, 189, 248, 0.7); color: #38bdf8; }
.kka-icon-macera { text-shadow: 0 0 10px rgba(74, 222, 128, 0.7); color: #4ade80; }

.kka-badge-title {
    font-size: 12px;
    color: #64748b;
}

/* Hedef Dairesi */
.kka-goal-info {
    text-align: center;
}

.kka-goal-number {
    font-size: 32px;
    font-weight: bold;
    color: #4ade80; /* Yeşil */
    margin-bottom: 5px;
}

.kka-goal-circle-progress {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 10px auto;
    background-color: #e2e8f0;
}

.kka-goal-circle {
    width: 100%;
    height: 100%;
}