[data-device=mobile] {
    font-size: 14px
}

[data-orientation=landscape] .live-container {
    padding: .5rem;
    padding-top: 90px
}

[data-orientation=portrait] .live-container {
    padding: 1rem;
    padding-top: 120px
}

.live-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.live-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%
}

.video-section {
    width: 100%;
    display: flex;
    flex-direction: column
}

.video-wrapper {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px #0bd0f333;
    aspect-ratio: 16 / 9
}

.video-player {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    position: relative;
    touch-action: manipulation
}

.video-player video {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: block
}

.offline-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0bd0f31a, #f805a71a);
    text-align: center;
    padding: 2rem;
    box-sizing: border-box
}

.offline-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite
}

@keyframes bounce {

    0%,
    to {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.offline-placeholder h2 {
    font-size: 1.8rem;
    margin-bottom: .5rem;
    color: #f5f5f5
}

.offline-placeholder p {
    color: #b0b0b0;
    margin-bottom: 1.5rem
}

.schedule-info {
    margin-top: 1rem;
    padding: 1rem;
    background: #0bd0f31a;
    border-left: 3px solid #0bd0f3;
    border-radius: 4px;
    max-width: 100%
}

.schedule-info p {
    color: #0bd0f3;
    font-size: .95rem;
    margin: 0
}

.stream-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #181818cc;
    border-radius: 8px;
    gap: 1rem;
    flex-wrap: wrap
}

.stream-title {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    flex: 1;
    min-width: 150px
}

.stream-title h3 {
    font-size: 1.2rem;
    color: #f5f5f5;
    margin: 0;
    word-break: break-word
}

.viewer-count {
    font-size: .9rem;
    color: #0bd0f3
}

.stream-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    justify-content: flex-end
}

.action-btn {
    background: #0bd0f333;
    border: 1px solid #0bd0f3;
    color: #0bd0f3;
    padding: .5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.action-btn:hover,
.action-btn:focus {
    background: #0bd0f34d;
    box-shadow: 0 0 10px #0bd0f34d;
    outline: none
}

.action-btn:active {
    transform: scale(.95)
}

.settings-panel {
    background: #181818f2;
    border: 1px solid #0bd0f3;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
    animation: slideDown .3s ease;
    max-width: 100%
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(11, 208, 243, .2);
    padding-bottom: 1rem
}

.settings-header h4 {
    font-size: 1rem;
    margin: 0;
    color: #f5f5f5
}

.close-btn {
    background: none;
    border: none;
    color: #0bd0f3;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation
}

.close-btn:hover {
    color: #f805a7
}

.settings-content {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.setting-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    cursor: pointer;
    padding: .5rem;
    border-radius: 4px;
    transition: background .2s;
    touch-action: manipulation
}

.setting-item:hover {
    background: #0bd0f31a
}

.setting-item input[type=checkbox] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0bd0f3
}

.setting-item span {
    color: #f5f5f5;
    font-size: .95rem
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .5rem
}

.volume-control label {
    white-space: nowrap;
    color: #f5f5f5
}

.volume-control input[type=range] {
    flex: 1;
    cursor: pointer;
    accent-color: #0bd0f3;
    min-width: 100px
}

.live-content.theater-mode {
    grid-template-columns: 1fr;
    gap: 0
}

.live-content.theater-mode .chat-section {
    display: none
}

@media (min-width: 768px) {
    .live-container {
        padding: 2rem;
        padding-top: 120px
    }

    .stream-info {
        flex-wrap: nowrap
    }

    .video-wrapper {
        aspect-ratio: 16 / 9;
        min-height: 400px
    }
}

