* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background: #111;
    color: #eee;
    height: 100vh;
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
}

.oyun-basligi {
    font-size: 48px;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.8);
}

#anaKutu {
    width: 95%;
    max-width: 850px; 
    height: 650px;    
    background: #1e1e24;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.9);
    position: relative;
    overflow: hidden; 
}

.ekran {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; 
    padding: 40px; 
    text-align: center;
}

.gizli { display: none !important; }

button {
    background: #f97316;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
}
button:hover { background: #ea580c; }

#gosterimUst {
    position: absolute;
    top: 20px;
    width: 90%;
    display: flex;
    justify-content: space-between;
    background: rgba(0,0,0,0.6);
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 22px; 
}

.ipucu { color: #fff; margin-bottom: 20px; }

#tahminIci {
    width: 100%;
    flex: 1; 
    display: flex;
    align-items: center; 
    gap: 50px; 
}

#kaydiricilar {
    flex: 1.5; 
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
}

#onizleme {
    flex: 1; 
    display: flex;
    justify-content: center;
    align-items: center;
}

label {
    display: block;
    margin: 15px 0 8px;
    color: #ccc;
    font-weight: bold;
    font-size: 18px; 
}

input[type=range] {
    -webkit-appearance: none; 
    width: 100%;
    height: 30px; 
    border-radius: 15px;
    outline: none;
    border: 2px solid #444;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 40px; 
    height: 40px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    border: 4px solid #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

#onizlemeKutusu {
    width: 280px;
    height: 280px;
    background: hsl(180, 50%, 50%);
    border-radius: 20px;
    border: 4px solid #555;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

#renklerYanYana {
    display: flex;
    gap: 60px; 
    margin: 20px 0;
    justify-content: center;
    align-items: center;
    flex: 1; 
}

.renkKarti {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; 
}

.renkKutusu {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    border: 4px solid #555;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

#turPuani {
    font-size: 56px; 
    font-weight: bold;
    color: #22c55e;
    margin-bottom: 20px;
}

.liste-alani {
    width: 100%;
    flex: 1; 
    overflow-y: auto; 
    background: #111;
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
}

.skor-satir {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #333;
    font-size: 18px;
}