/* GENEL SAYFA TASARIMI */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f2f4f7;
    margin: 0;
    padding: 40px;
    color: #333;
    max-width: 480px;
    margin: 0 auto;
}

/* MERKEZ KUTU */
.container, .box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

/* BAŞLIKLAR */
h2, h3 {
    margin-top: 0;
    color: #222;
}
.aktif {
    background-color: #c9ebd1;
    color: #28292a;
}
/* INPUTLAR */
input[type=text],
input[type=email],
input[type=password] {
    width: 90%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.2s;
    margin-top: 10px;
}

input:focus {
    border-color: #007bff;
    outline: none;
}

/* BUTONLAR */
button {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 15px;
}

button:hover {
    background: #0056b3;
}

button a  { 
    text-decoration: none;
    color: white
}  

/* TEST KELİME ALANI */
.word {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* ÖRNEK CÜMLE */
.example {
    font-size: 18px;
    color: #555;
    margin-top: 10px;
}

/* İPUCU */
#ipucu {
    font-size: 18px;
    margin-top: 10px;
    color: #444;
}

/* TIMER */
#timer {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #007bff;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
}

/* PROGRESS BAR */
#bar {
    width: 100%;
    height: 28px;
    background: #f00505;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}

#bar-inner {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #28a745, #5cd65c);
    transition: width 0.3s ease;
}

/* TABLO (LEADERBOARD) */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th {
    background: #007bff;
    color: white;
    padding: 12px;
}

table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}


/* HATA MESAJI */
.error {
    color: #d9534f;
    margin-top: 10px;
    font-weight: bold;
}
.stats-container {
    gap: 20px;
    padding: 10px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));

    margin: 20px 0;
}

.stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: 0.2s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.stat-card .icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.stat-card .label {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.stat-card .value {
    font-size: 22px;
    font-weight: bold;
    color: #222;
}

/* MOBİL UYUMLU */
@media (max-width: 600px) {
    body {
        padding: 20px;
    }

    .container, .box {
        padding: 18px;
    }

    .word {
        font-size: 22px;
    }

    #timer {
        font-size: 20px;
    }
}