body {
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: transparent; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.voting-container {
    background-image: url('background.jpg'); 
    background-size: cover;
    background-position: center center;
    background-attachment: local; 
    
    background-blend-mode: multiply; 
    background-color: rgba(30, 32, 35, 0.45); 

    backdrop-filter: blur(3px); 
    -webkit-backdrop-filter: blur(3px);
    
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1); 
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    padding: 35px 45px;
    width: 100%;
    max-width: 650px;
    text-align: center;
    color: #e0e0e0;
    text-shadow: none; 
}

h1 {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;

    /* Градиент */
    background: linear-gradient(to right, #F7E0A1, #B68B4B);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    text-shadow: none; 
    filter: drop-shadow(0 0 4px #D4AF37); 
}

.question {
    font-size: 1.3em;
    color: #f0f0f0; 
    margin-bottom: 30px;
    line-height: 1.5;
    
    /* * * * ИЗМЕНЕНИЕ: Добавляем золотое свечение к вопросу * * * */
    text-shadow: 0 0 4px #D4AF37;
}

.buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

button {
    flex: 1;
    font-size: 1.3em;
    font-weight: 600;
    padding: 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    
    background: transparent;
    border-width: 2px;
    border-style: solid;
}

button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

/* Кнопка "Да" - "Как на здании" (Голографический синий) */
#vote-yes {
    border-color: #00BFFF; 
    color: #00BFFF;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.5); 
    text-shadow: none;
}

#vote-yes:hover:not(:disabled) {
    background: rgba(0, 191, 255, 0.1); 
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.7);
    transform: translateY(-2px);
}

/* Кнопка "Нет" - Белый */
#vote-no {
    border-color: #DDDDDD; 
    color: #DDDDDD;
    text-shadow: none;
}

#vote-no:hover:not(:disabled) {
    background: rgba(221, 221, 221, 0.1); 
    border-color: #FFFFFF;
    color: #FFFFFF;
    transform: translateY(-2px);
}

#message {
    font-size: 1.1em;
    font-weight: 600;
    min-height: 1.5em;
    margin-top: 15px;
    text-shadow: 0 0 3px rgba(0,0,0,0.4);
}

.results {
    text-align: left;
    margin-top: 30px;
    border-top: 1px solid #555; 
    padding-top: 25px;
}

h2 {
    text-align: center;
    color: #f0f0f0; 
    margin-bottom: 20px;
    text-shadow: 0 0 3px rgba(0,0,0,0.4);
}

.result-bar {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1em;
    width: 100%;
}

.result-label {
    width: 50px;
    font-weight: 600;
    color: #e0e0e0; 
    text-shadow: 0 0 2px rgba(0,0,0,0.3);
}

.bar-container {
    flex: 1;
    background: rgba(74, 74, 74, 0.35);
    border-radius: 8px;
    height: 30px;
    overflow: hidden;
}

.bar {
    height: 100%;
    border-radius: 8px;
    transition: width 0.5s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Полоса "Да" (Голографический синий) */
#bar-yes {
    background-color: #00BFFF;
}

/* Полоса "Нет" - Белый/Светло-серый */
#bar-no {
    background-color: #DDDDDD;
}

.count {
    width: 45px;
    text-align: right;
    font-weight: 700;
    padding-left: 15px;
    color: #f0f0f0; 
    text-shadow: 0 0 2px rgba(0,0,0,0.3);
}

#total-votes {
    font-weight: 700;
}