@font-face {
    font-family: 'Hellbone';
    src: url('fonts/Hellbone-Demo.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HelpMe';
    src: url('fonts/HelpMe.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nightcore Demo';
    src: url('fonts/Nightcore Demo.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Storm Gust';
    src: url('fonts/Storm Gust.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Blackcraft';
    src: url('fonts/Blackcraft.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GhoulFriAOE';
    src: url('fonts/GhoulFriAOE.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pixelmania';
    src: url('fonts/Pixelmania.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Super Pixel';
    src: url('fonts/Super Pixel Personal Use.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pixel Craft';
    src: url('fonts/PIXEL CRAFT.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mxnster';
    src: url('fonts/Mxnster-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

body {
    font-family: 'Blackcraft', 'Inter', sans-serif;
    overflow-y: auto;
    overflow-x: hidden;
    background: #000;
    cursor: default;
    scrollbar-width: thin;
    scrollbar-color: #ff6b35 #181214;
}

body::-webkit-scrollbar {
    width: 14px;
    background: #181214;
}

body::-webkit-scrollbar-track {
    background: #181214;
    border-radius: 8px;
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700);
    border-radius: 8px;
    border: 3px solid #181214;
    box-shadow: 0 0 12px 2px #ff6b35aa;
    transition: background 0.2s, box-shadow 0.2s;
}

body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ffd700, #ff6b35, #f7931e);
    box-shadow: 0 0 18px 4px #ffd700cc;
}

html, body {
    scrollbar-width: thin;
    scrollbar-color: #ff6b35 #181214;
}

html::-webkit-scrollbar, body::-webkit-scrollbar, *::-webkit-scrollbar {
    width: 14px;
    background: #181214;
}

html::-webkit-scrollbar-track, body::-webkit-scrollbar-track, *::-webkit-scrollbar-track {
    background: #181214;
    border-radius: 8px;
}

html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb, *::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700);
    border-radius: 8px;
    border: 3px solid #181214;
    box-shadow: 0 0 12px 2px #ff6b35aa;
    transition: background 0.2s, box-shadow 0.2s;
}

html::-webkit-scrollbar-thumb:hover, body::-webkit-scrollbar-thumb:hover, *::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ffd700, #ff6b35, #f7931e);
    box-shadow: 0 0 18px 4px #ffd700cc;
}

body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
    filter: blur(15px) brightness(0.3);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    cursor: pointer;
    transition: opacity 0.5s ease;
}

.overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.overlay-content {
    text-align: center;
    color: #fff;
}

.overlay-content h1 {
    font-family: 'HelpMe', 'Inter', sans-serif;
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700);
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    text-fill-color: transparent;
    padding: 0.2em 0.7em;
    word-break: break-word;
    max-width: 95vw;
    box-sizing: border-box;
}

.overlay-content p {
    font-size: 1.2rem;
    color: #ffa726;
    font-weight: 300;
}

@keyframes fire-glow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.main-content {
    position: relative;
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 40px 20px;
    box-sizing: border-box;
}

.main-content.hidden {
    display: none;
}

.audio-controls.redesigned {
    margin: 40px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 8, 16, 0.92);
    border: 2.5px solid #ff6b35;
    border-radius: 22px;
    box-shadow: 0 0 32px 0 #ff6b3533, 0 0 0 2px #ff6b3533 inset;
    padding: 28px 48px 28px 38px;
    max-width: 520px;
    width: 100%;
    gap: 32px;
    position: relative;
    overflow: visible;
    transition: box-shadow 0.3s;
}

.audio-controls.redesigned .mute-btn {
    background: none;
    border: none;
    border-radius: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ff6b35;
    transition: background 0.18s, box-shadow 0.18s;
    margin: 0;
    padding: 0;
    outline: none;
    position: relative;
}

.audio-controls.redesigned .mute-btn:focus,
.audio-controls.redesigned .mute-btn:hover {
    background: rgba(255, 107, 53, 0.13);
    box-shadow: 0 0 12px 2px #ff6b35, 0 0 24px 0 #ffd70033;
}

.audio-controls.redesigned .mute-svg-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 2;
}

.audio-controls.redesigned .mute-btn svg {
    display: block;
    width: 28px;
    height: 28px;
    transition: filter 0.2s;
    filter: drop-shadow(0 0 4px #ff6b35cc);
}

.audio-controls.redesigned .mute-btn:active svg {
    filter: drop-shadow(0 0 10px #ffd700cc);
}

.audio-controls.redesigned .mute-tooltip {
    position: absolute;
    left: 50%;
    top: -38px;
    transform: translateX(-50%) scale(0.8);
    background: rgba(30, 20, 10, 0.98);
    color: #ffd700;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    z-index: 10;
    box-shadow: 0 2px 8px #ff6b3533;
    letter-spacing: 0.02em;
}

.audio-controls.redesigned .mute-btn:hover .mute-tooltip,
.audio-controls.redesigned .mute-btn:focus .mute-tooltip {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.audio-controls.redesigned .volume-slider-container {
    background: rgba(0, 0, 0, 0.55);
    border: 2px solid #ff6b35;
    border-radius: 16px;
    padding: 16px 28px;
    box-shadow: 0 0 18px 0 #ff6b3533;
    display: flex;
    align-items: center;
    width: 320px;
    max-width: 80vw;
    position: relative;
    overflow: visible;
}

.slider-bg {
    position: absolute;
    left: 0; right: 0; top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 32px;
    pointer-events: none;
    z-index: 1;
}
.soundwave {
    display: flex;
    align-items: flex-end;
    height: 100%;
    width: 100%;
    justify-content: space-between;
    position: absolute;
    left: 0; top: 0;
    z-index: 1;
}
.soundwave span {
    display: block;
    width: 6px;
    border-radius: 3px;
    background: linear-gradient(180deg, #ffd700 0%, #ff6b35 100%);
    opacity: 0.18;
    animation: soundwave-pulse 1.2s infinite ease-in-out;
}
.soundwave span:nth-child(1) { height: 60%; animation-delay: 0s; }
.soundwave span:nth-child(2) { height: 90%; animation-delay: 0.2s; }
.soundwave span:nth-child(3) { height: 40%; animation-delay: 0.4s; }
.soundwave span:nth-child(4) { height: 80%; animation-delay: 0.6s; }
.soundwave span:nth-child(5) { height: 55%; animation-delay: 0.8s; }
@keyframes soundwave-pulse {
    0%, 100% { opacity: 0.18; transform: scaleY(1); }
    50% { opacity: 0.38; transform: scaleY(1.3); }
}

.audio-controls.redesigned .volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 14px;
    border-radius: 7px;
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
    background-size: 200% 100%;
    box-shadow: 0 0 8px #ff6b35, 0 0 16px #f7931e40;
    outline: none;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
    z-index: 2;
    border: none;
    overflow: visible;
    animation: fire-gradient-move 2.5s linear infinite;
}
@keyframes fire-gradient-move {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.audio-controls.redesigned .volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle at 60% 40%, #ffd700 80%, #ff6b35 100%);
    box-shadow: 0 0 18px 4px #ffd700cc, 0 0 0px 0 #ffd70030;
    border: 3px solid #f7931e;
    transition: background 0.3s, box-shadow 0.3s;
    z-index: 3;
    position: relative;
}
.audio-controls.redesigned .volume-slider:focus::-webkit-slider-thumb {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}
.audio-controls.redesigned .volume-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle at 60% 40%, #ffd700 80%, #ff6b35 100%);
    box-shadow: 0 0 18px 4px #ffd700cc, 0 0 0px 0 #ffd70030;
    border: 3px solid #f7931e;
    transition: background 0.3s, box-shadow 0.3s;
    z-index: 3;
    position: relative;
}
.audio-controls.redesigned .volume-slider:focus::-moz-range-thumb {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}
.audio-controls.redesigned .volume-slider::-ms-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle at 60% 40%, #ffd700 80%, #ff6b35 100%);
    box-shadow: 0 0 18px 4px #ffd700cc, 0 0 0px 0 #ffd70030;
    border: 3px solid #f7931e;
    transition: background 0.3s, box-shadow 0.3s;
    z-index: 3;
    position: relative;
}
.audio-controls.redesigned .volume-slider::-webkit-slider-runnable-track {
    height: 14px;
    border-radius: 7px;
    background: transparent;
    box-shadow: none;
}
.audio-controls.redesigned .volume-slider::-moz-range-track {
    height: 14px;
    border-radius: 7px;
    background: transparent;
    box-shadow: none;
}
.audio-controls.redesigned .volume-slider::-ms-fill-lower {
    background: transparent;
    border-radius: 7px;
}
.audio-controls.redesigned .volume-slider::-ms-fill-upper {
    background: transparent;
    border-radius: 7px;
}
.audio-controls.redesigned .volume-slider:focus {
    outline: none;
    box-shadow: 0 0 0 2px #ffd70030;
}

.volume-tooltip {
    position: absolute;
    left: 50%;
    top: -38px;
    transform: translateX(-50%) scale(0.8);
    background: rgba(30, 20, 10, 0.98);
    color: #ffd700;
    padding: 7px 18px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    z-index: 10;
    box-shadow: 0 2px 8px #ff6b3533;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.volume-slider:focus + .volume-tooltip,
.volume-slider:hover + .volume-tooltip,
.volume-slider:active + .volume-tooltip {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

@media (max-width: 600px) {
    .audio-controls.redesigned {
        max-width: 98vw;
        padding: 14px 4vw 14px 3vw;
        gap: 10px;
    }
    .audio-controls.redesigned .volume-slider-container {
        width: 120px;
        padding: 10px 6px;
    }
}

.bio-card {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #ff6b35;
    border-radius: 20px;
    padding: 32px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
    animation: card-glow 2s ease-in-out infinite alternate;
    box-sizing: border-box;
    word-break: break-word;
    position: relative;
}
.bio-card > * {
    position: relative;
    z-index: 2;
}

@keyframes card-glow {
    0% { box-shadow: 0 0 30px rgba(255, 107, 53, 0.3); }
    100% { box-shadow: 0 0 50px rgba(255, 107, 53, 0.6); }
}

.bio-header {
    margin-bottom: clamp(1rem, 4vw, 2.2rem);
}

.name {
    font-family: 'Nightcore Demo', 'Inter', sans-serif;
    font-size: clamp(2.0rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700);
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    text-fill-color: transparent;
    word-break: break-word;
    max-width: 95vw;
    box-sizing: border-box;
}

.discord {
    font-family: 'Storm Gust', 'Inter', sans-serif;
    font-size: clamp(1.3rem, 3vw, 2.2rem);
    color: #ffd700;
    font-weight: 700;
    cursor: pointer;
    background: rgba(30, 20, 10, 0.85);
    border: 2px solid #ffd700;
    border-radius: 12px;
    margin: 0.5em auto 0.7em auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    box-shadow: 0 0 10px 2px #ffd70066;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    letter-spacing: 0.04em;
    text-align: center;
    padding: 0.25em 1.2em;
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-image: linear-gradient(45deg, #ff6b35, #ffd700 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.discord-icon {
    width: 1.2em;
    height: 1.2em;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.6));
    transition: filter 0.2s ease;
}
.discord:hover, .discord:focus {
    background: rgba(255, 107, 53, 0.18);
    border: 2px solid #ffd700;
    box-shadow: 0 0 16px 4px #ffd70099;
    color: #fff;
    -webkit-text-fill-color: #fff;
    text-fill-color: #fff;
    outline: none;
}

.discord:hover .discord-icon, .discord:focus .discord-icon {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.9));
    transform: scale(1.1);
}

.discord:active {
    transform: scale(0.95);
}

.discord.copied {
    color: #4caf50;
    text-shadow: 0 0 15px rgba(76, 175, 80, 0.7);
    animation: copy-success 0.6s ease;
}

@keyframes copy-success {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.bio-info {
    margin-bottom: clamp(1rem, 4vw, 2.2rem);
}

.bio-description {
    margin-bottom: clamp(1rem, 4vw, 2.2rem);
    padding: clamp(0.8rem, 3vw, 1.2rem) clamp(1rem, 4vw, 1.5rem);
    background: rgba(255, 107, 53, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.1);
}

.description-text {
    font-family: 'GhoulFriAOE', 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ffa726;
    font-weight: 400;
    text-align: center;
    margin: 0;
    word-break: break-word;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: clamp(0.5rem, 2vw, 0.8rem) clamp(0.8rem, 4vw, 1.5rem);
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-sizing: border-box;
    word-break: break-word;
}

.label {
    color: #ffa726;
    font-weight: 600;
}

.value {
    color: #fff;
    font-weight: 400;
}

.interests h3 {
    font-family: 'Blackcraft', 'Inter', sans-serif;
    font-size: clamp(1.3rem, 4vw, 2.1rem);
    color: #ff6b35;
    margin-bottom: clamp(0.7rem, 2vw, 1.2rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7em;
}
.interests h3 .interest-left {
    font-size: 1.1em;
    margin-right: 0.3em;
}
.interests h3 .interest-right {
    font-size: 1.1em;
    margin-left: 0.3em;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 18px;
    box-sizing: border-box;
}
.interest-item {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
    border: 1px solid rgba(255, 107, 53, 0.5);
    border-radius: 10px;
    padding: clamp(0.5rem, 2vw, 1rem) clamp(0.5rem, 2vw, 0.8rem);
    color: #fff;
    font-weight: 500;
    font-size: 1.4rem !important;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-sizing: border-box;
    min-width: 0;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.interest-item:hover {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.3), rgba(247, 147, 30, 0.3));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.info-item, .label, .value, .interest-item {
    font-family: 'GhoulFriAOE', 'Inter', sans-serif !important;
}

.info-item, .label, .value {
    font-size: 1.3rem !important;
}
.interest-item {
    font-size: 1.4rem !important;
    padding: 0.4em 1em;
    min-width: 0;
    width: auto;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .overlay-content h1 {
        font-size: 2rem;
    }
    
    .name {
        font-size: 2.5rem;
    }
    
    .bio-card {
        padding: 30px 20px;
        max-width: 95vw;
    }
    
    .audio-controls {
        top: 10px;
        right: 10px;
        gap: 10px;
    }
    
    .volume-slider {
        width: 80px;
    }
    
    .mute-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .interests-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .overlay-content h1 {
        font-size: 1.5rem;
    }
    
    .name {
        font-size: 2rem;
    }
    
    .description-text {
        font-size: 1.1rem;
        line-height: 1.5;
    }
}

.audio-controls-bottom {
    display: none !important;
}

.hidden { display: none !important; }

.audio-controls.redesigned.minimal .volume-slider.minimal::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffd700;
    border: 3px solid #ff6b35;
    box-shadow: 0 0 10px 2px #ffd70099, 0 0 0 2px #ff6b35;
    margin-top: -8px;
    transition: box-shadow 0.2s, border 0.2s;
    position: relative;
    z-index: 2;
}
.audio-controls.redesigned.minimal .volume-slider.minimal:focus::-webkit-slider-thumb,
.audio-controls.redesigned.minimal .volume-slider.minimal:hover::-webkit-slider-thumb {
    box-shadow: 0 0 16px 4px #ffd700cc, 0 0 0 2.5px #ff6b35;
    border: 3.5px solid #ffd700;
}
.audio-controls.redesigned.minimal .volume-slider.minimal::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffd700;
    border: 3px solid #ff6b35;
    box-shadow: 0 0 10px 2px #ffd70099, 0 0 0 2px #ff6b35;
    transform: translateY(-8px);
    transition: box-shadow 0.2s, border 0.2s;
    position: relative;
    z-index: 2;
}
.audio-controls.redesigned.minimal .volume-slider.minimal:focus::-moz-range-thumb,
.audio-controls.redesigned.minimal .volume-slider.minimal:hover::-moz-range-thumb {
    box-shadow: 0 0 16px 4px #ffd700cc, 0 0 0 2.5px #ff6b35;
    border: 3.5px solid #ffd700;
}
.audio-controls.redesigned.minimal .volume-slider.minimal::-ms-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffd700;
    border: 3px solid #ff6b35;
    box-shadow: 0 0 10px 2px #ffd70099, 0 0 0 2px #ff6b35;
    margin-top: 0px;
    transition: box-shadow 0.2s, border 0.2s;
    position: relative;
    z-index: 2;
}
.audio-controls.redesigned.minimal .volume-slider-container.minimal {
    width: 120px;
    max-width: 40vw;
}
.audio-controls.redesigned.minimal .volume-value {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 600;
    margin-left: 12px;
    min-width: 36px;
    text-align: right;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 4px #ffb93588;
    user-select: none;
    pointer-events: none;
    display: inline-block;
}

.audio-controls.fire-theme {
    max-width: 100%;
    width: 100%;
    margin: 32px 0 0 0;
    box-shadow: none;
    border-radius: 14px;
    background: #181214;
    border: 2px solid #ff6b35;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 24px;
}

.slider-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
    margin: 0 18px;
}

