/* Age Verification & Username Setup Styles */

/* Age Verification Overlay */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-verification-popup {
    background: linear-gradient(135deg, #212121 0%, #0f0f0f 100%);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.age-verification-content {
    text-align: center;
}

.age-verification-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.age-verification-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ffffff;
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-btn {
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.age-yes {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.age-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.age-no {
    background-color: #303030;
    color: #ffffff;
}

.age-no:hover {
    background-color: #404040;
    transform: translateY(-2px);
}

/* Username Setup Overlay */
.username-setup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.username-setup-popup {
    background: linear-gradient(135deg, #212121 0%, #0f0f0f 100%);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.username-setup-content {
    text-align: center;
}

.username-setup-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.username-setup-content p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #aaaaaa;
}

#usernameInput,
#requiredUsernameInput {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    background-color: #121212;
    border: 2px solid #303030;
    border-radius: 8px;
    color: #ffffff;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.3s;
}

#usernameInput:focus,
#requiredUsernameInput:focus {
    border-color: #667eea;
}

.username-buttons,
.username-required-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 15px;
}

.username-btn {
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.username-create {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.username-create:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.username-skip,
.username-cancel {
    background-color: #303030;
    color: #ffffff;
}

.username-skip:hover,
.username-cancel:hover {
    background-color: #404040;
    transform: translateY(-2px);
}

.username-note {
    font-size: 14px;
    color: #888888;
    margin-top: 10px;
}

/* Username Required Overlay */
.username-required-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.username-required-popup {
    background: linear-gradient(135deg, #212121 0%, #0f0f0f 100%);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.username-required-content {
    text-align: center;
}

.username-required-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.username-required-content p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #aaaaaa;
}

/* Notification */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .age-verification-popup,
    .username-setup-popup,
    .username-required-popup {
        padding: 30px 20px;
        max-width: 90%;
    }
    
    .age-verification-content h2,
    .username-setup-content h2,
    .username-required-content h2 {
        font-size: 24px;
    }
    
    .age-buttons,
    .username-buttons,
    .username-required-buttons {
        flex-direction: column;
    }
    
    .age-btn,
    .username-btn {
        width: 100%;
    }
}
