/* =========================================================
   RAŞİDİ FOOTER — TAM SÜRÜM (KIRMIZI HOVER)
   - 3 blok yan yana (grid 1fr 1fr 1fr)
   - Dost Sayfalar: metalik buton + KOYU KIRMIZI hover
   - Portal butonları: metalik buton + KOYU KIRMIZI hover
   - Sosyal medya: resimsiz CSS ikonlar, 6'lı tek satır
   ========================================================= */

/* Kırmızı hover rengi (değişken zaten tanımlı ama garanti olsun) */
:root {
    --rashidi-accent: #8b0000;
    --rashidi-accent-text: #ffffff;
    --rashidi-accent-glow: rgba(139, 0, 0, 0.85);
}

/* ---------- ANA FOOTER GRID: 3 BLOK YAN YANA ---------- */
#rashidi-footer-links {
    width: 100%;
    box-sizing: border-box;
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 14px !important;
    align-items: start;
    margin: 0 auto;
    padding: 22px 10px 18px;
    background: #111;
    border-top: 1px solid #333;
    border-bottom: 1px solid #000;
}

#rashidi-footer-links .rashidi-footer-box {
    min-width: 0;
    background: linear-gradient(to bottom, #252525 0%, #101010 52%, #050505 100%);
    border: 1px solid #333;
    border-radius: 7px;
    padding: 0 12px 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,.45);
}

#rashidi-footer-links .rashidi-footer-title {
    margin: 0 -12px 10px;
    padding: 9px 12px;
    text-align: center;
    background: var(--rashidi-accent, #8b0000);
    color: var(--rashidi-accent-text, #fff) !important;
    border-radius: 6px 6px 0 0;
    font-size: 13px;
    font-weight: bold;
    text-shadow: 0 1px 0 rgba(0,0,0,.5);
}

#rashidi-footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ---------- DOST SAYFALAR: METALİK + KIRMIZI HOVER ---------- */
#rashidi-footer-links .rashidi-friend-link,
#rashidi-footer-links .rashidi-friend-link:link,
#rashidi-footer-links .rashidi-friend-link:visited {
    display: block !important;
    margin: 5px 0 !important;
    padding: 7px 10px !important;
    border-radius: 7px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: bold !important;
    font-size: 12px !important;
    letter-spacing: .3px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 2px solid #000 !important;
    background: linear-gradient(to bottom,
        #4a4a4a 0%,
        #2a2a2a 45%,
        #111111 48%,
        #000000 100%) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.35),
        inset 0 -1px 0 rgba(0,0,0,0.6),
        0 2px 4px rgba(0,0,0,0.55) !important;
    text-shadow: 0 1px 1px #000 !important;
    transition: all .18s ease;
}

#rashidi-footer-links .rashidi-friend-link:hover,
#rashidi-footer-links .rashidi-friend-link:focus,
#rashidi-footer-links .rashidi-friend-link:active {
    color: #ffffff !important;
    text-decoration: none !important;
    background: var(--rashidi-accent, #8b0000) !important;   /* ← KOYU KIRMIZI */
    border-color: #000 !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.45),
        inset 0 -1px 0 rgba(0,0,0,0.45),
        0 0 14px var(--rashidi-accent-glow, rgba(139,0,0,0.85)),   /* ← KIRMIZI GLOW */
        0 2px 6px rgba(0,0,0,0.7) !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.9) !important;
    transform: translateY(-1px);
}

/* =========================================================
   SOSYAL MEDYA — RESİMSİZ CSS İKONLAR
   Saf CSS + Unicode glyph, parlak metalik, hover KIRMIZI glow
   ========================================================= */

#rashidi-footer-links .rashidi-social-grid {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 6px !important;
    margin-top: 8px;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
}

#rashidi-footer-links .rashidi-social {
    position: relative;
    width: 100% !important;
    aspect-ratio: 1 / 1;
    min-width: 0;
    max-width: 100%;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 !important;
    overflow: hidden;
    border-radius: 8px !important;
    border: 2px solid #000 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: bold;
    font-size: clamp(14px, 1.3vw, 22px);
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0,0,0,.9);
    background: linear-gradient(to bottom,
        #4a4a4a 0%,
        #2a2a2a 45%,
        #111111 48%,
        #000000 100%) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.35),
        inset 0 -1px 0 rgba(0,0,0,0.6),
        0 2px 4px rgba(0,0,0,0.55);
    transition: all .18s ease;
}

/* Hover: KIRMIZI parlak glow */
#rashidi-footer-links .rashidi-social:hover,
#rashidi-footer-links .rashidi-social:focus {
    background: var(--rashidi-accent, #8b0000) !important;    /* ← KOYU KIRMIZI */
    border-color: #000 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.5),
        inset 0 -1px 0 rgba(0,0,0,0.4),
        0 0 16px var(--rashidi-accent-glow, rgba(139,0,0,0.85)),   /* ← KIRMIZI GLOW */
        0 3px 8px rgba(0,0,0,0.7) !important;
}

