body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

body {
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

#bgVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    opacity: 0.7;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.frosted-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    max-width: 400px;
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-image: url('assets/profile.gif');
    background-size: cover;
    background-position: center;
    margin: 0 auto 20px;
}

h1 {
    color: white;
    margin-bottom: 15px;
}

p {
    color: #e0e0e0;
    line-height: 1.6;
}

.dropdown {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.dropbtn {
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropbtn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 15px;
    margin-top: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dropdown-content a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.blur-in {
    animation: blurIn 1s ease-out;
}

@keyframes blurIn {
    from {
        filter: blur(20px);
        opacity: 0;
    }
    to {
        filter: blur(0);
        opacity: 1;
    }
}

.tilt-effect {
    transition: transform 0.1s ease-out;
}

.mute-button {
    position: fixed;
    top: 20px;
    right: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 16px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mute-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

.github:hover {
    color: #f0f6fc;
    box-shadow: 0 5px 15px rgba(240, 246, 252, 0.2);
}

.discord:hover {
    color: #7289da;
    box-shadow: 0 5px 15px rgba(114, 137, 218, 0.2);
}

.roblox:hover {
    color: #ff0000;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}