.audio-controls.fire-theme .volume-slider.fire {
    width: 100%;
    min-width: 80px;
    max-width: 100%;
    margin: 0;
}

.audio-controls.fire-theme .mute-btn {
    width: 120px;
    padding: 0 18px;
    justify-content: center;
    text-align: center;
    height: 32px;
    border-radius: 8px;
    margin: 0;
    background: transparent;
    display: flex;
    align-items: center;
    border: none;
    box-shadow: none;
    transition: background 0.15s, box-shadow 0.15s;
    position: relative;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff6b35;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    outline: none;
    cursor: pointer;
    white-space: nowrap;
}
.audio-controls.fire-theme .mute-btn:focus,
.audio-controls.fire-theme .mute-btn:hover {
    background: rgba(255, 107, 53, 0.10);
    box-shadow: 0 0 8px 1.5px #ff6b35, 0 0 12px 0 #ffd70033;
    color: #ffd700;
}
.audio-controls.fire-theme .mute-btn:active {
    color: #ffd700;
    text-shadow: 0 0 8px #ffd700cc;
}
.audio-controls.fire-theme .mute-btn svg {
    width: 20px;
    height: 20px;
    stroke: #ff6b35;
    fill: none;
    filter: drop-shadow(0 0 2px #ff6b35cc);
    transition: filter 0.2s;
}
.audio-controls.fire-theme .mute-btn:active svg {
    filter: drop-shadow(0 0 6px #ffd700cc);
}
.audio-controls.fire-theme .volume-slider.fire {
    -webkit-appearance: none;
    appearance: none;
    width: 180px;
    height: 6px;
    border-radius: 3px;
    background: #2a2324;
    outline: none;
    cursor: pointer;
    border: none;
    transition: box-shadow 0.2s;
    box-shadow: 0 1px 2px #0004;
    position: relative;
}
.audio-controls.fire-theme .volume-slider.fire::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffd700;
    border: none;
    box-shadow: 0 0 10px 2.5px #ffd70088;
    margin-top: -7px;
    transition: box-shadow 0.2s;
    position: relative;
    z-index: 2;
}
.audio-controls.fire-theme .volume-slider.fire:focus::-webkit-slider-thumb,
.audio-controls.fire-theme .volume-slider.fire:hover::-webkit-slider-thumb {
    box-shadow: 0 0 16px 4px #ffd70099;
}
.audio-controls.fire-theme .volume-slider.fire::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, #ff6b35 0%, #ffd700 var(--fill-val, 44%), #2a2324 var(--fill-val, 44%), #2a2324 100%);
    box-shadow: none;
}
.audio-controls.fire-theme .volume-slider.fire::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffd700;
    border: none;
    box-shadow: 0 0 10px 2.5px #ffd70088;
    margin-top: -7px;
    transition: box-shadow 0.2s;
    position: relative;
    z-index: 2;
}
.audio-controls.fire-theme .volume-slider.fire:focus::-moz-range-thumb,
.audio-controls.fire-theme .volume-slider.fire:hover::-moz-range-thumb {
    box-shadow: 0 0 16px 4px #ffd70099;
}
.audio-controls.fire-theme .volume-slider.fire::-moz-range-track {
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, #ff6b35 0%, #ffd700 var(--fill-val, 44%), #2a2324 var(--fill-val, 44%), #2a2324 100%);
    box-shadow: none;
}
.audio-controls.fire-theme .volume-slider.fire::-ms-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffd700;
    border: none;
    box-shadow: 0 0 10px 2.5px #ffd70088;
    margin-top: 0px;
    transition: box-shadow 0.2s;
    position: relative;
    z-index: 2;
}
.audio-controls.fire-theme .volume-slider.fire:focus::-ms-thumb,
.audio-controls.fire-theme .volume-slider.fire:hover::-ms-thumb {
    box-shadow: 0 0 16px 4px #ffd70099;
}
.audio-controls.fire-theme .volume-slider.fire::-ms-fill-lower {
    background: #ff6b35;
    border-radius: 3px;
}
.audio-controls.fire-theme .volume-slider.fire::-ms-fill-upper {
    background: #2a2324;
    border-radius: 3px;
}
.audio-controls.fire-theme .volume-slider.fire:focus {
    outline: none;
    box-shadow: 0 0 0 1.5px #ffd70030;
}
.audio-controls.fire-theme .volume-value.fire {
    color: #ffd700;
    font-size: 1.4rem;
    font-weight: 700;
    margin-left: 24px;
    min-width: 56px;
    max-width: 56px;
    text-align: right;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 4px #ffb93588;
    user-select: none;
    pointer-events: none;
    display: inline-block;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .audio-controls.fire-theme .volume-value.fire {
        margin-left: 32px;
    }
}