/* Glyph fontu */
#rashidi-footer-links .rashidi-social::before {
    font-family: "Segoe UI Symbol", "Apple Color Emoji", "Segoe UI Emoji",
                 "Noto Color Emoji", Arial, sans-serif;
    font-weight: 700;
    font-size: 1em;
}

/* --- İKON KARAKTERLERİ --- */
#rashidi-footer-links .rashidi-social.rsi-youtube::before   { content: "▶"; }
#rashidi-footer-links .rashidi-social.rsi-radio::before     { content: "?"; }
#rashidi-footer-links .rashidi-social.rsi-blog::before      { content: "✎"; }
#rashidi-footer-links .rashidi-social.rsi-book::before      { content: "?"; }
#rashidi-footer-links .rashidi-social.rsi-toplist::before   { content: "★"; }
#rashidi-footer-links .rashidi-social.rsi-pinterest::before { content: "P"; font-family: Georgia, serif; }
#rashidi-footer-links .rashidi-social.rsi-flickr::before    { content: "◉"; }
#rashidi-footer-links .rashidi-social.rsi-deviantart::before{ content: "dA"; font-family: Arial, sans-serif; font-size: .7em; letter-spacing: -.5px; }
#rashidi-footer-links .rashidi-social.rsi-tarikat::before   { content: "☪"; }
#rashidi-footer-links .rashidi-social.rsi-facebook::before  { content: "f"; font-family: Georgia, serif; font-size: 1.05em; }
#rashidi-footer-links .rashidi-social.rsi-x::before         { content: "?"; }

/* Instagram: özel gradyan + glyph */
#rashidi-footer-links .rashidi-social.rsi-instagram {
    background:
        radial-gradient(circle at 30% 110%, #feda75 0%, #fa7e1e 25%, #d62976 55%, #962fbf 80%, #4f5bd5 100%) !important;
}
#rashidi-footer-links .rashidi-social.rsi-instagram::before { content: "◉"; }

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* 900px altı: 3 bloktan 2'ye */
@media (max-width: 900px) {
    #rashidi-footer-links {
        grid-template-columns: 1fr 1fr !important;
    }
    #rashidi-footer-links .rashidi-footer-box:last-child {
        grid-column: 1 / -1;
    }
    #rashidi-footer-links .rashidi-social-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    }
}

/* 620px altı: tek sütun */
@media (max-width: 620px) {
    #rashidi-footer-links {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding: 15px 8px !important;
    }
    #rashidi-footer-links .rashidi-footer-box:last-child {
        grid-column: auto;
    }
    #rashidi-footer-links .rashidi-social-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
        gap: 5px !important;
    }
    #rashidi-footer-links .rashidi-social {
        border-radius: 6px !important;
        border-width: 1.5px !important;
    }
    #rashidi-footer-links .rashidi-friend-link {
        font-size: 11px !important;
        padding: 6px 8px !important;
    }
}

/* 420px altı */
@media (max-width: 420px) {
    #rashidi-footer-links .rashidi-social-grid {
        gap: 4px !important;
    }
    #rashidi-footer-links .rashidi-social {
        border-radius: 5px !important;
    }
}

/* YEDEK: portal buton rollover — global.css ezilirse diye */
body .rashidi-announcement-more a:hover,
body .rashidi-quick-links a:hover {
    color: #ffffff !important;
    background: var(--rashidi-accent, #8b0000) !important;
    background-image: none !important;
    border-color: #000 !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.5),
        inset 0 -1px 0 rgba(0,0,0,0.4),
        0 0 14px var(--rashidi-accent-glow, rgba(139,0,0,0.85)),
        0 2px 6px rgba(0,0,0,0.7) !important;
}

/* =========================================================
   RAŞİDİ TOPLIST — PARLAK METALİK BUTONLAR
   Her butonun hover'ı FARKLI RENK
   ========================================================= */

#rashidi-toplist {
	width: 100%;
	max-width: 1100px;
	margin: 18px auto 10px;
	padding: 0 10px;
	box-sizing: border-box;
}

/* Başlık */
#rashidi-toplist .rashidi-toplist-title {
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	color: #ffffff;
	padding: 8px 12px;
	margin-bottom: 12px;
	letter-spacing: 2px;
	background: linear-gradient(180deg, #3a3a3a 0%, #0a0a0a 100%);
	border: 1px solid #000;
	border-radius: 6px;
	text-shadow: 0 1px 2px rgba(0,0,0,0.9);
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.15),
		inset 0 -1px 0 rgba(0,0,0,0.7),
		0 2px 6px rgba(0,0,0,0.5);
}

/* Grid - 6 buton yan yana */
#rashidi-toplist .rashidi-toplist-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 8px;
	width: 100%;
}

