@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

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

body {
    background-color: #050505; /* رەنگێ تاری یێ سەرەکی */
    color: #ffffff;
    overflow: hidden;
    background-image: radial-gradient(circle, #1a1a1a 0%, #000000 100%);
}

/* رێڤەبرنا شاشەیان (Screen Management) */
.screen {
    display: none;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screen.active {
    display: flex;
}

.hidden {
    display: none !important;
}

/* ئیفێکتی شووشەیی بو سندوقان (Glassmorphism) */
.login-box, .lobby-box {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.3); /* خەتێ زێڕین یێ لاواز */
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    width: 90%;
    max-width: 400px;
}

/* نڤیسین و رەنگ */
.game-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.game-title span {
    color: #d4af37; /* زێڕین */
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.gold-text {
    color: #d4af37;
    font-weight: bold;
}

.subtitle {
    color: #aaaaaa;
    margin-bottom: 30px;
    font-size: 1rem;
}

/* جهێ نڤیسینێ و دوگمە */
input[type="text"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    color: #fff;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
}

input[type="text"]:focus {
    border-color: #d4af37;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.gold-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #d4af37, #b5952f);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.gold-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.gold-btn:disabled {
    background: #555;
    color: #888;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

/* ژوورا چاڤەرێکرنێ (Lobby) */
.player-count {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #d4af37;
}

#lobby-players {
    list-style: none;
    margin-bottom: 20px;
    text-align: right;
    max-height: 200px;
    overflow-y: auto;
}

#lobby-players li {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 8px;
    padding: 10px;
    border-radius: 5px;
    border-right: 3px solid #d4af37;
}

/* شاشا یاریێ */
#game-screen {
    justify-content: flex-start;
    padding: 20px;
}

.game-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
    background: rgba(20, 20, 20, 0.8);
    padding: 15px 20px;
    border-radius: 10px;
    border-bottom: 2px solid #d4af37;
    margin-bottom: 20px;
}

/* شاشا تاریبوونا شەڤێ - ترسناک */
#night-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #cc0000; /* رەنگێ خوینێ بو شەڤەکا ترسناک */
    text-shadow: 0 0 20px rgba(204, 0, 0, 0.8);
}

#night-message {
    font-size: 3rem;
    margin-bottom: 10px;
    text-align: center;
}

/* مێزا یاریێ و کارت */
#table-container {
    flex-grow: 1;
    width: 100%;
    max-width: 800px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.player-card {
    width: 100px;
    height: 140px;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid #444;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    cursor: pointer;
}

.player-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
    border: 2px solid #d4af37;
}

.player-card:hover {
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.player-card.dead {
    opacity: 0.4;
    filter: grayscale(100%);
    border-color: #ff0000;
}

/* بەشێ پەیوەندیێ (چات و دەنگ) */
#communication-panel {
    width: 100%;
    max-width: 800px;
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

#chat-messages {
    height: 150px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    text-align: right;
}

.chat-message {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.chat-message span {
    color: #d4af37;
    font-weight: bold;
}

.chat-input-area {
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    margin-bottom: 0;
}

.voice-btn {
    background: #222;
    color: #fff;
    border: 1px solid #d4af37;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.voice-btn:hover {
    background: rgba(212, 175, 55, 0.2);
}

/* شاشا دەنگدانێ */
#voting-panel {
    position: absolute;
    bottom: 20%;
    background: rgba(20, 20, 20, 0.95);
    border: 2px solid #d4af37;
    padding: 20px;
    border-radius: 10px;
    z-index: 50;
    text-align: center;
}

#voting-options button {
    margin: 5px;
    padding: 10px 20px;
    background: #333;
    color: #fff;
    border: 1px solid #d4af37;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#voting-options button:hover {
    background: #d4af37;
    color: #000;
}