@media (max-width: 1024px) {
    .live-content {
        grid-template-columns: 1fr
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .live-container {
        padding: 1.5rem
    }

    .video-wrapper {
        min-height: 350px
    }

    .action-btn {
        padding: .4rem .8rem;
        font-size: .95rem
    }
}

@media (max-width: 768px) {
    .live-container {
        padding: 1rem;
        padding-top: 110px;
        gap: 1rem
    }

    .video-wrapper {
        aspect-ratio: auto;
        max-height: 300px;
        border-radius: 8px
    }

    .offline-placeholder {
        padding: 1.5rem;
        min-height: 250px
    }

    .offline-placeholder h2 {
        font-size: 1.4rem
    }

    .offline-icon {
        font-size: 2.5rem
    }

    .stream-info {
        flex-direction: column;
        gap: .75rem;
        padding: .75rem
    }

    .stream-title {
        min-width: auto
    }

    .stream-title h3 {
        font-size: 1rem
    }

    .viewer-count {
        font-size: .85rem
    }

    .stream-actions {
        width: 100%;
        justify-content: space-around;
        gap: .5rem
    }

    .action-btn {
        flex: 1;
        padding: .6rem .4rem;
        font-size: .85rem;
        min-height: 40px
    }

    .settings-panel {
        padding: 1rem;
        margin-top: .75rem
    }

    .settings-header {
        margin-bottom: .75rem;
        padding-bottom: .75rem
    }

    .settings-header h4 {
        font-size: .95rem
    }

    .volume-control {
        gap: .5rem
    }

    .volume-control input[type=range] {
        min-width: 80px
    }
}

@media (max-width: 480px) {
    .live-container {
        padding: .5rem;
        padding-top: 100px;
        gap: .75rem
    }

    .video-wrapper {
        aspect-ratio: auto;
        max-height: 250px;
        border-radius: 6px;
        box-shadow: 0 4px 16px #0bd0f326
    }

    .offline-placeholder {
        padding: 1rem;
        min-height: 220px
    }

    .offline-placeholder h2 {
        font-size: 1.2rem;
        margin-bottom: .25rem
    }

    .offline-placeholder p {
        font-size: .85rem;
        margin-bottom: 1rem
    }

    .offline-icon {
        font-size: 2rem;
        margin-bottom: .75rem
    }

    .schedule-info {
        padding: .75rem;
        margin-top: .75rem
    }

    .stream-info {
        flex-direction: column;
        gap: .5rem;
        padding: .6rem;
        border-radius: 6px
    }

    .stream-title {
        width: 100%
    }

    .stream-title h3 {
        font-size: .95rem
    }

    .viewer-count {
        font-size: .8rem
    }

    .stream-actions {
        width: 100%;
        justify-content: space-between;
        gap: .25rem
    }

    .action-btn {
        flex: 1;
        padding: .4rem .2rem;
        font-size: .75rem;
        min-width: 40px;
        min-height: 40px;
        border-radius: 4px
    }

    .action-btn span {
        line-height: 1
    }

    .settings-panel {
        padding: .75rem;
        margin-top: .5rem;
        border-radius: 6px
    }

    .settings-header {
        margin-bottom: .5rem;
        padding-bottom: .5rem;
        gap: .5rem
    }

    .settings-header h4 {
        font-size: .9rem
    }

    .close-btn {
        font-size: 1.2rem;
        width: 25px;
        height: 25px
    }

    .settings-content {
        gap: .75rem
    }

    .setting-item {
        padding: .4rem;
        gap: .5rem
    }

    .setting-item input[type=checkbox] {
        width: 16px;
        height: 16px
    }

    .setting-item span {
        font-size: .9rem
    }

    .volume-control {
        flex-direction: column;
        gap: .4rem;
        align-items: flex-start
    }

    .volume-control label {
        font-size: .9rem
    }

    .volume-control input[type=range] {
        width: 100%;
        min-width: auto
    }
}

@media (max-width: 360px) {
    html {
        font-size: 12px
    }

    .live-container {
        padding: .25rem;
        gap: .5rem
    }

    .video-wrapper {
        max-height: 200px
    }

    .stream-info {
        padding: .5rem;
        gap: .25rem
    }

    .stream-title h3 {
        font-size: .9rem
    }

    .action-btn {
        padding: .35rem .2rem;
        font-size: .7rem
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .live-container {
        padding: .5rem;
        padding-top: 90px
    }

    .video-wrapper {
        max-height: 85vh;
        aspect-ratio: auto
    }

    .stream-info {
        padding: .5rem
    }

    .settings-panel {
        max-height: 200px;
        overflow-y: auto
    }
}

@media (min-device-pixel-ratio: 2) {
    .action-btn {
        border-width: 1.5px
    }
}

@media print {

    nav,
    .site-footer,
    .stream-actions,
    .settings-panel {
        display: none
    }

    .live-container {
        margin: 0;
        padding: 0
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *:before,
    *:after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }

    .offline-icon {
        animation: none
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background: #000
    }
}

@media (prefers-color-scheme: light) {
    body {
        background: #000;
        color: #f5f5f5
    }
}

.tip-btn {
    background: linear-gradient(135deg, gold, orange);
    color: #000;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    margin-left: auto;
    margin-right: 10px
}

.tip-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #ffd70080
}

.tip-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000d9;
    z-index: 9999;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
    overflow-y: auto
}

