/* 
   KADİM2 HOME PAGE SPECIFIC STYLES
   (Common UI patterns moved to kadim-branding.css)
*/

/* --- HEADER (MENÜ BARI) --- */
.rosso-header {
	position: fixed; top: 0; width: 100%;
	background: rgba(2, 5, 10, 0.85);
	backdrop-filter: blur(12px);
	display: flex; justify-content: space-between; align-items: center;
	padding: 12px 60px; z-index: 9999;
	border-bottom: 1px solid rgba(124, 241, 255, 0.15);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.header-logo img { height: 50px; width: auto; }
.header-nav { display: flex; gap: 30px; }
.header-nav a {
	color: var(--text-gray); text-decoration: none; font-weight: 700; text-transform: uppercase;
	transition: 0.3s; font-size: 14px; letter-spacing: 0.5px;
}
.header-nav a:hover { color: var(--kadim-cyan); }
.header-btn {
	background: linear-gradient(135deg, var(--kadim-blue), #08121e); color: #fff; padding: 12px 30px; border-radius: 4px;
	text-decoration: none; font-weight: 900; border: 1px solid rgba(124, 241, 255, 0.4); transition: all 0.3s ease; letter-spacing: 1px;
	text-transform: uppercase;
}
.header-btn:hover { box-shadow: 0 0 25px var(--kadim-blue-glow); color: #fff; text-decoration: none; border-color: var(--kadim-cyan); transform: translateY(-1px); }

/* --- HERO SECTION --- */
.hero-section {
	position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center;
	overflow: hidden; background-color: var(--bg-dark);
}
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; opacity: 0.6; }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 90%); z-index: 2; }
.hero-content { position: relative; z-index: 3; max-width: 900px; padding: 0 20px; }
.hero-main-logo { max-width: 450px; margin-bottom: 30px; filter: drop-shadow(0 0 30px var(--ice-glow)); animation: floatHero 6s ease-in-out infinite; }

.hero-info h1 { font-size: 48px; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: 2px; text-shadow: 0 0 20px rgba(0,0,0,1); margin-bottom: 20px; }
.hype-text { font-size: 18px; color: var(--text-gray); line-height: 1.6; margin-bottom: 30px; }
.hero-badges { display: flex; gap: 15px; justify-content: center; margin-bottom: 40px; }
.hero-badge { background: rgba(44, 131, 185, 0.2); border: 1px solid var(--kadim-cyan); color: var(--kadim-cyan); padding: 8px 20px; border-radius: 50px; font-weight: 800; font-size: 12px; }

.btn-hero-premium {
	display: inline-block; background: var(--premium-gradient); color: #02050a; padding: 18px 45px; border-radius: 50px;
	font-size: 16px; font-weight: 900; text-transform: uppercase; text-decoration: none !important;
	box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px var(--ice-glow); transition: 0.4s; margin: 10px;
}
.btn-hero-premium:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 40px var(--kadim-cyan); }
.btn-play-now { background: #fff; color: #02050a; }

@keyframes floatHero {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-20px); }
}

/* Home Specific Block Adjustments */
.rosso-block { padding: 100px 0; background: var(--bg-dark); }
.rewards-img { border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.8); border: 1px solid rgba(124, 241, 255, 0.1); }
.rewards-list { list-style: none; padding: 0; }
.rewards-list li { margin-bottom: 25px; padding: 20px; background: var(--glass-bg); border-radius: 12px; border-left: 4px solid var(--kadim-cyan); }
.rewards-list li strong { display: block; font-size: 18px; color: var(--kadim-cyan); margin-bottom: 10px; }
.rewards-list li span { display: block; font-size: 14px; color: #fff; opacity: 0.8; }

/* RECTIFYING THE PARTNER GRID FROM SCREENSHOT */
#yayincilar .features-grid { 
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; 
}
.feature-card { background: var(--glass-bg); border: 1px solid rgba(124, 241, 255, 0.1); border-radius: 20px; padding: 30px 15px; text-align: center; }
.feature-icon img { width: 100px; height: 100px; border-radius: 50%; border: 3px solid var(--kadim-blue); margin-bottom: 15px; }
.feature-title { color: #fff; font-size: 15px; font-weight: 800; }
.stat { background: var(--premium-gradient); color: #000; padding: 3px 10px; border-radius: 5px; font-size: 11px; font-weight: 900; }

@media (max-width: 991px) {
	.hero-info h1 { font-size: 32px; }
	.rosso-header { padding: 12px 20px; }
	.header-nav { display: none; }
	#yayincilar .features-grid { grid-template-columns: repeat(2, 1fr); }
}