.audio-controls.fire-theme #mute-text {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    color: inherit;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s, text-shadow 0.2s;
} 

.mute-btn {
    background: rgba(30, 20, 10, 0.85) !important;
    border: 2px solid #ff6b35 !important;
    border-radius: 12px !important;
    padding: 0.4em 1.5em !important;
    min-width: 100px !important;
    color: #ff6b35 !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    box-shadow: 0 0 8px 0 #ff6b3533 !important;
    transition: background 0.18s, box-shadow 0.18s, color 0.18s !important;
    outline: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
}
#mute-text {
    color: #ff6b35 !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    text-align: center !important;
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
    display: inline-block;
}
.mute-btn:focus, .mute-btn:hover {
    background: #ff6b35 !important;
    color: #fff !important;
    box-shadow: 0 0 16px 0 #ff6b35cc !important;
}
.mute-btn:focus #mute-text, .mute-btn:hover #mute-text {
    color: #fff !important;
} 

.mute-btn, #mute-text, .volume-value {
    font-family: 'Pixel Craft', 'Inter', sans-serif !important;
} 

.poll-card {
  margin: 2.5rem auto 0 auto;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  background: rgba(20, 10, 10, 0.95);
  border-radius: 1.5rem;
  box-shadow: 0 0 24px 4px #ff6b35cc, 0 0 0 3px #ffd70044;
  border: 2px solid #ff6b35;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}
.poll-title {
  font-family: 'Blackcraft', 'Inter', sans-serif;
  font-size: 1.8rem;
  color: #ffd700;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 4px #ff6b35, 0 0 1px #fff, 0 1px 4px #000;
  line-height: 1.1;
  padding: 0.3em 0.2em;
  background: rgba(0,0,0,0.32);
  border-radius: 0.7em;
  display: inline-block;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.poll-options {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 1.2rem;
}
.poll-option {
  background: #181214;
  border: 2px solid #ff6b35;
  border-radius: 1rem;
  padding: 1.1rem 1.2rem;
  font-family: 'Blackcraft', 'Inter', sans-serif;
  font-size: 1.35rem;
  color: #fff;
  cursor: pointer;
  position: relative;
  transition: box-shadow 0.2s, border-color 0.2s, background 0.2s;
  box-shadow: 0 0 2px 1px #ff6b3522;
  overflow: hidden;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 1.1em;
}
.poll-option:hover:not(.voted), .poll-option:focus:not(.voted) {
  border-color: #ffd700;
  box-shadow: 0 0 4px 1px #ffd70055;
  background: #22160a;
}
.poll-option.voted {
  background: #2a1a0a;
  border-color: #ffd700;
  box-shadow: 0 0 6px 2px #ffd70055;
  cursor: default;
}
.poll-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, #ff6b35 0%, #ffd700 100%);
  opacity: 0.18;
  z-index: 0;
  border-radius: 1rem;
  transition: width 0.7s cubic-bezier(.77,0,.18,1), opacity 0.3s;
  pointer-events: none;
}
.poll-option .poll-label {
  position: relative;
  z-index: 2;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1.45rem;
  font-family: 'Blackcraft', 'Inter', sans-serif;
  flex: 2 1 0;
  min-width: 40px;
  max-width: 65vw;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.poll-option .poll-count {
  position: relative;
  z-index: 2;
  font-family: 'Pixel Craft', 'Inter', monospace;
  color: #ffd700;
  font-size: 1.55rem;
  margin-left: 1.2em;
  font-weight: bold;
  text-shadow: 0 0 2px #ff6b35;
  padding-left: 0.5em;
  flex: 0 0 auto;
  text-align: right;
  min-width: 1.5em;
  white-space: nowrap;
}
.poll-option .popular-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,215,0,0.10);
  color: #ffd700;
  font-family: 'Pixel Craft', 'Inter', monospace;
  font-size: 0.7em;
  border-radius: 0.7em;
  padding: 0.05em 0.7em;
  margin-left: 0;
  font-weight: bold;
  box-shadow: none;
  letter-spacing: 1px;
  border: 1.5px solid #ffd700;
  position: static;
  white-space: nowrap;
  pointer-events: none;
  text-align: center;
  min-width: 0;
  max-width: 7em;
  overflow: hidden;
  text-overflow: ellipsis;
}
.poll-option .popular-badge::before {
  content: '🔥';
  margin-right: 0.4em;
  font-size: 1em;
}
.poll-message {
  font-family: 'HelpMe', 'Blackcraft', 'Inter', sans-serif;
  color: #ffd700;
  font-size: 1.1rem;
  margin-top: 0.7rem;
  min-height: 1.5em;
  text-shadow: 0 0 2px #ff6b35;
}
@media (max-width: 600px) {
  .poll-card {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    max-width: 98vw;
  }
  .poll-title {
    font-size: 0.98rem;
  }
  .poll-option {
    font-size: 0.98rem;
    padding: 0.6rem 0.7rem;
  }
  .poll-option .popular-badge {
    display: inline-flex;
    align-items: center;
    margin: 0 0.7em;
    width: auto;
    min-width: 0;
    max-width: none;
    overflow: visible;
  }
} 