.tip-modal.active {
    display: flex
}

.tip-modal-content {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(255, 215, 0, .3);
    border-radius: 16px;
    padding: 45px 20px 20px;
    text-align: center;
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    margin-bottom: 20px
}

.tip-modal-content h3 {
    color: gold;
    margin-bottom: 5px;
    font-size: 1.3rem
}

.tip-modal-content p {
    color: #888;
    margin-bottom: 15px;
    font-size: .9rem
}

.tip-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #00000080;
    border: 1px solid #444;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10
}

.tip-modal-close:hover {
    background: #ff000080;
    border-color: red
}

.chat-section {
    width: 100%;
    margin-top: 1.5rem
}

.chat-container {
    background: #181818f2;
    border: 1px solid rgba(11, 208, 243, .3);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 400px
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 1rem;
    background: #0bd0f31a;
    border-bottom: 1px solid rgba(11, 208, 243, .2)
}

.chat-header h4 {
    margin: 0;
    font-size: 1rem;
    color: #f5f5f5
}

.chat-viewers {
    font-size: .85rem;
    color: #0bd0f3
}

.chat-status {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .25rem .6rem;
    background: #0000004d;
    border-radius: 12px
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0
}

.status-dot.live {
    background: #0f0;
    box-shadow: 0 0 6px #0f0;
    animation: statusPulse 2s infinite
}

.status-dot.offline {
    background: red
}

@keyframes statusPulse {

    0%,
    to {
        opacity: 1
    }

    50% {
        opacity: .5
    }
}

.status-label {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase
}

.status-label.live {
    color: #0f0
}

.status-label.offline {
    color: red
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    scroll-behavior: smooth
}

.chat-messages::-webkit-scrollbar {
    width: 6px
}

.chat-messages::-webkit-scrollbar-track {
    background: #0000004d
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #0bd0f380;
    border-radius: 3px
}

.chat-welcome {
    text-align: center;
    color: #888;
    font-size: .85rem;
    padding: .5rem
}

.chat-message {
    font-size: .9rem;
    line-height: 1.4;
    word-wrap: break-word;
    animation: chatFadeIn .2s ease
}

