.stream-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #090f1e;
    z-index: 500;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stream-page.active {
    display: block;
    opacity: 1;
}

.star .info div span {
    font-size: 14px;
    color: #fff;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: bold;
}

.stream-page-container {
    display: flex;
    height: 100%;
    padding-top: 87px;
    box-sizing: border-box;
    max-width: 1600px;
    margin: 0 auto;
}

.stream-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
}

.stream-video-container {
    width: 100%;
    position: relative;
    background: #121a2e;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.stream-video {
    width: 100%;
    height: 100%;
}

.stream-auth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 15, 30, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.stream-auth-overlay.active {
    opacity: 1;
    visibility: visible;
}

.stream-auth-message {
    background: #121a2e;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    border: 1px solid rgba(55, 111, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.stream-auth-message svg {
    margin-bottom: 15px;
}

.stream-auth-message h3 {
    color: #fff;
    font-size: 22px;
    margin: 0 0 10px;
}

.stream-auth-message p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin: 0 0 20px;
}

.stream-auth-button {
    background: linear-gradient(90deg, #4E95FF, #376FFF);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.stream-auth-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(55, 111, 255, 0.4);
}

.stream-info-bar {
    margin-top: 20px;
    padding: 20px;
    background: rgba(18, 26, 46, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.streamer-profile {
    display: flex;
    align-items: center;
    gap: 20px;
}

.streamer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #376FFF;
}

.streamer-info {
    flex: 1;
}

.streamer-name-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.streamer-name {
    color: #fff;
    font-size: 22px;
    margin: 0;
}

.live-badge {
    background: #FF3860;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.streamer-stats {
    display: flex;
    gap: 20px;
}

.stats-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.streamer-actions {
    display: flex;
    gap: 10px;
}

.follow-button {
    background: linear-gradient(90deg, #4E95FF, #376FFF);
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.follow-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(55, 111, 255, 0.4);
}

.donate-button {
    background: transparent;
    border: 1px solid #376FFF;
    color: #376FFF;
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.donate-button:hover {
    background: rgba(55, 111, 255, 0.1);
}

.stream-title-container {
    margin-top: 20px;
}

.stream-title {
    color: #fff;
    font-size: 20px;
    margin: 0 0 10px;
}

/* Chat Styles */
.stream-chat {
    width: 450px;
    position: fixed;
    max-height: 90vh;
    right: 0;
    border-radius: 10px;
    background: #121a2e;
    margin: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.chat-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-header h3 {
    color: #fff;
    font-size: 18px;
    margin: 0;
}

.chat-messages-container {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.chat-auth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 15, 30, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.chat-auth-message {
    padding: 20px;
    text-align: center;
    max-width: 80%;
}

.chat-auth-message svg {
    margin-bottom: 15px;
}

.chat-auth-message h3 {
    color: #fff;
    font-size: 18px;
    margin: 0 0 10px;
}

.chat-auth-message p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0 0 20px;
}

.chat-auth-button {
    background: linear-gradient(90deg, #4E95FF, #376FFF);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.chat-messages {
    height: 100%;
    overflow-y: auto;
    padding: 15px;
}

.chat-message {
    margin-bottom: 15px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-message-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.message-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.message-username {
    color: #376FFF;
    font-size: 14px;
    font-weight: 500;
}

.message-time {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    margin-left: auto;
}

.message-content {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
    padding-left: 32px;
}

.chat-input-container {
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 10px;
}

.chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 15px;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.chat-input:focus {
    border-color: #376FFF;
}

.chat-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.chat-send-button {
    background: transparent;
    border: none;
    color: #376FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0 5px;
}

.chat-send-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.stream-loading {
    z-index: 5;
    background: #121a2e;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Urbanist", sans-serif;
    background: #090f1e;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

header {
    width: 100%;
    background: #090f1e;
    z-index: 15;
    padding: 20px 30px;
    z-index: 777;
    margin: 0 auto;
    display: flex;
    border-bottom: 1px solid hsla(0, 0%, 100%, .05);
    justify-content: space-between;
    align-items: center;
    position: fixed;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo p {
    font-size: 24px;
    color: #fff;
    font-weight: bold;

}

header .buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .buttons a:last-child {
    background: linear-gradient(90deg, #4e95ff, #376fff);
    padding: 10px 35px;
    border-radius: 15px;
    font-size: 16px;
    color: #fff;
}

header .buttons a:first-child {
    color: #376fff;
    padding: 10px 35px;
    border: 1px solid #376fff;
    border-radius: 15px;
}

header .buttons a:hover {
    opacity: 0.8;
}

.input {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 15px;
    background: #121a2e;
}


.input input {
    background: transparent;
    outline: none;
    color: #fff;
    border: 0;
}

.wide {
    display: flex;
    padding: 0px 30px;
    gap: 15px;
    padding-top: 87px;
}

.sidebar {
    padding-top: 20px;
    position: fixed;
    max-width: 300px;
    padding-right: 30px;
    border-right: 1px solid hsla(0, 0%, 100%, .05);
    overflow: scroll;
    height: 100vh;
    z-index: 600;
    padding-bottom: 140px;
}

.content {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    transition: 0.3s;
}

.nav a:hover {
    opacity: 0.7;
}

.nav .active {
    color: #376fff;
}

.nav .active svg path {
    fill: #376fff;
}

.recommendations {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.star {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    cursor: pointer;
    justify-content: space-between;
    transition: 0.3s;
    border-radius: 15px;
}

.star .info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.star .info img {
    border-radius: 50%;
    width: 32px;
    height: 32px;
}

.title {
    font-size: 14px;
    color: hsla(0, 0%, 100%, .3);
}

.star .info div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.star .info div p {
    font-size: 14px;
    color: #fff;
}

.star .info div span {
    font-size: 12px;
    color: hsla(0, 0%, 100%, .5);
}

.star .watch {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: hsla(0, 0%, 100%, .2);
}

.star .watch div {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: green;
    display: block;
    animation: opacity 1s linear infinite;
}

@keyframes opacity {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}


.star:hover {
    background: #0d1426;
}

.title.directory {
    margin-top: 40px;
}

.recommended {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    gap: 20px;
}

.recommendation {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 10px;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
    flex-direction: column;
}

.recommendation:hover {
    background: #121a2e;
}

.recommendation .top {
    display: flex;
    position: relative;
}

.recommendation .top img {
    width: 100%;
    border-radius: 10px;
}

.recommendation .top p {
    position: absolute;
    top: 10px;
    border-radius: 5px;
    padding: 4px;
    font-size: 10px;
    font-weight: bold;
    color: #fff;
    background: #FF3860;
    left: 10px;
}

.recommendation .top span {
    position: absolute;
    left: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(10px);
}

.recommendation .top span div {
    border-radius: 50%;
    width: 8px;
    background: green;
    display: block;
    animation: opacity 1s linear infinite;
    height: 8px;
}

.recommendation .bottom {
    display: flex;
    flex-direction: column;
    padding: 0px 10px;
    padding-bottom: 10px;
    width: 100%;
    gap: 10px;
}

.recommendation .bottom div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.recommendation .bottom img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.recommendation .bottom p {
    color: hsla(0, 0%, 100%, .3);
    font-weight: bold;
    font-size: 14px;
}

.recommendation .bottom span {
    font-size: 16px;
    color: #fff;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.recommendation .bottom a {
    padding: 4px 8px;
    width: max-content;
    font-size: 12px;
    color: #376fff;
    border-radius: 20px;
    background: #3770ff33;
}

.stream-container {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 20px;
    margin-top: 20px;
    background: rgba(9, 15, 30, 0.6);
    border-radius: 15px;
    overflow: hidden;
    height: 550px;
}

.streamer-info {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-bottom: 0;
    justify-content: space-between;
}

.streamer-header {
    display: flex;
    gap: 15px;
    align-items: center;
}

.streamer-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #376FFF;
    box-shadow: 0 0 15px rgba(55, 111, 255, 0.5);
}

.streamer-details h3 {
    color: #fff;
    font-size: 20px;
    margin: 0;
    margin-bottom: 5px;
}

.subscriber-count {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.subscriber-count svg {
    color: #376FFF;
}

.stream-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.stream-name {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.stream-tags span {
    background: rgba(55, 111, 255, 0.15);
    color: #376FFF;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.stream-tags span:hover {
    background: rgba(55, 111, 255, 0.25);
}

.slider-container {
    position: relative;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    background: rgba(9, 15, 30, 0.7);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: auto;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(55, 111, 255, 0.8);
}

.slider-track {
    overflow: hidden;
    border-radius: 10px;
}

.slider-items {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-item {
    flex: 0 0 calc(33.333% - 24px);
    margin: 12px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-item img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.slider-item.active {
    box-shadow: 0 0 0 2px #376FFF, 0 8px 5px rgba(55, 111, 255, 0.1);
    z-index: 2;
}

.slider-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    justify-content: space-between;
}

.live-badge {
    background: #FF3860;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
}

.viewer-count {
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    font-size: 12px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #00D1B2;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

.stream-preview {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #121a2e;
    border-radius: 20px;
    z-index: 5;
}

.loading-logo {
    position: relative;
    margin-bottom: 50px;
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 3px solid transparent;
    border-top: 3px solid #376FFF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.loading-logo svg {
    animation: logo 3s linear infinite;
}

.loading-logo img {
    animation: logo 3s linear infinite;
}

@keyframes logo {
    0% {
        transform: scale(0.7);
    }

    50% {
        transform: scale(0.8);
    }

    100% {
        transform: scale(0.7);
    }
}

.loading-progress {
    position: absolute;
    bottom: 120px;
    width: 15%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.loading-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4E95FF, #376FFF);
    border-radius: 3px;
    animation: loadingProgress 10s linear forwards;
}

@keyframes loadingProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.notification {
    position: absolute;
    top: 0;
    border-radius: 25px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.notification-content {
    background: #121a2e;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 80%;
    border: 1px solid rgba(55, 111, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    animation: showNotification 0.5s ease-out;
}

@keyframes showNotification {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.notification-content p {
    color: #fff;
    font-size: 18px;
    margin: 15px 0;
}

.categories {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 80px;
}

.category_section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category_section p {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.category_section a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #376fff;
}

.category {
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.category:hover {
    background: #121a2e;
}

.category .image {
    position: relative;
    border-radius: 16px;
}

.category .image p {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 5px 10px rgba(0, 0, 0, 0.5);
}

.category .image img {
    border-radius: 10px;
}

.category .description {
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 5px;
}

.category .description p {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
}

.category .description span {
    color: hsla(0, 0%, 100%, .5);
    font-size: 14px;
}

.verify-button {
    background: linear-gradient(90deg, #4e95ff, #376fff);
    padding: 5px 10px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 12px;
    outline: none;
    border: 0;
    color: #fff;
}

.tags {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 5px;
}

.tags a {
    padding: 4px 8px;
    width: max-content;
    color: #376fff;
    font-size: 12px;
    border-radius: 20px;
    background: #3770ff33;
}

.category_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
}

.category .image img {
    width: 100%;
}

.about {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

hr {
    width: calc(100% - 40px);
    margin: 40px auto;
    color: hsla(0, 0%, 100%, .05);
    height: 1px;
}

.popular {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.playlist {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
}

.playlist .video {
    display: flex;
    width: 100%;
    gap: 10px;
    flex-direction: column;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.playlist .video:hover {
    background: #121a2e;
}

.playlist .video .streamer {
    position: relative;
}

.playlist .video .streamer img {
    width: 100%;
    border-radius: 10px;
}

.playlist .video .streamer p {
    position: absolute;
    left: 10px;
    top: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(10px);
}

.playlist .video .streamer span {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 4px 8px;
    font-size: 12px;
    width: max-content;
    color: #fff;
    border-radius: 20px;
    background: #3770ffb2;
}

.desc {
    display: flex;
    align-items: start;
    gap: 10px;
    padding: 10px;
    width: 100%;
    overflow: hidden;
    padding-top: 0;
}

.streamer_avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.name_stream {
    font-size: 14px;
    color: #fff;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: bold;
}

.category_stream {
    font-size: 14px;
    color: hsla(0, 0%, 100%, .3);
}

.username {
    color: #376fff;
    font-size: 12px;
}

.site-footer {
    background-color: rgba(9, 15, 30, 0.95);
    color: #fff;
    padding: 50px 0 20px;
    margin-top: 60px;
    backdrop-filter: blur(10px);
    border-top: 1px solid hsla(0, 0%, 100%, 0.05);
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-top {
    align-items: start;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: hsla(0, 0%, 100%, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.footer-column ul li a:hover {
    color: #376FFF;
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.download-app h4,
.social-links h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #121a2e;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.app-button:hover {
    background: rgba(55, 111, 255, 0.2);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #121a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.social-icon:hover {
    background: rgba(55, 111, 255, 0.8);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid hsla(0, 0%, 100%, 0.05);
    flex-wrap: wrap;
    gap: 20px;
}

.language-selector select {
    background: #121a2e;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
    outline: none;
}

.copyright {
    color: hsla(0, 0%, 100%, 0.5);
    font-size: 14px;
}

@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.neo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 15, 30, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1100;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.neo-modal-content {
    background: #121a2e;
    border-radius: 15px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    border: 1px solid rgba(55, 111, 255, 0.2);
    position: relative;
}

.auth-modal-content {
    max-width: 500px;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.neo-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.neo-modal-header h3 {
    color: #fff;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.neo-modal-close {
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.neo-modal-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.neo-modal-body {
    padding: 20px;
}

.neo-modal-footer {
    padding: 15px 20px 20px;
    display: flex;
    justify-content: flex-end;
}


.preview .streamer-profile {
    gap: 10px;
    padding: 20px;
    flex-direction: column;
    align-items: start;
}

.neo-button {
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.neo-button-primary {
    background: linear-gradient(90deg, #4E95FF, #376FFF);
    color: white;
    width: 100%;
}

.neo-button-primary:hover {
    box-shadow: 0 5px 15px rgba(55, 111, 255, 0.4);
    transform: translateY(-2px);
}

.neo-button[disabled] {
    background: rgba(55, 111, 255, 0.5);
    cursor: not-allowed;
}

.neo-button[disabled]:hover {
    box-shadow: none;
    transform: none;
}

.neo-modal-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.neo-modal-body p {
    color: #fff;
    text-align: center;
    font-size: 18px;
    margin: 5px 0;
}

.neo-modal-subtext {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 14px !important;
}

/* Tabs */
.neo-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.neo-tab-button {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
    position: relative;
}

.neo-tab-button:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: #376FFF;
    transition: all 0.3s ease;
}

.neo-tab-button.active {
    color: #fff;
}

.neo-tab-button.active:after {
    width: 100%;
}

.neo-tab-content {
    display: none;
}

.neo-tab-content.active {
    display: block;
}

/* Form Controls */
.neo-form-group {
    margin-bottom: 20px;
}

.neo-form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-size: 14px;
}

.neo-input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 16px;
    transition: all 0.3s;
}

.neo-input:focus {
    outline: none;
    border-color: #376FFF;
    box-shadow: 0 0 0 2px rgba(55, 111, 255, 0.3);
}

.neo-password-input {
    position: relative;
}

.neo-toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.neo-password-strength {
    margin-top: 10px;
}

.neo-strength-bar {
    height: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 5px;
}

.neo-strength-indicator {
    height: 100%;
    width: 0;
    border-radius: 3px;
    transition: all 0.3s;
}

.neo-strength-indicator.weak {
    background-color: #FF3860;
    width: 33%;
}

.neo-strength-indicator.medium {
    background-color: #FFDD57;
    width: 66%;
}

.neo-strength-indicator.strong {
    background-color: #00D1B2;
    width: 100%;
}

#password-strength-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.neo-error-message {
    color: #FF3860;
    font-size: 12px;
    margin-top: 5px;
    min-height: 16px;
    margin-bottom: 0;
    text-align: left !important;
}

.neo-date-input {
    display: flex;
    gap: 10px;
}

.neo-select {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='white' stroke-opacity='0.6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
}

.neo-select:focus {
    outline: none;
    border-color: #376FFF;
}

/* Service Connection */
.neo-service-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.neo-service-button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    transition: all 0.2s;
}

.neo-service-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.neo-service-button img {
    width: 24px;
    height: 24px;
}

/* Toast */
.neo-toast {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.3s;
}

.neo-toast.show {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.neo-toast-content {
    background: #121a2e;
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(55, 111, 255, 0.2);
}

.neo-toast-content svg {
    flex-shrink: 0;
}

.neo-toast-content p {
    color: white;
    margin: 0;
    font-size: 14px;
}

.input {
    position: relative;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    max-height: 400px;
    overflow-y: auto;
    background: #121a2e;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    margin-top: 10px;
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
}

.search-result-item {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.search-result-item:hover {
    background: rgba(55, 111, 255, 0.1);
}

.search-result-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-details {
    flex: 1;
}

.search-result-name {
    font-size: 14px;
    color: #fff;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-category {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.search-result-viewers {
    font-size: 12px;
    color: #376FFF;
    display: flex;
    align-items: center;
    gap: 5px;
}

.search-result-viewers .pulse-dot {
    width: 6px;
    height: 6px;
}

.search-no-results {
    padding: 15px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.search-section-title {
    padding: 8px 15px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 5px;
}

@media all {

    .bigblockcontent:after,
    :before {
        outline: 0 !important;
        box-sizing: border-box;
    }

    .bigblockcontent:after,
    :before {
        box-sizing: border-box;
    }

    .bigblockcontent iframe {
        border: 0;
        font-size: 100%;
        font: inherit;
        margin: 0;
        padding: 0;
        vertical-align: baseline;
    }

    .bigblockcontent:after {
        border: 0;
        font-weight: 400;
        -webkit-text-decoration: none;
        text-decoration: none;
    }

    .bigblockcontent:before {
        border: 0;
        font-weight: 400;
        -webkit-text-decoration: none;
        text-decoration: none;
    }

    .bigblockcontent {
        font-family: Inter, Roboto, sans-serif;
    }

    .bigblockcontent input {
        font-family: Inter, Roboto, sans-serif;
        font-size: 1.4rem;
    }

    .bigblockcontent {
        min-height: 0;
        min-width: 0;
        scrollbar-color: rgba(96, 117, 159, 0.4) transparent;
    }

    .bigblockcontent:hover {
        scrollbar-width: thin;
    }

    .bigblockcontent:hover {
        scrollbar-color: rgba(96, 117, 159, 0.6) transparent;
    }

    .bigblockcontent::selection {
        background: #11899c;
        color: #fff;
    }

    @media (hover: hover),
    (min-width: 1024px) {
        .bigblockcontent::-webkit-scrollbar-track {
            background: 0 0;
            border-radius: 0.8rem;
        }

        .bigblockcontent::-webkit-scrollbar {
            background-color: transparent;
            height: 6px;
            width: 6px;
        }

        .bigblockcontent::-webkit-scrollbar-thumb {
            background-color: transparent;
            border-radius: 0.8rem;
        }

        .bigblockcontent:hover::-webkit-scrollbar-thumb {
            background-color: rgba(96, 117, 159, 0.4);
        }

        .bigblockcontent::-webkit-scrollbar-thumb:hover {
            background-color: rgba(96, 117, 159, 0.5);
        }

        .bigblockcontent::-webkit-scrollbar-thumb:active {
            background-color: rgba(96, 117, 159, 0.6);
        }

        .bigblockcontent::-webkit-scrollbar-corner {
            background-color: transparent;
        }
    }
}

@media all {
    .bigblockcontent:before {
        outline: 0 !important;
        box-sizing: border-box;
    }

    .bigblockcontent:after {
        outline: 0 !important;
        box-sizing: border-box;
    }

    .bigblockcontent:after {
        border: 0;
        font-weight: 400;
        -webkit-text-decoration: none;
        text-decoration: none;
    }

    .bigblockcontent:before {
        border: 0;
        font-weight: 400;
        -webkit-text-decoration: none;
        text-decoration: none;
    }

    .bigblockcontent {
        font-family: Inter, Roboto, sans-serif;
    }

    .bigblockcontent {
        min-height: 0;
        min-width: 0;
        scrollbar-color: rgba(96, 117, 159, 0.4) transparent;
    }

    .bigblockcontent:hover {
        scrollbar-width: thin;
    }

    .bigblockcontent:hover {
        scrollbar-color: rgba(96, 117, 159, 0.6) transparent;
    }

    .bigblockcontent::selection {
        background: #11899c;
        color: #fff;
    }

    @media (hover: hover),
    (min-width: 1024px) {
        .bigblockcontent::-webkit-scrollbar-track {
            background: 0 0;
            border-radius: 0.8rem;
        }

        .bigblockcontent::-webkit-scrollbar {
            background-color: transparent;
            height: 6px;
            width: 6px;
        }

        .bigblockcontent::-webkit-scrollbar-thumb {
            background-color: transparent;
            border-radius: 0.8rem;
        }

        .bigblockcontent:hover::-webkit-scrollbar-thumb {
            background-color: rgba(96, 117, 159, 0.4);
        }

        .bigblockcontent::-webkit-scrollbar-thumb:hover {
            background-color: rgba(96, 117, 159, 0.5);
        }

        .bigblockcontent::-webkit-scrollbar-thumb:active {
            background-color: rgba(96, 117, 159, 0.6);
        }

        .bigblockcontent::-webkit-scrollbar-corner {
            background-color: transparent;
        }
    }
}

@media all {
    .bigblockcontent {
        scrollbar-color: rgba(96, 117, 159, 0.4) transparent;
        min-height: 0;
        min-width: 0;
        scrollbar-color: rgba(96, 117, 159, 0.4) transparent;
    }

    .bigblockcontent {
        font-family: Inter, Roboto, sans-serif;
    }

    .bigblockcontent:after {
        -webkit-text-decoration: none;
        border: 0;
        box-sizing: border-box;
        font-weight: 400;
        outline: 0 !important;
        -webkit-text-decoration: none;
        text-decoration: none;
    }

    .bigblockcontent:before {
        -webkit-text-decoration: none;
        border: 0;
        box-sizing: border-box;
        font-weight: 400;
        outline: 0 !important;
        -webkit-text-decoration: none;
        text-decoration: none;
    }

    .bigblockcontent:hover {
        scrollbar-width: thin;
    }

    .bigblockcontent:hover {
        scrollbar-color: rgba(96, 117, 159, 0.6) transparent;
    }

    .bigblockcontent::selection {
        background: #11899c;
        color: #fff;
    }

    @media (hover: hover),
    (min-width: 1024px) {
        .bigblockcontent::-webkit-scrollbar-track {
            background: 0 0;
            border-radius: 0.8rem;
        }

        .bigblockcontent::-webkit-scrollbar {
            background-color: transparent;
            height: 6px;
            width: 6px;
        }

        .bigblockcontent::-webkit-scrollbar-thumb {
            background-color: transparent;
            border-radius: 0.8rem;
        }

        .bigblockcontent:hover::-webkit-scrollbar-thumb {
            background-color: rgba(96, 117, 159, 0.4);
        }

        .bigblockcontent::-webkit-scrollbar-thumb:hover {
            background-color: rgba(96, 117, 159, 0.5);
        }

        .bigblockcontent::-webkit-scrollbar-thumb:active {
            background-color: rgba(96, 117, 159, 0.6);
        }

        .bigblockcontent::-webkit-scrollbar-corner {
            background-color: transparent;
        }
    }
}

.modalicon {
    border: 0;
    font: inherit;
    padding: 0;
    scrollbar-width: thin;
    box-sizing: border-box;
    outline: 0 !important;
    text-decoration: none;
    scrollbar-color: rgba(96, 117, 159, 0.4) transparent;
    min-height: 0;
    min-width: 0;
    cursor: default;
}

.bigblockcontent {
    max-width: 1050px;
    max-height: 670px;
    width: 60%;
    height: calc(100% - 187px);
    position: fixed;
    top: 50px;
    left: 100px;
    z-index: 100000000;
    font-family: Segoe UI !important;
    background-color: rgba(255, 255, 255, 1);
}

.modaltop {
    position: relative;
    width: 100%;
    height: 33px;
    line-height: 31px;
    cursor: default;
    user-select: none;
    font-family: Segoe UI !important;
}

.modalfavicon {
    width: 17px;
    height: 17px;
    margin: 8px 6px 0 8px;
    float: left;
    background-size: contain;
    background-image: url(data:image/png;base64,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);
}

.modaltitle {
    line-height: 31px;
    font-size: 13px;
    font-family: Segoe UI !important;
    color: #000;
    float: left;
    font-weight: 400;
}

.modalcontrol {
    position: absolute;
    top: 0;
    right: 0;
    height: 33px;
}

.modalcontrols {
    display: inline-block;
    width: 46px;
    height: 30px;
    position: relative;
    background-color: rgba(0, 0, 0, 0);
}

.modalcontrols:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.modalslide:after {
    content: "";
    width: 10px;
    height: 1px;
    position: absolute;
    top: calc(50% - 1px);
    left: calc(50% - 5px);
    background-color: #000;
}

.modalfullsize:after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: calc(50% - 6px);
    left: calc(50% - 4px);
    border: 1px solid #000;
}

.modalclose:hover {
    background-color: #ff0000;
}

.modalclose:after {
    content: "";
    width: 1px;
    height: 12px;
    position: absolute;
    top: calc(50% - 6px);
    left: calc(50% - 1px);
    background-color: #000;
    transform: rotate(45deg);
}

.modalclose:before {
    content: "";
    width: 1px;
    height: 12px;
    position: absolute;
    top: calc(50% - 6px);
    left: calc(50% - 1px);
    background-color: #000;
    transform: rotate(-45deg);
}

.modalclose:hover:after {
    background-color: #fff;
}

.modalclose:hover:before {
    background-color: #fff;
}

.modalsearch {
    width: 100%;
    height: 27px;
    position: relative;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.modalicon {
    position: absolute;
    top: 0;
    left: 0;
    width: 135px;
    height: 27px;
    margin-right: 8px;
    cursor: pointer;
    transition: 0.2s;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAI8AAAAaCAYAAACOyA9jAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAATiSURBVGhD7ZpBaBtHFIb/9mywDwHpECKofHEoWJDItAdB4gSTg0x6ENSmgupQqkuDTAXpUdWhPUWtRWiJoFAVjG2ILsELdUWIDaaHWjGVacE9yAW5AUslB7uo0J6UebOj3dXuyqtdViqF+cygGY12NNr5539vZL3WZUAi8cDr4lEicY0Uj8QzUjwSz0jxSDwjxSOxZWNjQ9QGI8Uj8cxQ4jn7p4NPfvgaV4vv8UJ1iWQo8Xy++x0OTxv4/v0CL1S/v/2V6HVmv3wbS0pLtIy0UFm9jUJdNAdyiEL+Hip2Q/gAzW8ibyjlQ9EzfrS5rG6hzdpt5Z79fOqr2mtU6B4ZPkN+Ffv0NL1OPOd8n93QGk48a/UqSu/cR2gqyAvVt377UfQ6MxeJQznYVD+MkVYNlfM4YhHRHjvqDZ9HAZ3cU608w451rmMkfm0NnZVFBETbkdYWlvLfIJTWP0PnbhgntNkiK6y9hvKk+lI/GUo8f/37NxdND6r/cf6naA1B5CbyULBnUn77eRVK6CbmRHu8kOtlUaOFSs2K51TmUiv/0Zw80jqGMrmAmL5E7J4vImFsjwBH8bz16EP+qNuhWoi3S2n+6MwsYiEgVzfabwt7jSPkI/rCcYs2vIetzVrsmtH3nBoKtXEGhSDheh/Hne7wgHDAEWFXoZ3P+vgceiHWeN3oQi4nGEb8vIq9Ub6HDY7i+bX9u6hZ+YUpflgodKFpCAf1TaT6QhYT08sFHAvbPb42g9yuSSQEuVjfjWILuKsgf4NsnhYzico0cxM+DrPrs6y9CPluDYNp+gJIAMKdtHkdY94k3lwDKFK/FmqOkCrtICauoRCSKhlF5zPBRWzy9+gJeDwMFbZ8wRS69usKi+1LhvAQRCKlx/nA9QW2m47RFG0dcrEjVJ4L9RjzJoubsDFvxE2O54L6DnKTGRQN7hSIf2ASL4RwjcygnDaEvsgSyzmsYdtXeG7DxD1dRZi5nf0BxV/GJx626ElyE76Qh9hrziBx3RQyDCeDiVKRSc2euTsZoFHjO4zyJvRESG7C/uZ7Y1B5wkY5O7HuRm71duLUab9gzjp1xSSMAEKTR2i6WpsgrkyJqp9Y5kbifshEVED0IOnz6crKGMUj3IRCF9/RpgSPhLMb1sJWJ50BC3T2BKNIgHY/5U3QRUiCYE6hjdErdicXGsPBDQKXw/bCY84SMun+Ylo4ORNVlwyaAxf2QNQcs/ZitO4zVvH0FmyeuUF8Otq3oOZdzk9iom4liNg0UNneRAUGEXJRFZEZyrJFSHtitfj9sshPeH7VP15b+Qwp43vawnKebT1UqtdkkOShlZJrFwm0zRxojMwBUL4jDhts4/W7DDk7EL3sSuGucRTPm4E3RM3KRX320KLPsEdryOK5RDOrhZvMS+Yios8OcjE0FUT78g0miBXVsrWwxcpA++Z5gvX1X1zq5WKzyJr6ww2W1Dt+B8Nynks7+jUHYTxz871NH9Y5TJSqSKQf6kdx5rg1tgm0fpbk4+5TZEf9/Rn9klDiJ/Xug08/6j4+FU2X/PTtre67Wx4vHshp9/GXt7oPfhbNIVhfXxe1wYw3bEmGQiGX8evIzQ8hSaTORdtH5G+YfYe+G6J/FRjCyv8Q+knG8vKyaNkjxSPxjAxbEs9I8Ug8I8Uj8YwUj8QjwCv0PVkGDdNdzQAAAABJRU5ErkJggg==);
}

.modalicon:hover {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAI8AAAAaCAYAAACOyA9jAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAUZSURBVGhD7ZtPSBxXHMe/asGD6CHsQsiCCpWCi38uFczBJoxY8BAIjVBQL9pAb4kepFAhSEAoeIgbSHuxemgUCrYUPOxBHCIetNiLf1hpsWACa4O77UFrsAdJf783b3ffzs5kZsy4Le37hGHfm5l982be931/vzdmK14T0GguQMXZ2dnr09NTnJ+fy12a/zNVVVWoqalBdXW13ONOpRaORoW1wJrwQ6UWjsaOX01Uyk+NJjBaPJoLo8WjuTAVR0dHnkv1479e4asfv8fKrz+Jeve77+OzDwZFWfPfJBqNypI7vpzny43vsHd0gLk742Lj8her38ij3mwtDuKemZE1lQySs4OYScmqK3uYSUwg6dRECHD/WhLKtrgnj5SffF9mV5CletaccO5PajZ/jgU/I+UeErPY4t18ntzn/ZyD4Us8P+ytYfLDTxGri4qNyzkX8kN73IC5s2TdjEpmG8kTAx1xWS871gMfwDh27z/Nb/NYL+1rGTFaH2F3uBsRWfcks4J7iW8R6y/cw25PAw55ssWHqf4IU7XWqWHiSzx/Uthi0eTg8m8nv8uaD+LXMQITmzblZ3fWYMauo13Wywu73iS2eaD6muU+i/a+4X+oTxck8xxmbRc61EgT70avd+R5KzzF89H85+KzYIfWxtxZGBef3jSjIwZMp1T7zWDzYB8j8cLACYtWruFosyV2TRTts0Jhvh23ECRd7xPD6wm7hAOBDLsmz3w6JvqQC7Hq9y4v5AqiDTBO1rB5mddwwFM8v2RfyFIpP5Pi/cKhC2klHKSWMFYUskhMf3ThmbTdZ61NmN6wiYRhFyt6UDSAGyZGOtnmeTBHkWwkNxHtkF0fTzqLUMzWBpCm3wALQLpTvl8vMGAT7/QB8ICP50PNPsYW1tEhv7PbU091VXQhE+3GY3GNnIDLg6+wFQq20LWVMim231LCQxS9fYU4H2ntotn0HGlZL8Auto/kjlSPmjeVuAm12WnYHC8AqXVM1w7hgeJOEeNjm3ghhavShKl+JfTFb1HOURq2Q0XkNiTuxjXcJLdzXqCES/nEQ4N+m91EDOQeNtNN6G21hQxlZdCyMEdSc6b9xhBwsC1mGOdNyImQ3YT+DeTDBW3L1MrxYelsFFbvJM4C2ZfkunXXbMKIIFa7j3SgsYniWp0shklJ31jcEySicbTtjIa+urJTRvFIN+HQJWa0LcFj4Ww05MPWbv8QKNA5E21DL3j2c96EgghZEOQU+TZym9PKhdvwcIPI1Xpn4ZGzxGy6fzMZHB7LYkDc+iCE7YqVY26/vFz3Kat4cgM2QG5gNLYVDah9louVmCyXEkVHI5BcXUISigiFqObw0Jdly5C2XGrxW4syPxH5VXF7WfMJxtRrOkI5z2ohVFrfGcJtEVo5uQ6QQDv0gdt4uANM3ZCLDZp4xS7Dzg60XQ2k8MC8Iz9deS9S75o087Fg8KA3AXTj9pAlcglKTlsSVt2IGe7OQ7CLgUJbW89TRYQkiOFxpBOjaKFr5Bihc+46vUviPIEGZ8Z2Pr9neSxKzbhLIaDoODub5zsYynmurNO9TMq6gfn7Xt9xw6EPIqeaKCzFyXG3OVlelnXC9Z5DxNefJzRB4BUav7BTBjcA/Ib56yskXs9XCEGwVqHpTv+CCu3PE5ryYlKyG9qSWyxCRjF2Iushop0ndN7Oef4t+HEeLR6NIzpsaS6VSv7f8hqNil9NVPLPLLSANDlyP73xg/7Rn+aCAH8DTwNX1qhXYCUAAAAASUVORK5CYII=);
}

.modalsearch input {
    box-sizing: content-box;
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 153px);
    margin: 0;
    padding: 0 10px 0 0;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: Segoe UI !important;
    font-weight: 400;
    line-height: 27px;
    color: #000;
    background-color: #fff;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2) format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2) format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2) format("woff2");
    unicode-range: U+1F00-1FFF;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2) format("woff2");
    unicode-range: U+0370-03FF;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2) format("woff2");
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2) format("woff2");
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2) format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2) format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2) format("woff2");
    unicode-range: U+1F00-1FFF;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2) format("woff2");
    unicode-range: U+0370-03FF;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2) format("woff2");
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2) format("woff2");
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2) format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2) format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2) format("woff2");
    unicode-range: U+1F00-1FFF;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2) format("woff2");
    unicode-range: U+0370-03FF;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2) format("woff2");
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2) format("woff2");
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2JL7SUc.woff2) format("woff2");
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2) format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2ZL7SUc.woff2) format("woff2");
    unicode-range: U+1F00-1FFF;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1pL7SUc.woff2) format("woff2");
    unicode-range: U+0370-03FF;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa2pL7SUc.woff2) format("woff2");
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa25L7SUc.woff2) format("woff2");
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.alert {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 750px) {
    .modal_frame {
        width: 100% !important;
    }

    .modal_box {
        width: 100% !important;
    }

    .modal_box .modal_box_ctn {
        padding: 10px !important;
        width: 100% !important;
    }

    .notLoggedInText {
        font-size: 15px !important;
    }
}

.btn_green_white_innerfade {
    border-radius: 2px;
    border: none;
    padding: 1px;
    display: inline-block;
    cursor: pointer;
    text-decoration: none !important;
    color: #d2e885 !important;
    background: #a4d007;
    background: -webkit-linear-gradient(top, #a4d007 5%, #536904 95%);
    background: linear-gradient(to bottom, #a4d007 5%, #536904 95%);
}

.btn_green_white_innerfade>span {
    border-radius: 2px;
    display: block;
    background: #799905;
    background: -webkit-linear-gradient(top, #799905 5%, #536904 95%);
    background: linear-gradient(to bottom, #799905 5%, #536904 95%);
}

.btn_green_white_innerfade:not(.btn_disabled):not(:disabled):not(.btn_active):not(.active):hover {
    text-decoration: none !important;
    color: #fff !important;
    background: #b6d908;
    background: -webkit-linear-gradient(top, #b6d908 5%, #80a006 95%);
    background: linear-gradient(to bottom, #b6d908 5%, #80a006 95%);
}

.btn_green_white_innerfade:not(.btn_disabled):not(:disabled):not(.btn_active):not(.active):hover>span {
    background: #a1bf07;
    background: -webkit-linear-gradient(top, #a1bf07 5%, #80a006 95%);
    background: linear-gradient(to bottom, #a1bf07 5%, #80a006 95%);
}

.btn_grey_black {
    border-radius: 2px;
    border: none;
    padding: 1px;
    display: inline-block;
    cursor: pointer;
    text-decoration: none !important;
    color: #67c1f5 !important;
    background: rgba(0, 0, 0, 0.5);
}

.btn_grey_black>span {
    border-radius: 2px;
    display: block;
    background: transparent;
}

.btn_grey_black:not(.btn_disabled):not(:disabled):not(.btn_active):not(.active):hover {
    text-decoration: none !important;
    color: #fff !important;
    background: rgba(102, 192, 244, 0.4);
}

.btn_grey_black:not(.btn_disabled):not(:disabled):not(.btn_active):not(.active):hover>span {
    background: transparent;
}

.btn_medium>span {
    padding: 0 15px;
    font-size: 15px;
    line-height: 30px;
}

.modal_box {
    background: -webkit-linear-gradient(top, rgba(102, 192, 244, 1) 5%, rgba(47, 137, 188, 1) 95%);
    background: linear-gradient(to bottom, rgba(102, 192, 244, 1) 5%, rgba(47, 137, 188, 1) 95%);
    padding: 3px;
    width: 542px;
    font-size: 12px;
    color: #ffffff;
    text-align: left;
}

.modal_box .modal_box_ctn {
    width: 502px;
    background-color: #1a2635;
    padding: 20px;
}

.modal_frame {
    position: absolute;
    z-index: 1000;
    background-color: #000000;
}

.notLoggedInText {
    font-size: 20px;
    padding-bottom: 20px;
    padding-top: 0;
    text-align: center;
}

.notLoggedInButtons {
    display: block;
    margin: 0 auto;
    text-align: center;
}

.notLoggedInButtons>a {
    margin-right: 5px;
}

.blacktheme::after {
    background: white !important;
}

.blacktheme::before {
    background: white !important;
}

.modalcontrols.modalfullsize.giddos:hover {
    background: #37383a !important;
}

.modalcontrols.modalslide.giddos:hover {
    background: #37383a !important;
}

.bigblockcontent.darktheme {
    border-radius: 6px;
    border: 1px solid #303030;
}

.modalhead.darktheme {
    border-bottom: 1px solid #303030;
}

.modalicon.darktheme {
    background-image: url("data:image/png;base64,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") !important;
    top: 2px !important;
}

.modalicon.darktheme:hover {
    background-image: url("data:image/png;base64,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") !important;
    opacity: 0.8 !important;
}

.modalsearch.darktheme input {
    background: #202124 !important;
    top: 2px;
    color: #9aa0a6 !important;
}

.modalsearch.darktheme {
    border-top: 1px solid #252628 !important;
    border-bottom: 1px solid #606164 !important;
    box-shadow: none !important;
    height: 35px !important;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.blacktheme2::after {
    border: 1px solid white !important;
}


.restriction-modal {
    z-index: 10000 !important;
    background-color: rgba(0, 0, 0, 0.95) !important;
}

.restriction-modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #ff4757;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(255, 71, 87, 0.3);
    animation: restrictionSlideIn 0.3s ease-out;
}

@keyframes restrictionSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.restriction-header {
    background: linear-gradient(135deg, #ff4757 0%, #ff3838 100%);
    color: white;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    text-align: center;
    border-bottom: none;
}

.restriction-header h3 {
    margin: 10px 0 0 0;
    font-size: 24px;
    font-weight: 700;
}

.restriction-icon {
    margin-bottom: 10px;
}

.restriction-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.restriction-body {
    padding: 30px;
    text-align: center;
    color: #fff;
}

.restriction-message {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #e1e5e9;
}

.track-id {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    font-family: 'Courier New', monospace;
}

.track-id span {
    color: #ff4757;
    font-weight: 600;
}

.track-id code {
    background: rgba(255, 71, 87, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 1px;
}

.restriction-sub-message {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.5;
    margin-top: 20px;
}

.restriction-modal .neo-modal-close {
    display: none !important;
}

body.restriction-active {
    overflow: hidden !important;
}

.restriction-active {
    pointer-events: none;
    user-select: none;
}