body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0a0a0a;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    filter: blur(10px) brightness(0.3);
    object-fit: cover;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: rgba(22, 22, 22, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

header {
    text-align: center;
    padding: 20px;
    background-color: transparent;
    box-shadow: none;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

nav ul li a {
    color: #808080;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

nav ul li a:hover {
    color: #ffffff;
}

.content-card {
    background-color: #1e1e1e;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.content-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.content-card h2 {
    color: #ffffff;
    margin-top: 0;
    font-size: 1.4em;
    border-bottom: 1px solid #404040;
    padding-bottom: 10px;
}

.content-card h3 {
    color: #808080;
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-card ul {
    list-style: none;
    padding: 0;
}

.content-card ul li {
    margin: 12px 0;
    color: #ffffff;
    padding-left: 20px;
    position: relative;
}

.content-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #808080;
}

.content-card ul li a {
    color: #808080;
    text-decoration: none;
    transition: color 0.2s;
}

.content-card ul li a:hover {
    color: #ffffff;
}

footer {
    position: static;
    padding: 20px;
    text-align: center;
    background-color: transparent;
    color: #808080;
    font-size: 12px;
    box-shadow: none;
}

.social-media a {
    color: #808080;
    text-decoration: none;
    margin: 0 10px;
    font-size: 12px;
}

social-media a:hover {
    color: #ffffff;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
    object-fit: cover;
    border: 3px solid #ffffff;
}

.mute-button {
    position: fixed;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
    padding: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color 0.2s;
}

.mute-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.mute-button img {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

#contact-form textarea {
    width: 90%;
    min-height: 100px;
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 4px;
    color: #ffffff;
    padding: 10px;
    margin-top: 8px;
    resize: none;
}

#contact-form button {
    background: #404040;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    margin-top: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

#contact-form button:hover {
    background: #505050;
}

@media screen and (max-width: 768px) {
    .container {
        margin: 20px 10px;
        padding: 15px;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .profile-pic {
        width: 100px;
        height: 100px;
    }

    .content-card {
        padding: 15px;
    }

    #contact-form textarea {
        width: 100%;
    }

    .mute-button {
        top: 10px;
        right: 10px;
    }
}

.mobile .bg-video {
    display: none;
}

.mobile body {
    background: #0a0a0a;
}