@keyframes chatFadeIn {
    0% {
        opacity: 0;
        transform: translateY(5px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.chat-username {
    font-weight: 600;
    margin-right: .25rem
}

.chat-text {
    color: #f5f5f5
}

.chat-system {
    text-align: center;
    color: #666;
    font-size: .8rem;
    font-style: italic;
    padding: .25rem
}

.chat-input-area {
    border-top: 1px solid rgba(11, 208, 243, .2);
    background: #0000004d
}

.reaction-bar {
    display: flex;
    justify-content: center;
    gap: .5rem;
    padding: .5rem;
    border-bottom: 1px solid rgba(11, 208, 243, .1)
}

.reaction-btn {
    background: #0bd0f31a;
    border: 1px solid rgba(11, 208, 243, .3);
    border-radius: 8px;
    padding: .4rem .6rem;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all .2s ease;
    touch-action: manipulation
}

.reaction-btn:hover {
    background: #f805a733;
    border-color: #f805a7;
    transform: scale(1.1)
}

.reaction-btn:active {
    transform: scale(.95)
}

.chat-input-row {
    display: flex;
    padding: .75rem;
    gap: .5rem
}

#chatInput {
    flex: 1;
    background: #00000080;
    border: 1px solid rgba(11, 208, 243, .3);
    border-radius: 8px;
    padding: .75rem 1rem;
    color: #f5f5f5;
    font-size: .9rem;
    outline: none;
    transition: border-color .2s
}

#chatInput:focus {
    border-color: #0bd0f3
}

#chatInput::-moz-placeholder {
    color: #666
}

#chatInput::placeholder {
    color: #666
}

#chatSendBtn {
    background: linear-gradient(135deg, #0bd0f3, #f805a7);
    border: none;
    border-radius: 8px;
    padding: .75rem 1.25rem;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all .2s ease;
    touch-action: manipulation
}

#chatSendBtn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #0bd0f366
}

#chatSendBtn:active {
    transform: scale(.95)
}

.floating-emojis {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 150px;
    height: 400px;
    pointer-events: none;
    overflow: hidden;
    z-index: 1000
}

.floating-emoji {
    position: absolute;
    bottom: 0;
    font-size: 2rem;
    animation: floatUp 3s ease-out forwards;
    opacity: 0
}

@keyframes floatUp {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0)
    }

    50% {
        opacity: 1;
        transform: translateY(-150px) scale(1.2) rotate(15deg)
    }

    to {
        opacity: 0;
        transform: translateY(-350px) scale(.8) rotate(-15deg)
    }
}

@media (min-width: 1024px) {
    .live-content {
        grid-template-columns: 2fr 1fr
    }

    .chat-section {
        margin-top: 0
    }

    .chat-container {
        height: 100%;
        min-height: 500px
    }
}

@media (max-width: 768px) {
    .chat-container {
        height: 350px
    }

    .reaction-btn {
        font-size: 1rem;
        padding: .35rem .5rem
    }

    #chatInput {
        padding: .6rem .8rem;
        font-size: .85rem
    }

    #chatSendBtn {
        padding: .6rem 1rem;
        font-size: 1rem
    }

    .floating-emojis {
        right: 10px;
        width: 100px;
        height: 300px
    }

    .floating-emoji {
        font-size: 1.5rem
    }
}

@media (max-width: 480px) {
    .chat-container {
        height: 300px;
        border-radius: 8px
    }

    .chat-header {
        padding: .5rem .75rem
    }

    .chat-header h4 {
        font-size: .9rem
    }

    .chat-messages {
        padding: .75rem
    }

    .chat-message {
        font-size: .85rem
    }

    .reaction-bar {
        gap: .25rem;
        padding: .4rem
    }

    .reaction-btn {
        font-size: .9rem;
        padding: .3rem .4rem
    }

    .chat-input-row {
        padding: .5rem
    }

    .floating-emojis {
        bottom: 80px;
        right: 5px;
        width: 80px;
        height: 250px
    }

    .floating-emoji {
        font-size: 1.25rem
    }
}

.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000d9;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px)
}

.auth-modal-overlay.active {
    display: flex
}

.auth-modal {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(11, 208, 243, .3);
    border-radius: 16px;
    width: 90%;
    max-width: 420px;
    padding: 2rem;
    box-shadow: 0 20px 60px #000c;
    animation: modalSlideIn .3s ease-out
}

@keyframes modalSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(.95)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

.auth-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(11, 208, 243, .2)
}

.auth-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #f805a7, #0bd0f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.auth-modal-close {
    background: none;
    border: none;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color .2s
}

.auth-modal-close:hover {
    color: #fff
}

