/* --- CATEGORY DETAIL PAGE (SERVIS LİSTELEME) --- */


/* Üst Başlık Alanı */

.category-header {
    background-color: var(--dark-bg);
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 70px;
    
    /* Noktaların dışarı taşmaması ve konumlanması için gerekli: */
    position: relative; 
    overflow: hidden; 
}

/* Hafif Beyaz Noktalar Deseni */
.category-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* 1.5px çapında, %10 opaklıkta beyaz noktalar */
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px);
    
    /* Noktaların sıklığı (30px aralıklarla) */
    background-size: 30px 30px; 
    
    /* Arka planın üzerinde ama yazının altında kalsın */
    z-index: 1; 
    pointer-events: none; /* Tıklamaları engellememesi için */
}

/* İçerik (Yazılar) noktaların üstünde kalsın diye */
.category-header .container {
    position: relative;
    z-index: 2;
}

.category-title {
    color: white;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.category-desc {
    color: #94a3b8;
}


/* --- PLATFORM CARDS --- */

.platform-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    height: 100%;
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
    display: block;
    /* Link kapsayıcısı olduğu için blok yapıyoruz */
    color: inherit;
    /* Link rengini miras al */
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
    border-color: transparent;
}

.platform-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.platform-card:hover::after {
    transform: scaleX(1);
}

.platform-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    transition: transform 0.3s;
    display: inline-block;
    /* İkonun düzgün hizalanması için */
}

.platform-card:hover .platform-icon {
    transform: scale(1.1) rotate(5deg);
}

.icon-instagram {
    color: #E1306C;
}

.icon-tiktok {
    color: #000000;
}

.icon-youtube {
    color: #FF0000;
}

.icon-twitter {
    color: #1DA1F2;
}

.icon-facebook {
    color: #1877F2;
}

.icon-twitch {
    color: #9146FF;
}

.icon-spotify {
    color: #1DB954;
}

.icon-telegram {
    color: #0088cc;
}


/* Link altındaki çizgiyi kaldır */

a.platform-card {
    text-decoration: none;
    color: inherit;
}