/* --- ÜST IŞIK --- */
.top-rear-glow {
    position: absolute;
    top: 60px; left: 50%; transform: translateX(-50%);
    width: 160%; max-width: 2000px; height: 300px; 
    background: radial-gradient(ellipse at 50% 50%, rgba(200, 255, 26, 0.8) 0%, rgba(200, 255, 26, 0.25) 40%, rgba(200, 255, 26, 0.05) 70%, rgba(18, 23, 28, 0) 100%);
    filter: blur(100px); z-index: 0; pointer-events: none;
    animation: glow-pulse 6s infinite ease-in-out;
}

/* --- HERO KAPSÜL --- */
.main-page-wrapper {
    position: relative; z-index: 10; max-width: 1250px; width: 95%;
    margin: 140px auto 0 auto; background-color: #12171C; 
    border-radius: 40px 40px 0 0; 
    padding-bottom: 0; margin-bottom: 0; 
    overflow: visible; 
}

.hero-section { padding: 60px 20px 40px 20px; text-align: center; }

/* ROZET (Badge) */
.hero-badge-container {
    position: relative; display: inline-block; padding: 1.5px; border-radius: 50px; overflow: hidden; margin-bottom: 30px; text-decoration: none;
}
.hero-badge-border {
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: conic-gradient(transparent 0deg, transparent 90deg, #C8FF1A 130deg, transparent 170deg, transparent 360deg);
    animation: rotate-badge 4s linear infinite; z-index: 0;
}
@keyframes rotate-badge { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.hero-badge-inner {
    position: relative; background-color: #142023; border-radius: 50px; padding: 8px 24px; z-index: 1; display: flex; align-items: center; gap: 8px; overflow: hidden;
}
.star-particle {
    position: absolute; background: #fff; border-radius: 50%; box-shadow: 0 0 6px rgba(255, 255, 255, 0.9); opacity: 0; z-index: 1; animation: star-float-up infinite ease-in;
}
.hero-badge-content { position: relative; z-index: 2; color: #C8FF1A; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 8px; }

h1 { 
    font-size: 3.5rem; font-weight: 700; color: #fff; margin-bottom: 25px; line-height: 1.1; letter-spacing: -1px; 
    max-width: 1000px; margin-left: auto; margin-right: auto;
}
p.hero-desc { font-size: 1.1rem; color: #9CA3AF; margin-bottom: 45px; line-height: 1.6; max-width: 800px; margin-left: auto; margin-right: auto; }

/* DASHBOARD & TABLAR */
.tab-switcher {
    display: inline-flex; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50px; margin-bottom: 25px; overflow: hidden; z-index: 5; padding: 0;
}
.tab-btn { 
    padding: 12px 35px; color: #6B7280; font-size: 14px; font-weight: 500; cursor: pointer; transition: 0.3s; 
    border: none; background: transparent; border-right: 1px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: center; 
}
.tab-btn:last-child { border-right: none; }
.tab-btn.active { color: #fff; font-weight: 700; background: rgba(255, 255, 255, 0.04); }

.dashboard-outer-wrapper { position: relative; width: 100%; max-width: 1050px; margin: 0 auto; box-sizing: border-box; }
.dashboard-border-layer {
    position: absolute; top: -3px; left: -3px; right: -3px; bottom: -3px; border-radius: 26px; z-index: 0; overflow: hidden;
}
.dashboard-border-layer::after {
    content: ''; position: absolute; inset: 0; border-radius: 26px; border: 2.5px solid rgba(255, 255, 255, 0.08); z-index: 1;
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.dashboard-border-layer::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: conic-gradient(transparent 180deg, rgba(200, 255, 26, 0.15) 240deg, #C8FF1A 330deg, #C8FF1A 360deg);
    animation: rotate-dashboard 10s linear infinite; z-index: 2;
}
@keyframes rotate-dashboard { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.dashboard-frame { position: relative; width: 100%; background: #12171C; border-radius: 24px; z-index: 2; overflow: hidden; }
.dashboard-img { width: 100%; height: auto; display: block; opacity: 0.95; }

@media (max-width: 768px) {
    .main-page-wrapper { margin-top: 120px; width: 100%; }
    h1 { font-size: 2.0rem; margin-bottom: 15px; padding: 0 10px; }
    .tab-switcher { width: 95%; display: flex; }
    .tab-btn { padding: 10px 0; flex: 1; font-size: 11.5px; } 
    .top-rear-glow { top: 40px; height: 180px; width: 100%; filter: blur(70px); opacity: 0.8; }
}