@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap');  
:root {     
    --bg: #07090f;     
    --panel-bg: rgba(20, 25, 35, 0.75);     
    --border: rgba(255, 255, 255, 0.1);     
    --accent: #00ff66;     
    --accent-hover: #00cb52;     
    --neon-blue: #00f2fe;     
    --text-main: #ffffff;     
    --text-muted: #8a99ad;     
    --danger: #ff3366;     
    --warning: #ffcc00; 
}  
body { 
    font-family: 'Poppins', sans-serif; 
    background: var(--bg); 
    color: var(--text-main); 
    margin: 0; 
    padding: 0; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    min-height: 100vh; 
    animation: fadeInPage 0.6s ease-in-out; 
}  
@keyframes fadeInPage {     
    from { opacity: 0; transform: translateY(5px); }     
    to { opacity: 1; transform: translateY(0); } 
} 
.navbar { 
    width: 100%; 
    max-width: 750px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 20px; 
    box-sizing: border-box; 
    border-bottom: 1px solid var(--border); 
    margin-bottom: 30px; 
} 
.site-brand { 
    font-size: 1.5rem; 
    font-weight: 800; 
    margin: 0; 
    color: #fff; 
    letter-spacing: 1px; 
} 
.lang-switch { 
    background: transparent; 
    border: 1px solid var(--border); 
    color: #fff; 
    padding: 5px 10px; 
    border-radius: 8px; 
    font-weight: 600; 
    cursor: pointer; 
}  
.wrapper { 
    width: 90%; 
    max-width: 750px; 
    margin-bottom: 50px; 
    text-align: center; 
} 
.main-title { 
    font-size: 3.5rem; 
    font-weight: 800; 
    margin-top: 0; 
    margin-bottom: 10px; 
    letter-spacing: -2px; 
} 
.main-title span { 
    color: var(--accent); 
    text-shadow: 0 0 20px rgba(0, 255, 102, 0.4); 
} 
.sub-title { 
    color: var(--text-muted); 
    font-size: 1.1rem; 
    margin-bottom: 30px; 
}  
.glass-panel { 
    background: var(--panel-bg); 
    backdrop-filter: blur(20px); 
    border: 1px solid var(--border); 
    border-radius: 20px; 
    padding: 30px; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.5); 
    margin-bottom: 25px; 
    text-align: left; 
    position: relative; 
    overflow: hidden; 
}  
.grid-2 { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 15px; 
} 
.input-group { 
    margin-bottom: 20px; 
    position: relative; 
} 
.input-group label { 
    display: block; 
    font-size: 0.9rem; 
    color: var(--text-muted); 
    margin-bottom: 8px; 
    font-weight: 600; 
    letter-spacing: 0.5px;
}  
input[type="text"], select { 
    width: 100%; 
    padding: 15px 20px; 
    font-size: 1.05rem; 
    font-family: 'Poppins', sans-serif; 
    background-color: rgba(0,0,0,0.5); 
    border: 1px solid var(--border); 
    border-radius: 12px; 
    color: white; 
    box-sizing: border-box; 
    outline: none; 
    transition: all 0.3s; 
} 
input[type="text"]:focus, select:focus { 
    border-color: var(--accent); 
    box-shadow: 0 0 15px rgba(0,255,102,0.2); 
}  
select option { 
    background-color: #111116 !important; 
    color: #ffffff !important; 
    padding: 10px; 
} 
select:focus, select:active { 
    background-color: rgba(0, 0, 0, 0.8) !important; 
    color: #ffffff !important; 
}  
.suggest-box { 
    position: absolute; 
    top: 100%; 
    left: 0; 
    right: 0; 
    background-color: #0f131a; 
    border: 1px solid var(--border); 
    border-radius: 12px; 
    margin-top: 5px; 
    max-height: 250px; 
    overflow-y: auto; 
    z-index: 10; 
    display: none; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.8); 
} 
.suggest-item { 
    padding: 10px 15px; 
    cursor: pointer; 
    border-bottom: 1px solid #1a202c; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
} 
.suggest-item img { 
    width: 40px; 
    height: 40px; 
    border-radius: 5px; 
    object-fit: cover; 
} 
.suggest-item:hover { 
    background: rgba(0, 255, 102, 0.1); 
    color: var(--accent); 
}  
.toggle-container { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    background: rgba(0,0,0,0.4); 
    padding: 15px; 
    border-radius: 12px; 
    border: 1px solid var(--border); 
    margin-bottom: 20px; 
} 
.toggle-container span { 
    font-weight: 600; 
    font-size: 0.95rem; 
} 
.switch { 
    position: relative; 
    display: inline-block; 
    width: 50px; 
    height: 24px; 
} 
.switch input { 
    opacity: 0; 
    width: 0; 
    height: 0; 
} 
.slider { 
    position: absolute; 
    cursor: pointer; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background-color: #333; 
    transition: .4s; 
    border-radius: 24px; 
} 
.slider:before { 
    position: absolute; 
    content: ""; 
    height: 16px; 
    width: 16px; 
    left: 4px; 
    bottom: 4px; 
    background-color: white; 
    transition: .4s; 
    border-radius: 50%; 
} 
input:checked + .slider { 
    background-color: var(--accent); 
} 
input:checked + .slider:before { 
    transform: translateX(26px); 
}  
.btn-run { 
    background: linear-gradient(45deg, var(--accent), var(--accent-hover)); 
    color: #000; 
    border: none; 
    padding: 18px; 
    font-size: 1.1rem; 
    font-weight: 800; 
    text-transform: uppercase; 
    border-radius: 12px; 
    cursor: pointer; 
    width: 100%; 
    transition: transform 0.2s, box-shadow 0.2s; 
    margin-top: 10px; 
    letter-spacing: 1px;
} 
.btn-run:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 25px rgba(0, 255, 102, 0.3); 
}  
.loading-screen { 
    display: none; 
    text-align: center; 
    padding: 40px 0; 
} 
.loader { 
    border: 4px solid rgba(255,255,255,0.1); 
    border-top: 4px solid var(--accent); 
    border-radius: 50%; 
    width: 40px; 
    height: 40px; 
    animation: spin 1s linear infinite; 
    margin: 0 auto 20px; 
} 
.loading-text { 
    font-size: 1.2rem; 
    font-weight: 600; 
    color: var(--accent); 
} 
@keyframes spin { 
    0% { transform: rotate(0deg); } 
    100% { transform: rotate(360deg); } 
}  
.result-panel { 
    display: none; 
    text-align: center; 
    animation: fadeIn 0.5s; 
} 
.game-header { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 15px; 
    margin-bottom: 25px; 
    background: rgba(0,0,0,0.3); 
    padding: 15px; 
    border-radius: 15px; 
    border: 1px solid var(--border); 
} 
.game-header img { 
    width: 60px; 
    height: 60px; 
    border-radius: 10px; 
    object-fit: cover; 
} 
.game-header div { 
    text-align: left; 
} 
.game-header h3 { 
    margin: 0; 
    font-size: 1.2rem; 
} 
.game-header p { 
    margin: 0; 
    font-size: 0.85rem; 
    color: var(--text-muted); 
}  
.res-header { 
    font-size: 2rem; 
    font-weight: 800; 
    margin-bottom: 25px; 
}  
.score-container { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    margin-bottom: 30px; 
} 
.score-title { 
    font-size: 0.9rem; 
    color: var(--text-muted); 
    font-weight: 800; 
    letter-spacing: 2px; 
    margin-bottom: 10px; 
} 
.score-circle { 
    width: 130px; 
    height: 130px; 
    border-radius: 50%; 
    background: rgba(0, 0, 0, 0.5); 
    border: 4px solid var(--accent); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.2); 
    transition: all 0.5s; 
} 
.score-circle span:first-child { 
    font-size: 2.5rem; 
    font-weight: 800; 
    color: var(--text-main); 
    letter-spacing: -2px; 
} 
.score-circle .out-of { 
    font-size: 1rem; 
    color: var(--text-muted); 
    margin-top: 12px; 
    margin-left: 2px; 
    font-weight: 600; 
}  
.fps-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 15px; 
    margin-bottom: 25px; 
} 
.fps-box { 
    background: rgba(0,0,0,0.4); 
    border: 1px solid var(--border); 
    border-radius: 15px; 
    padding: 20px 10px; 
} 
.fps-box.ultra { 
    border-bottom: 4px solid var(--danger); 
} 
.fps-box.normal { 
    border-bottom: 4px solid var(--warning); 
    background: rgba(255, 204, 0, 0.05); 
} 
.fps-box.low { 
    border-bottom: 4px solid var(--accent); 
} 
.fps-val { 
    font-size: 2.5rem; 
    font-weight: 800; 
    line-height: 1; 
    margin-bottom: 5px; 
} 
.fps-title { 
    font-size: 0.85rem; 
    color: var(--text-muted); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-weight: 600; 
}  
.res-desc { 
    line-height: 1.6; 
    font-size: 1.1rem; 
    color: #d1d5db; 
    margin-bottom: 15px; 
} 
.warning-box { 
    background: rgba(255, 51, 102, 0.1); 
    border-left: 4px solid var(--danger); 
    color: var(--danger); 
    padding: 15px; 
    margin-top: 15px; 
    border-radius: 0 8px 8px 0; 
    text-align: left; 
    font-size: 0.95rem; 
    font-weight: 600; 
}  
@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(20px); } 
    to { opacity: 1; transform: translateY(0); } 
} 
@media (max-width: 500px) { 
    .fps-grid { grid-template-columns: 1fr; } 
    .main-title { font-size: 2.5rem; } 
    .grid-2 { grid-template-columns: 1fr; } 
}  
.nav-pro-btn {     
    display: flex;     
    align-items: center;     
    justify-content: center;     
    gap: 8px;     
    height: 35px;     
    padding: 0 16px;     
    border-radius: 6px;     
    font-weight: 800;     
    text-decoration: none;     
    letter-spacing: 0.5px;     
    transition: all 0.3s ease;     
    text-transform: uppercase;     
    white-space: nowrap; 
    flex-shrink: 0; 
}  
.btn-battle-nav {     
    background: linear-gradient(45deg, rgba(0, 242, 254, 0.05), rgba(0, 242, 254, 0.15));     
    border: 1px solid var(--neon-blue);     
    color: var(--neon-blue);     
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.1); 
}  
.btn-battle-nav:hover {     
    background: var(--neon-blue);     
    color: #07090f;      
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.6);     
    transform: translateY(-2px); 
}  
.btn-home-nav {     
    background: linear-gradient(45deg, rgba(0, 255, 102, 0.05), rgba(0, 255, 102, 0.15));     
    border: 1px solid var(--accent);     
    color: var(--accent);     
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.1); 
}  
.btn-home-nav:hover {     
    background: var(--accent);     
    color: #07090f;     
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.6);     
    transform: translateY(-2px); 
}  
.nav-pro-btn svg {     
    transition: all 0.3s ease; 
}  
@media (max-width: 500px) {     
    #nav-battle-text, #nav-home-text { display: none; }     
    .nav-pro-btn { padding: 0 12px; } 
}  
@media (max-width: 768px) {          
    .navbar { flex-direction: column; padding: 15px; gap: 15px; }      
    .header h1 { font-size: 2.2rem; }      
    .header p { font-size: 0.95rem; }      
    .grid { grid-template-columns: 1fr; gap: 15px; }      
    .result-header { flex-direction: column; text-align: center; }          
    #res-game-img { width: 120px; height: 160px; }      
    .score-badge { margin: 15px auto 0 auto; text-align: center; }      
    .fps-grid { grid-template-columns: 1fr; gap: 10px; }          
    .fps-val { font-size: 2rem; } 
}  
body { animation: appleFadeIn 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); }  
@keyframes appleFadeIn {     
    from { opacity: 0; transform: translateY(10px); }     
    to { opacity: 1; transform: translateY(0); } 
}  
.btn-run, .nav-btn { transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }  
.form-control, .search-wrapper input { transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }  
.form-control:focus, .search-wrapper input:focus {     
    transform: scale(1.01);     
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);     
    border-color: var(--neon-blue); 
}  
.result-panel, .fps-box, .warning-box, #kyris-upgrade-box {     
    animation: slideUpFade 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; 
}  
@keyframes slideUpFade {     
    from { opacity: 0; transform: translateY(20px); }     
    to { opacity: 1; transform: translateY(0); } 
}  
.suggest-box {     
    transform-origin: top;     
    animation: dropDownSmooth 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
}  
@keyframes dropDownSmooth {     
    from { opacity: 0; transform: scaleY(0.8); }     
    to { opacity: 1; transform: scaleY(1); } 
}  
.header h1 {     
    background: linear-gradient(90deg, #ffffff, var(--neon-blue), var(--neon-purple), #ffffff);     
    background-size: 300% auto;     
    color: transparent;     
    -webkit-background-clip: text;     
    background-clip: text;     
    animation: textShine 6s linear infinite; 
}  
@keyframes textShine { to { background-position: 300% center; } }  
.seo-box {     
    margin-top: 60px;     
    padding: 30px;     
    background: rgba(0, 0, 0, 0.2);     
    border-top: 1px solid var(--glass-border);     
    text-align: left; 
}  
.seo-box h2, .seo-box h3 { letter-spacing: 0.5px; }  
#nav-logo {     
    height: 45px;     
    animation: logoPulse 1.5s infinite alternate ease-in-out; 
}  
@keyframes logoPulse {     
    from { filter: drop-shadow(0 0 5px var(--neon-blue)); transform: scale(1); }     
    to { filter: drop-shadow(0 0 20px var(--neon-blue)) drop-shadow(0 0 30px var(--neon-purple)); transform: scale(1.03); } 
} 
.seo-container {     
    width: 90%;     
    max-width: 750px;     
    margin: 0 auto 50px auto;     
    text-align: left; 
} 
.seo-title {     
    color: var(--neon-blue);     
    font-size: 1.5rem;     
    margin-bottom: 20px;     
    border-bottom: 1px solid var(--border);     
    padding-bottom: 10px;     
    font-weight: 800; 
} 
.accordion {     
    background-color: var(--panel-bg);     
    color: var(--text-main);     
    cursor: pointer;     
    padding: 18px;     
    width: 100%;     
    text-align: left;     
    border: 1px solid var(--border);     
    border-radius: 12px;     
    outline: none;     
    transition: 0.4s;     
    font-size: 1.05rem;     
    font-weight: 600;     
    margin-bottom: 10px;     
    display: flex;     
    justify-content: space-between;     
    align-items: center; 
} 
.accordion:hover, .accordion.active {     
    background-color: rgba(0, 242, 254, 0.1);     
    border-color: var(--neon-blue); 
} 
.accordion::after {     
    content: '\002B';     
    color: var(--neon-blue);     
    font-weight: bold;     
    font-size: 1.5rem; 
} 
.accordion.active::after { content: "\2212"; } 
.panel {     
    padding: 0 18px;     
    background-color: transparent;     
    max-height: 0;     
    overflow: hidden;     
    transition: max-height 0.3s ease-out;     
    color: var(--text-muted);     
    line-height: 1.7; 
} 
.panel p { padding: 15px 0; margin: 0; }  
@media (max-width: 600px) {     
    .wrapper { width: 95%; margin-top: 10px; }     
    .main-title { font-size: 2.2rem; letter-spacing: -1px; }     
    .sub-title { font-size: 0.95rem; margin-bottom: 20px; }     
    .glass-panel { padding: 20px; border-radius: 15px; }     
    input[type="text"], select { padding: 12px 15px; font-size: 1rem; }     
    .btn-run { font-size: 1.1rem; padding: 15px; }     
    .score-circle { width: 110px; height: 110px; }     
    .score-circle span:first-child { font-size: 2rem; }     
    .seo-container { width: 95%; }     
    .game-header { flex-direction: column; text-align: center; } 
}