.auth-tabs {
    display: flex;
    margin-bottom: 1.5rem;
    background: #0000004d;
    border-radius: 8px;
    padding: 4px
}

.auth-tab {
    flex: 1;
    padding: .75rem;
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    border-radius: 6px;
    transition: all .2s;
    font-size: 1rem
}

.auth-tab:hover {
    color: #ccc
}

.auth-tab.active {
    background: linear-gradient(135deg, #f805a7, #0bd0f3);
    color: #fff
}

.auth-form {
    display: none
}

.auth-form.active {
    display: block
}

.auth-field {
    margin-bottom: 1rem
}

.auth-label {
    display: block;
    margin-bottom: .5rem;
    color: #b0b0b0;
    font-size: .9rem
}

.auth-input {
    width: 100%;
    padding: .75rem 1rem;
    background: #00000080;
    border: 1px solid rgba(11, 208, 243, .3);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: border-color .2s, box-shadow .2s
}

.auth-input:focus {
    outline: none;
    border-color: #0bd0f3;
    box-shadow: 0 0 0 3px #0bd0f31a
}

.auth-input::-moz-placeholder {
    color: #666
}

.auth-input::placeholder {
    color: #666
}

.auth-error {
    color: #e74c3c;
    font-size: .85rem;
    margin-top: .5rem;
    display: none
}

.auth-error.visible {
    display: block
}

.auth-submit {
    width: 100%;
    padding: .875rem;
    background: linear-gradient(135deg, #f805a7, #0bd0f3);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    margin-top: .5rem;
    transition: opacity .2s, transform .2s
}

.auth-submit:hover {
    opacity: .9;
    transform: translateY(-1px)
}

.auth-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none
}

.auth-forgot-link {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: #0bd0f3;
    text-decoration: none;
    font-size: .9rem
}

.auth-forgot-link:hover {
    text-decoration: underline
}

.auth-success {
    color: #2ecc71;
    font-size: .85rem;
    margin-top: .5rem;
    display: none
}

.auth-success.visible {
    display: block
}

.chat-mod-action {
    color: #e74c3c;
    font-size: .85rem;
    font-style: italic;
    padding: 4px 8px;
    background: #e74c3c1a;
    border-radius: 4px;
    margin: 4px 0
}

.chat-verified {
    color: #0bd0f3;
    margin-left: 4px;
    font-size: .8em
}

.chat-badge {
    font-size: .7rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 4px;
    font-weight: 600;
    text-transform: uppercase
}

.chat-badge-basic {
    background: linear-gradient(135deg, #4ecdc4, #45b7d1);
    color: #000
}

.chat-badge-premium {
    background: linear-gradient(135deg, #f805a7, #0bd0f3);
    color: #fff
}

.chat-badge-vip {
    background: linear-gradient(135deg, gold, orange);
    color: #000
}

.user-menu {
    position: relative;
    display: inline-block
}

.user-menu-trigger {
    display: flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
    padding: .5rem 1rem;
    border-radius: 8px;
    transition: background .2s
}

.user-menu-trigger:hover {
    background: #ffffff1a
}

.user-menu-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1a1a;
    border: 1px solid rgba(11, 208, 243, .3);
    border-radius: 8px;
    padding: .5rem 0;
    min-width: 150px;
    display: none;
    z-index: 1000
}

.user-menu-dropdown.active {
    display: block
}

.user-menu-item {
    display: block;
    padding: .75rem 1rem;
    color: #ccc;
    text-decoration: none;
    transition: background .2s
}

.user-menu-item:hover {
    background: #0bd0f31a;
    color: #fff
}

.user-menu-item.logout {
    color: #e74c3c;
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: .5rem;
    padding-top: .75rem
}

@media (max-width: 480px) {
    .auth-modal {
        width: 95%;
        padding: 1.5rem;
        margin: 1rem
    }

    .auth-modal-title {
        font-size: 1.25rem
    }

    .auth-input {
        padding: .875rem 1rem
    }
}