body {
  background-color: rgb(35, 36, 36);
}

input[type="text"] {
  background-color: #555;
  color: white;
  border: 1px solid #888;
  padding: 5px;
}

@font-face {
  font-family: 'Font';
  src: url('font.ttf') format('truetype');
}

a {
  text-decoration: none; 
}

/* Call Overlay Styles */
#call-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    display: none; /* Hidden by default */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    color: white;
    transition: opacity 0.4s ease;
}

#call-status {
    font-size: 1.2rem;
    margin-top: 20px;
    color: #a078ff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.avatar-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(45deg, #6040cc, #a078ff);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(160, 120, 255, 0.4);
    margin-bottom: 30px;
}

.pulse-ring {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid #a078ff;
    border-radius: 50%;
    animation: ringPulse 2s infinite;
}

@keyframes ringPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

#hangup-btn {
    margin-top: 100px;
    width: 70px;
    height: 70px;
    background: #ff4444;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

#hangup-btn:hover { transform: scale(1.1); background: #ff2222; }