.slider-value-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
}
.slider-value-row .slider-wrapper {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0 8px 0 0;
    display: flex;
    align-items: center;
}
.slider-value-row .volume-value.fire {
    margin-left: 8px;
    flex-shrink: 0;
    min-width: unset;
    max-width: unset;
    text-align: right;
    font-size: 1.3rem;
}
@media (max-width: 600px) {
    .slider-value-row {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        justify-content: center !important;
    }
    .slider-value-row .slider-wrapper {
        margin: 0 auto !important;
        padding-right: 0 !important;
        max-width: 140px !important;
        width: 100% !important;
        justify-content: center !important;
    }
    .slider-value-row .volume-slider.fire {
        width: 100% !important;
        max-width: 140px !important;
        margin: 0 auto !important;
    }
    .slider-value-row .volume-value.fire {
        margin-left: 0 !important;
        margin-top: 8px !important;
        text-align: center !important;
        font-size: 1.2rem !important;
    }
} 

@media (max-width: 600px) {
  .audio-controls.fire-theme {
    padding-left: 8px !important;
    padding-right: 8px !important;
    box-sizing: border-box !important;
  }
  .audio-controls.fire-theme .slider-value-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 !important;
  }
  .audio-controls.fire-theme .slider-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
  .audio-controls.fire-theme .volume-slider.fire {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
  .audio-controls.fire-theme .volume-value.fire {
    display: block !important;
    margin: 10px auto 0 auto !important;
    text-align: center !important;
    font-size: 1.3rem !important;
    max-width: 100% !important;
    width: 100% !important;
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
} 
