* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 3, 3, 0.889);
    z-index: -1;
}

.card-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 430px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px #00000080;
    transition: transform 0.3s ease;
}

@media screen and (max-width: 768px) {
    .card-container {
        height: 350px;
    }
    .card-content {
        bottom: 20px;
        left: 20px;
    }
    .card-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .card-subtitle {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .social-icons {
        gap: 10px;
        flex-wrap: wrap;
    }
    .social-icon {
        width: 32px;
        height: 32px;
    }
}

@media screen and (max-width: 480px) {
    body {
        padding: 10px;
    }
    .card-container {
        height: 300px;
    }
    .card-title {
        font-size: 28px;
    }
    .social-icon {
        width: 28px;
        height: 28px;
    }
    .social-icon svg {
        width: 16px;
        height: 16px;
    }
}

.card-container:hover {
    transform: translateY(-5px);
}

.card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.8)
    );
    z-index: 2;
}

.card-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: white;
    z-index: 3;
}

.card-subtitle {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.card-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
}

/* Instagram hover effect */
.social-icon[data-tooltip="Instagram"]:hover {
    background-color: #E1306C;
}
.social-icon[data-tooltip="Instagram"]:hover svg {
    fill: white;
}

/* GitHub hover effect */
.social-icon[data-tooltip="GitHub"]:hover {
    background-color: #333;
}
.social-icon[data-tooltip="GitHub"]:hover svg {
    fill: white;
}

/* Twitter hover effect */
.social-icon[data-tooltip="Twitter"]:hover {
    background-color: #000000;
}
.social-icon[data-tooltip="Twitter"]:hover svg {
    fill: white;
}

/* YouTube hover effect */
.social-icon[data-tooltip="YouTube"]:hover {
    background-color: #FF0000;
}
.social-icon[data-tooltip="YouTube"]:hover svg {
    fill: white;
}

/* Twitch hover effect */
.social-icon[data-tooltip="Twitch"]:hover {
    background-color: #9146FF;
}
.social-icon[data-tooltip="Twitch"]:hover svg {
    fill: white;
}

/* Discord hover effect */
.social-icon[data-tooltip="Discord"]:hover {
    background-color: #7289DA;
}
.social-icon[data-tooltip="Discord"]:hover svg {
    fill: white;
}

/* Spotify hover effect */
.social-icon[data-tooltip="Spotify"]:hover {
    background-color: #1DB954;
}
.social-icon[data-tooltip="Spotify"]:hover svg {
    fill: white;
}

.social-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 8px;
    background-color: rgb(0, 0, 0);
    color: white;
    font-size: 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.social-icon:hover::after {
    opacity: 1;
    visibility: visible;
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: white;
}

/* Mute/Unmute toggle button */
.mute-toggle {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 4; /* above overlay and video */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
    /* optional subtle glass feel */
    backdrop-filter: blur(4px);
}

.mute-toggle:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.25);
}

.mute-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.35);
}

/* Refine icon appearance: outline style + subtle shadow */
.mute-toggle svg {
    width: 20px;
    height: 20px;
    fill: none;               /* outline look */
    stroke: #ffffff;          /* crisp white stroke */
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,.35));
}
.mute-toggle svg * {
    fill: none;               /* enforce outline on inner shapes */
}

/* State-aware hover tints (keeps existing vibe, only on hover) */
.mute-toggle[data-state="unmuted"]:hover {
    background-color: rgba(29, 185, 84, 0.28);   /* Spotify green tint */
}
.mute-toggle[data-state="muted"]:hover {
    background-color: rgba(255, 77, 79, 0.35);   /* soft red tint */
}

/* Keep existing hover lift */
.mute-toggle:hover {
    transform: translateY(-2px);
    /* background-color stays overridden by state selectors above */
}

.mute-toggle .icon-muted { display: none; }
.mute-toggle .icon-unmuted { display: none; }
.mute-toggle[data-state="muted"] .icon-muted { display: block; }
.mute-toggle[data-state="unmuted"] .icon-unmuted { display: block; }

/* Tooltip (matching social-icon tooltip) */
.mute-toggle::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 8px;
    background-color: rgb(0, 0, 0);
    color: white;
    font-size: 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mute-toggle:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Responsive sizing to match existing breakpoints */
@media screen and (max-width: 768px) {
    .mute-toggle {
        width: 36px;
        height: 36px;
        top: 12px;
        right: 12px;
    }
    .mute-toggle svg {
        width: 16px;
        height: 16px;
    }
}

@media screen and (max-width: 480px) {
    .mute-toggle {
        width: 32px;
        height: 32px;
        top: 10px;
        right: 10px;
    }
    .mute-toggle svg {
        width: 14px;
        height: 14px;
    }
}