/* Basic Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('assets/background.jpg') repeat;
    transition: background 0.3s ease;
}

.hidden {
    display: none;
}

.entry-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    text-align: center;
    z-index: 999;
}

.entry-button {
    background: #ffcc00;
    color: black;
    padding: 15px 30px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.entry-button:hover {
    background: #ffaa00;
    transform: scale(1.1);
}

/* Profile Section */
.profile-container {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    transition: transform 0.3s ease;
}

.profile-picture {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #333;
}

.name {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
}

.description {
    font-size: 16px;
    color: #666;
    margin-top: 5px;
}

.social-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    text-decoration: none;
    color: white;
    background: #333;
    padding: 12px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background: #555;
    transform: scale(1.1);
}

/* YouTube Subscriber Progress Bar Styles */
.subscribers-container {
    width: 100%;
    background: #ddd;
    border-radius: 10px;
    margin-top: 20px;
    height: 30px;
}

.subscribers-bar {
    height: 100%;
    background: #f44336; /* Red color */
    width: 0%;
    border-radius: 10px;
    text-align: center;
    color: white;
    font-weight: bold;
    line-height: 30px;
    transition: width 0.5s ease;
}

.subscribers-label {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Mute Button Styles */
.mute-button {
    position: fixed;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    font-size: 18px;
}

.mute-button:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}