/* ==========================================================================
   YENİ EKLENEN PROFESYONEL VE TEMİZ BUTON TASARIMLARI (PREMIUM UI)
   ========================================================================== */
.affiliate-btn {
    background: rgba(20, 25, 35, 0.95);
    color: #fff;
    padding: 15px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.affiliate-btn::after {
    content: '↗';
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}
.affiliate-btn:hover {
    border-color: var(--neon-blue);
    background: rgba(0, 242, 254, 0.05);
    box-shadow: 0 5px 20px rgba(0, 242, 254, 0.15);
    transform: translateY(-2px);
}
.affiliate-btn:hover::after {
    color: var(--neon-blue);
}
/* EFSANE AMAZON TURUNCU BUTON STİLİ */
.btn-amazon {
    background: linear-gradient(90deg, #ff9900, #ffb84d) !important;
    color: #000 !important;
    font-weight: 900 !important;
    border-radius: 8px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    padding: 14px !important;
    text-decoration: none !important;
    font-size: 1rem !important;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}
.btn-amazon:hover {
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.6) !important;
    transform: scale(1.02) !important;
}
/* ============================================================================
   📱 TELEFONA ÖZEL KUSURSUZ MOBİL GUI OPTİMİZASYONU (V2 - ULTRA SLIM)
   ============================================================================ */
@media (max-width: 768px) {
    /* 1. Üst Menü (Navbar) - Kompakt Hale Getirildi */
    .navbar {
        padding: 10px;
        margin-bottom: 15px;
        flex-direction: row !important; 
        justify-content: space-between;
    }
    .site-brand { font-size: 1.1rem; }
    .site-brand img { height: 24px !important; }
    
    /* Battleground butonundan sadece ikon kalsın */
    #nav-battle-text { display: none; } 
    .nav-pro-btn { padding: 0 10px; height: 32px; gap: 0; }
    .nav-pro-btn svg { width: 18px; height: 18px; }
    .lang-switch { height: 32px; padding: 0 8px; font-size: 0.85rem; }

    /* 2. Başlıklar - Küçültüldü */
    .main-title { font-size: 1.8rem !important; letter-spacing: -1px; margin-bottom: 5px; }
    .sub-title { font-size: 0.85rem; margin-bottom: 15px; padding: 0 5px; }
    
    /* 3. Ana Panel ve Kenar Boşlukları - Ekranı Tam Kaplasın */
    .wrapper { width: 96% !important; margin-bottom: 20px; }
    .glass-panel { padding: 15px 12px !important; border-radius: 12px; margin-bottom: 15px; }
    
    /* 4. Grid Sistemi - Alt Alta (Boşluklar Azaltıldı) */
    .grid-2 { display: flex !important; flex-direction: column; gap: 0; }
    
    /* 5. Inputlar (Kutular) - Daha İnce ve Zarif */
    .input-group { margin-bottom: 12px; width: 100%; }
    .input-group label { font-size: 0.8rem; margin-bottom: 5px; }
    input[type="text"], select { 
        padding: 10px 12px; /* Yükseklik tıraşlandı */
        font-size: 0.95rem; 
        border-radius: 8px; 
    }
    
    /* 6. Toggle (DLSS) ve Ana Buton */
    .toggle-container { padding: 10px 12px; margin-bottom: 15px; border-radius: 8px; }
    .toggle-container span { font-size: 0.85rem; }
    .btn-run { font-size: 1rem !important; padding: 12px !important; border-radius: 8px; }
    
    /* 7. Sonuç Ekranı Skorları */
    .score-circle { width: 100px; height: 100px; margin: 0 auto; border-width: 3px; }
    .score-circle span:first-child { font-size: 2rem; }
    .score-container { margin-bottom: 15px; }
    
    /* 8. FPS Kutuları */
    .fps-grid { display: flex !important; flex-direction: column; gap: 8px; margin-bottom: 15px; }
    .fps-box { padding: 12px 10px; border-radius: 10px; }
    .fps-val { font-size: 1.8rem; }
    .fps-title { font-size: 0.75rem; }
    
    /* 9. Yükseltme Modali Mobilde Alt Alta */
    #upgrade-modal > div:nth-child(2) { display: flex !important; flex-direction: column; gap: 10px; }
    
    /* 10. SEO Akordiyon Kısmı */
    .seo-container { width: 96% !important; }
    .accordion { font-size: 0.9rem; padding: 12px; border-radius: 8px; }
}

/* Çok Küçük Ekranlar (iPhone SE vb. 375px Altı) İçin Ekstra İnce Ayar */
@media (max-width: 380px) {
    .main-title { font-size: 1.6rem !important; }
    .site-brand { font-size: 1rem; }
    .site-brand img { height: 20px !important; margin-right: 5px !important; }
}