/* ---------- BUTON TEMEL STİLİ (METALİK SİYAH) ---------- */
.rashidi-toplist-btn,
.rashidi-toplist-btn:link,
.rashidi-toplist-btn:visited {
	display: flex !important;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 10px 8px !important;
	border-radius: 7px !important;
	color: #ffffff !important;
	text-decoration: none !important;
	font-weight: bold !important;
	font-size: 13px !important;
	letter-spacing: .5px;
	text-align: center;
	text-transform: uppercase;
	border: 2px solid #000 !important;
	background: linear-gradient(to bottom,
		#4a4a4a 0%,
		#2a2a2a 45%,
		#111111 48%,
		#000000 100%) !important;
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.35),
		inset 0 -1px 0 rgba(0,0,0,0.6),
		0 2px 4px rgba(0,0,0,0.55) !important;
	text-shadow: 0 1px 1px #000 !important;
	transition: all .22s ease;
	position: relative;
	overflow: hidden;
}

/* Buton parıltı efekti */
.rashidi-toplist-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(120deg,
		transparent 0%,
		rgba(255,255,255,0.25) 50%,
		transparent 100%);
	transition: left .5s ease;
}

.rashidi-toplist-btn:hover::before {
	left: 130%;
}

/* ---------- HOVER: ORTAK AYARLAR ---------- */
.rashidi-toplist-btn:hover,
.rashidi-toplist-btn:focus,
.rashidi-toplist-btn:active {
	color: #ffffff !important;
	text-decoration: none !important;
	border-color: #000 !important;
	transform: translateY(-2px);
	text-shadow: 0 1px 2px rgba(0,0,0,0.95) !important;
}

/* =========================================================
   HER BUTONA ÖZEL HOVER RENGİ
   ========================================================= */

/* 1) AraBul - KIRMIZI */
.rashidi-toplist-btn.rts-arabul:hover,
.rashidi-toplist-btn.rts-arabul:focus,
.rashidi-toplist-btn.rts-arabul:active {
	background: linear-gradient(180deg, #e63946 0%, #8b0000 100%) !important;
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.5),
		0 0 18px rgba(230,57,70,0.85),
		0 3px 8px rgba(0,0,0,0.7) !important;
}

/* 2) Efsane - ALTIN SARI */
.rashidi-toplist-btn.rts-efsane:hover,
.rashidi-toplist-btn.rts-efsane:focus,
.rashidi-toplist-btn.rts-efsane:active {
	background: linear-gradient(180deg, #ffd700 0%, #b8860b 100%) !important;
	color: #000000 !important;
	text-shadow: 0 1px 0 rgba(255,255,255,0.5) !important;
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.7),
		0 0 18px rgba(255,215,0,0.85),
		0 3px 8px rgba(0,0,0,0.7) !important;
}

/* 3) TB-List - TURKUAZ */
.rashidi-toplist-btn.rts-tblist:hover,
.rashidi-toplist-btn.rts-tblist:focus,
.rashidi-toplist-btn.rts-tblist:active {
	background: linear-gradient(180deg, #00d4d4 0%, #007a7a 100%) !important;
	color: #000000 !important;
	text-shadow: 0 1px 0 rgba(255,255,255,0.5) !important;
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.6),
		0 0 18px rgba(0,212,212,0.85),
		0 3px 8px rgba(0,0,0,0.7) !important;
}

/* 4) Tiryaki - MOR */
.rashidi-toplist-btn.rts-tiryaki:hover,
.rashidi-toplist-btn.rts-tiryaki:focus,
.rashidi-toplist-btn.rts-tiryaki:active {
	background: linear-gradient(180deg, #a855f7 0%, #6b21a8 100%) !important;
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.5),
		0 0 18px rgba(168,85,247,0.85),
		0 3px 8px rgba(0,0,0,0.7) !important;
}

/* 5) Tlist-K - YEŞİL */
.rashidi-toplist-btn.rts-tlist:hover,
.rashidi-toplist-btn.rts-tlist:focus,
.rashidi-toplist-btn.rts-tlist:active {
	background: linear-gradient(180deg, #22c55e 0%, #166534 100%) !important;
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.5),
		0 0 18px rgba(34,197,94,0.85),
		0 3px 8px rgba(0,0,0,0.7) !important;
}

/* 6) Web-Tunca - MAVİ */
.rashidi-toplist-btn.rts-webtunca:hover,
.rashidi-toplist-btn.rts-webtunca:focus,
.rashidi-toplist-btn.rts-webtunca:active {
	background: linear-gradient(180deg, #3b82f6 0%, #1e3a8a 100%) !important;
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.5),
		0 0 18px rgba(59,130,246,0.85),
		0 3px 8px rgba(0,0,0,0.7) !important;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
	#rashidi-toplist .rashidi-toplist-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 520px) {
	#rashidi-toplist .rashidi-toplist-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 6px;
	}
	.rashidi-toplist-btn {
		font-size: 11px !important;
		min-height: 42px;
		padding: 8px 6px !important;
	}
}
		
		