html,
body {
    overflow: hidden;
    height: 100%;
    margin: 0;
    padding: 0;
}

#bgVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6);
}

body {
    font-family: 'Segoe UI', sans-serif;
    color: #cd675f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    padding: 2rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
    animation: float 3s ease-in-out infinite;
}

.logo-gif {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(205, 103, 95, 0.6));
    transition: transform 0.3s ease;
}

.logo-gif:hover {
    transform: scale(1.1) rotate(10deg);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

.card {
    background: rgba(44, 32, 32, 0.219);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    padding: 1.5rem 2rem 2rem;
    text-align: center;
    max-width: 400px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
    margin-top: 30px;
}

.profile-header {
    text-align: center;
    position: relative;
    margin-bottom: -120px;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(205, 103, 95, 0.7);
    box-shadow: 0 0 15px rgba(205, 103, 95, 0.5);
    transform: translateY(-70%);
    background: rgba(44, 32, 32, 0.3);
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 2.5rem;
    margin: 0.5rem 0 0.3rem;
    text-shadow: 0 0 10px rgba(205, 103, 95, 0.7),
        0 0 20px rgba(205, 103, 95, 0.5);
    animation: glow-pulse 2s infinite alternate;
}

.subtitle {
    margin: 0.5rem 0 1rem;
    font-size: 1.1rem;
    text-shadow: 0 0 8px rgba(205, 103, 95, 0.5);
}

@keyframes glow-pulse {
    from {
        text-shadow: 0 0 5px rgba(205, 103, 95, 0.7),
            0 0 10px rgba(205, 103, 95, 0.5);
    }

    to {
        text-shadow: 0 0 15px rgba(205, 103, 95, 0.9),
            0 0 25px rgba(205, 103, 95, 0.7),
            0 0 35px rgba(205, 103, 95, 0.5);
    }
}

.icons img {
    width: 40px;
    margin: 0 0.5rem;
    vertical-align: middle;
    filter: drop-shadow(0 0 5px rgba(205, 103, 95, 0.4));
}

.links a {
    display: block;
    margin: 0.5rem 0;
    padding: 0.8rem;
    background: rgba(56, 26, 26, 0.09);
    border-radius: 12px;
    text-decoration: none;
    color: #cd675f;
    transition: all 0.3s;
    box-shadow: 0 0 5px rgba(205, 103, 95, 0.3);
    text-shadow: 0 0 3px rgba(205, 103, 95, 0.3);
}

.links a:hover {
    transform: scale(1.05);
    background: rgba(99, 41, 41, 0.144);
    box-shadow: 0 0 15px rgba(205, 103, 95, 0.5);
    text-shadow: 0 0 8px rgba(205, 103, 95, 0.6);
}

.techno {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
    text-shadow: 0 0 5px rgba(205, 103, 95, 0.4);
}

.audio-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    background: rgba(205, 103, 95, 0.2);
    color: #fff;
    border: 2px solid rgba(205, 103, 95, 0.5);
    border-radius: 30px;
    cursor: pointer;
    z-index: 100;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1),
        0 0 5px rgba(205, 103, 95, 0.4);
}

.audio-toggle:hover {
    background: rgba(205, 103, 95, 0.3);
    border-color: rgba(205, 103, 95, 0.8);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15),
        0 0 10px rgba(205, 103, 95, 0.6);
}

.audio-toggle::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
}

.audio-toggle[data-state="on"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z'/%3E%3C/svg%3E");
}

.audio-toggle[data-state="off"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M16.5 12c0-1.77-1.02-3.29-2.5-4.03v2.21l2.45 2.45c.03-.2.05-.41.05-.63zm2.5 0c0 .94-.2 1.82-.54 2.64l1.51 1.51C20.63 14.91 21 13.5 21 12c0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zM4.27 3L3 4.27 7.73 9H3v6h4l5 5v-6.73l4.25 4.25c-.67.52-1.42.93-2.25 1.18v2.06c1.38-.31 2.63-.95 3.69-1.81L19.73 21 21 19.73l-9-9L4.27 3zM12 4L9.91 6.09 12 8.18V4z'/%3E%3C/svg%3E");
}