/* KAPSAYICI */
.phd-premium-container {
    background: linear-gradient(145deg, #1a1f2c, #131722);
    border-radius: 16px;
    padding: 20px;
    width: 100%;
    max-width: 100%;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
}

/* BAŞLIK */
.phd-premium-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.phd-premium-header h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #cbd5e1;
}

.phd-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981; /* Canlı Yeşil */
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: phdPulse 2s infinite;
}

@keyframes phdPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* CAM KART (GLASS CARD) */
.phd-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 12px;
    padding: 12px 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.phd-glass-card:last-child { margin-bottom: 0; }

.phd-glass-card:hover {
    transform: translateY(-3px) scale(1.02);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

/* NEON BAR (SOL ÇİZGİ) */
.phd-glass-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: #94a3b8; /* Varsayılan Gri */
    box-shadow: 2px 0 10px rgba(255,255,255,0.1);
}

/* TEMA RENKLERİ (NEON) */
.phd-glass-card.warm::before { background: #f59e0b; box-shadow: 2px 0 10px rgba(245, 158, 11, 0.5); } /* Altın */
.phd-glass-card.rainy::before { background: #3b82f6; box-shadow: 2px 0 10px rgba(59, 130, 246, 0.5); } /* Mavi */
.phd-glass-card.stormy::before { background: #8b5cf6; box-shadow: 2px 0 10px rgba(139, 92, 246, 0.5); } /* Mor */
.phd-glass-card.snowy::before { background: #e2e8f0; box-shadow: 2px 0 10px rgba(226, 232, 240, 0.5); } /* Beyaz */
.phd-glass-card.cold::before { background: #06b6d4; box-shadow: 2px 0 10px rgba(6, 182, 212, 0.5); } /* Cyan */

/* İÇERİK DÜZENİ */
.phd-card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* SOL TARAF (METİN) */
.phd-text-group {
    display: flex;
    flex-direction: column;
}

.phd-city-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.phd-desc-text {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
    text-transform: capitalize;
}

/* SAĞ TARAF (GÖRSEL) */
.phd-visual-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phd-temp-wrapper {
    position: relative;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.phd-temp-val {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.phd-degree {
    font-size: 14px;
    vertical-align: top;
    font-weight: 600;
    color: #cbd5e1;
}

.phd-icon-wrapper {
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
    animation: phdFloat 4s ease-in-out infinite;
}

.phd-icon-wrapper svg {
    width: 100%;
    height: 100%;
}

@keyframes phdFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .phd-temp-val { font-size: 24px; }
    .phd-icon-wrapper { width: 32px; height: 32px; }
}
