* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #000;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color, #fff);
    padding: 20px;
    overflow: hidden;
    position: relative;
    --bg-image: url('./assets/white2.jpg');
    --bg-blur: 20px;
    --bg-darkness: 0.5;
    --text-color: #fff;
    --text-secondary: #b9bbbe;
    transition: color 0.3s ease;
}

body::before {
    content: '';
    position: fixed;
    top: calc(var(--bg-blur) * -1);
    left: calc(var(--bg-blur) * -1);
    width: calc(100% + var(--bg-blur) * 2);
    height: calc(100% + var(--bg-blur) * 2);
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(var(--bg-blur));
    z-index: -2;
    transition: filter 0.3s ease;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, var(--bg-darkness));
    z-index: -1;
    transition: background 0.3s ease;
}

#glassShader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.7;
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 1;
    transition: max-width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.container.reviews-expanded {
    max-width: 800px;
}

.container.reviews-expanded .card {
    animation: none;
}

.card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -1px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    position: relative;
    overflow: visible;
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(0.5deg);
    }
    50% {
        transform: translateY(-5px) rotate(-0.5deg);
    }
    75% {
        transform: translateY(-15px) rotate(0.3deg);
    }
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: glassShine 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glassShine {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }
    50% {
        transform: translate(10%, 10%);
        opacity: 0.6;
    }
}

.avatar-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto 50px;
    width: 120px;
    height: 120px;
}

.card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 10px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    cursor: pointer;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: scale 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
    opacity: 0.7;
}

.social-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: brightness(var(--icon-brightness, 1));
}

.social-icon:hover {
    scale: 1.2;
    opacity: 1;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.4));
}

@media (max-width: 768px) {
    .avatar-section {
        width: 100px;
        height: 100px;
        margin: 10px auto 45px;
    }

    .avatar {
        width: 100px;
        height: 100px;
    }

    .social-icon {
        width: 24px;
        height: 24px;
    }
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.avatar:hover {
    transform: scale(1.05);
}

.status-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    background: #747f8d;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.status-indicator.online {
    background: #43b581;
}

.status-indicator.idle {
    background: #faa61a;
}

.status-indicator.dnd {
    background: #f04747;
}

.username {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.bio-text {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.activity-section {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.activity-info {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.activity-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.activity-details {
    flex: 1;
    min-width: 0;
}

.activity-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.activity-state {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.activity-details-text {
    font-size: 11px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.music-section {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.music-info {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.album-cover {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.track-info {
    flex: 1;
    min-width: 0;
}

.track-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.artist-name {
    font-size: 12px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    margin-top: 12px;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 0%;
    position: relative;
}

.progress-time {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 11px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.spotify-link {
    color: rgba(0, 0, 0, 0.25);
    transition: all 0.2s ease;
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
    margin-left: auto;
    align-self: flex-start;
}

.spotify-link:hover {
    color: rgba(0, 0, 0, 0.55);
    transform: scale(1.1);
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn svg {
    flex-shrink: 0;
}

@media (max-width: 480px) {
    body {
        padding: 15px 10px;
        align-items: flex-start;
        padding-top: 10vh;
        overflow-y: auto;
    }

    .container {
        max-width: 100%;
    }

    .card {
        padding: 20px 15px;
        border-radius: 18px;
        animation: none;
        overflow: hidden;
    }

    .avatar-section {
        width: 90px;
        height: 90px;
        margin: 10px auto 15px;
    }

    .avatar {
        width: 90px;
        height: 90px;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icon {
        width: 24px;
        height: 24px;
    }

    .username {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .bio-text {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .activity-section,
    .music-section {
        padding: 12px;
        margin-bottom: 12px;
    }

    .activity-image {
        width: 45px;
        height: 45px;
        border-radius: 10px;
    }

    .album-cover {
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }

    .track-name {
        font-size: 13px;
    }

    .artist-name {
        font-size: 11px;
    }

    .views-badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    .status-indicator {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 360px) {
    body {
        padding-top: 5vh;
    }

    .container {
        max-width: 100%;
    }

    .card {
        padding: 15px 12px;
        border-radius: 16px;
    }

    .avatar-section {
        width: 75px;
        height: 75px;
        margin: 8px auto 12px;
    }

    .avatar {
        width: 75px;
        height: 75px;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }

    .username {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .bio-text {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .activity-section,
    .music-section {
        padding: 10px;
        border-radius: 12px;
    }

    .activity-image {
        width: 40px;
        height: 40px;
    }

    .album-cover {
        width: 36px;
        height: 36px;
    }

    .views-badge {
        font-size: 10px;
        padding: 3px 7px;
    }

    .status-indicator {
        width: 18px;
        height: 18px;
        bottom: 2px;
        right: 2px;
    }
}

.admin-wrapper {
    width: 100%;
    max-width: 700px;
    position: relative;
    z-index: 1;
    font-family: 'Consolas', 'Courier New', 'Fira Code', monospace;
}

.login-container,
.admin-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card,
.admin-card {
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(13, 17, 23, 0.82);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 4px;
    padding: 32px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-card::-webkit-scrollbar {
    width: 6px;
}

.admin-card::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
}

.admin-card::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 1px;
}

.admin-card::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.login-card h1,
.admin-card h1 {
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 24px;
    text-align: left;
    color: rgba(255, 255, 255, 0.75);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
    padding-bottom: 12px;
}

.login-card h1::before,
.admin-card h1::before {
    content: "$ ";
    color: rgba(255, 255, 255, 0.35);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.admin-header h1 {
    margin: 0;
}

.tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 8px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 5px 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    color: rgba(255, 255, 255, 0.35);
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: lowercase;
}

.tab-btn::before { content: "["; color: rgba(255, 255, 255, 0.25); }
.tab-btn::after  { content: "]"; color: rgba(255, 255, 255, 0.25); }

.tab-btn:hover {
    color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.tab-btn.active {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.06);
}

.tab-btn.active::before,
.tab-btn.active::after {
    color: rgba(255, 255, 255, 0.5);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-box {
    padding: 16px;
    background: rgba(67, 181, 129, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(67, 181, 129, 0.2);
    border-radius: 12px;
    margin-bottom: 20px;
}

.info-box h3 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: #43b581;
}

.info-box p {
    margin: 0;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.5);
    text-shadow: none;
}

.input-group label::before {
    content: "> ";
    color: rgba(255, 255, 255, 0.25);
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 13px;
    transition: all 0.2s ease;
    box-shadow: none;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.08);
}

.input-group textarea {
    resize: vertical;
    min-height: 80px;
}

.input-group small {
    display: block;
    margin-top: 6px;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-shadow: none;
}

.input-group input[type="range"] {
    width: 100%;
    height: 4px;
    padding: 0;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 1px;
    outline: none;
    cursor: pointer;
    box-shadow: none;
}

.input-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.input-group input[type="range"]::-webkit-slider-thumb:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.15);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.input-group input[type="range"]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.input-group input[type="range"]::-moz-range-thumb:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.15);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.input-group label span {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
}

.btn-primary {
    width: 100%;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
    box-shadow: none;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.45);
    transform: none;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.12);
}

.btn-logout {
    padding: 7px 14px;
    background: rgba(240, 71, 71, 0.06);
    border: 1px solid rgba(240, 71, 71, 0.2);
    border-radius: 2px;
    color: #f04747;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: none;
}

.btn-logout:hover {
    background: rgba(240, 71, 71, 0.12);
    border-color: rgba(240, 71, 71, 0.45);
    box-shadow: 0 0 10px rgba(240, 71, 71, 0.12);
}

.btn-back {
    display: block;
    width: 100%;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 10px;
    box-shadow: none;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    box-shadow: none;
}

.error-message {
    margin-top: 12px;
    padding: 10px 14px;
    background: rgba(240, 71, 71, 0.06);
    border: 1px solid rgba(240, 71, 71, 0.2);
    border-left: 3px solid #f04747;
    border-radius: 2px;
    color: #f04747;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 12px;
    text-align: left;
    display: none;
    box-shadow: none;
}

.error-message::before {
    content: "ERR: ";
    font-weight: 700;
}

.error-message.show {
    display: block;
}

.success-message {
    margin-top: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 3px solid rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 12px;
    text-align: left;
    display: none;
    box-shadow: none;
}

.success-message::before {
    content: "OK: ";
    font-weight: 700;
}

.success-message.show {
    display: block;
}

@media (max-width: 480px) {
    .admin-wrapper {
        max-width: 100%;
    }

    .login-card,
    .admin-card {
        padding: 16px 12px;
        border-radius: 2px;
    }

    .admin-header {
        flex-direction: column;
        gap: 12px;
    }

    .admin-header h1 {
        font-size: 13px;
    }

    .tabs {
        flex-wrap: wrap;
        gap: 3px;
    }

    .tab-btn {
        padding: 4px 8px;
        font-size: 11px;
    }

    .input-group input,
    .input-group textarea {
        padding: 8px 10px;
        font-size: 12px;
    }

    .btn-primary {
        padding: 8px 16px;
        font-size: 12px;
    }

    .stat-value {
        font-size: 20px;
    }

    .modal-content {
        padding: 16px;
    }

    .asset-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }
}

.btn-browse {
    margin-top: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    color: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 12px;
    transition: all 0.2s;
}

.btn-browse:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.9);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(30px);
    border-radius: 4px;
    padding: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.modal-header h2 {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.modal-close {
    background: none;
    border: 1px solid rgba(240, 71, 71, 0.2);
    color: #f04747;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: all 0.2s;
}

.modal-close:hover {
    background: rgba(240, 71, 71, 0.1);
    border-color: rgba(240, 71, 71, 0.4);
}

.asset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.asset-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s;
}

.asset-item:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.asset-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.asset-item-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px;
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.loading {
    text-align: center;
    color: var(--text-secondary);
    padding: 40px;
}

.image-preview {
    width: 100px;
    height: 100px;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.3);
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-upload {
    width: 100%;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    color: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 12px;
    transition: all 0.2s;
    margin-bottom: 8px;
}

.btn-upload:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.9);
}

#blurValue,
#darknessValue {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.stats-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 16px;
}

.stats-box h3 {
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.stat-item {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    padding: 12px;
    text-align: center;
}

.stat-value {
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.stat-label {
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-reset-stats {
    width: 100%;
    padding: 8px;
    background: rgba(240, 71, 71, 0.06);
    border: 1px solid rgba(240, 71, 71, 0.2);
    border-radius: 2px;
    color: #f04747;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-reset-stats:hover {
    background: rgba(240, 71, 71, 0.12);
    border-color: rgba(240, 71, 71, 0.45);
    transform: none;
}

.info-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    padding: 12px;
    margin-top: 12px;
}

.info-box h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-color);
}

.info-box p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.views-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.views-badge svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.views-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.card {
    position: relative;
}
.buttons-manager {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.buttons-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.button-item-simple {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.button-name {
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-transform: lowercase;
}

.button-name::before {
    content: "> ";
    color: rgba(255, 255, 255, 0.25);
}

.toggle-visibility {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    padding: 6px 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-visibility:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

.toggle-visibility.visible {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.toggle-visibility.hidden {
    color: #f04747;
    border-color: rgba(240, 71, 71, 0.2);
    background: rgba(240, 71, 71, 0.06);
}

.toggle-visibility svg {
    display: block;
}

.button-item-wrapper {
    display: flex;
    flex-direction: column;
}

.button-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.button-more {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    color: rgba(255, 255, 255, 0.4);
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 16px;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    letter-spacing: 1px;
}

.button-more:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.button-url-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.button-url-panel.open {
    max-height: 80px;
}

.button-url-panel .input-group {
    padding: 8px 0 0 0;
}

.button-url-panel input {
    font-size: 12px;
}

.button-item {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.button-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.button-item-controls {
    display: flex;
    gap: 6px;
}

.btn-icon {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    padding: 5px 8px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 11px;
    transition: all 0.2s ease;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.btn-icon.danger:hover {
    background: rgba(240, 71, 71, 0.08);
    border-color: rgba(240, 71, 71, 0.3);
    color: #f04747;
}

.button-item-fields {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.button-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.button-field label {
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.button-field input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    padding: 7px 10px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 12px;
}

.button-field input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.4);
}

.btn-add {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-add:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.9);
}

.btn-add svg {
    width: 14px;
    height: 14px;
}

.visibility-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-switch {
    position: relative;
    width: 40px;
    height: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toggle-switch.active {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    transition: transform 0.2s ease;
}

.toggle-switch.active .toggle-slider {
    transform: translateX(20px);
    background: rgba(255, 255, 255, 0.8);
}
.opi-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.opi-badge svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.opi-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.reviews-panel {
    display: flex;
    flex-direction: column;
    min-height: 400px;
    max-height: 70vh;
    margin: -10px -5px;
    z-index: 5;
    overflow: hidden;
}

.card > .reviews-anim-fadeout {
    animation: cardContentOut 0.32s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    pointer-events: none;
}

.card > .reviews-anim-fadein {
    animation: cardContentIn 0.35s cubic-bezier(0.0, 0, 0.2, 1) forwards;
}

.reviews-panel.reviews-enter {
    animation: reviewsSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reviews-panel.reviews-leave {
    animation: reviewsSlideOut 0.3s cubic-bezier(0.4, 0, 1, 1) forwards;
    pointer-events: none;
}

@keyframes cardContentOut {
    0% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
    100% {
        opacity: 0;
        transform: scale(0.97) translateY(8px);
        filter: blur(4px);
    }
}

@keyframes cardContentIn {
    0% {
        opacity: 0;
        transform: scale(0.97) translateY(8px);
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

@keyframes reviewsSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        filter: blur(6px);
    }
    60% {
        opacity: 1;
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes reviewsSlideOut {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
    100% {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
        filter: blur(6px);
    }
}

.reviews-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.reviews-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    flex: 1;
}

.reviews-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2px 10px;
}

.reviews-back-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 6px 8px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-back-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.reviews-list {
    flex: 1;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 12px;
    padding-right: 4px;
    align-content: start;
}

.reviews-list::-webkit-scrollbar {
    width: 4px;
}

.reviews-list::-webkit-scrollbar-track {
    background: transparent;
}

.reviews-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .reviews-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.reviews-loading,
.reviews-empty {
    text-align: center;
    color: var(--text-secondary);
    font-size: 13px;
    padding: 30px 0;
    opacity: 0.7;
    grid-column: 1 / -1;
}

.review-card {
    background: rgba(128, 128, 128, 0.1);
    border: 1px solid rgba(128, 128, 128, 0.25);
    border-radius: 12px;
    padding: 12px 14px;
    animation: fadeIn 0.3s ease backwards;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.review-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.review-card-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
}

.review-card-stars {
    display: flex;
    gap: 2px;
    font-size: 12px;
    color: #faa61a;
}

.review-card-stars .star-empty {
    color: rgba(128, 128, 128, 0.3);
}

.review-card-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
}

.review-card-date {
    font-size: 10px;
    color: var(--text-secondary);
    opacity: 0.5;
}

.review-expand-btn {
    background: none;
    border: none;
    color: var(--text-secondary, #999);
    padding: 0 2px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: color 0.2s ease;
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.5;
}
.review-expand-btn:hover {
    opacity: 1;
}

.review-fullscreen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.review-fullscreen.active {
    opacity: 1;
    pointer-events: auto;
}

.review-fullscreen-card {
    background: rgba(38, 38, 38, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    max-width: 480px;
    width: 90vw;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.review-fullscreen.active .review-fullscreen-card {
    transform: scale(1);
}

.review-fullscreen-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.review-fullscreen-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}
.review-fullscreen-stars {
    display: flex;
    gap: 3px;
    font-size: 14px;
    color: #faa61a;
}
.review-fullscreen-stars .star-empty {
    color: rgba(128, 128, 128, 0.3);
}

.review-fullscreen-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    word-break: break-word;
    white-space: pre-wrap;
}

.review-fullscreen-date {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 16px;
}

.review-fullscreen-close {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
}
.review-fullscreen-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.admin-reviews-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    font-family: 'Consolas', 'Courier New', 'Fira Code', monospace;
}

@media (max-width: 900px) {
    .admin-reviews-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .admin-reviews-list {
        grid-template-columns: 1fr;
    }
}

.review-form {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 12px;
}

.review-form-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-input {
    flex: 1;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-color);
    font-size: 13px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.review-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

.review-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.review-textarea {
    width: 100%;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-color);
    font-size: 13px;
    font-family: inherit;
    resize: none;
    transition: all 0.2s ease;
}

.review-textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

.review-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.star-rating {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.star-rating .star {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: color 0.15s ease, transform 0.15s ease;
    user-select: none;
    line-height: 1;
}

.star-rating .star:hover,
.star-rating .star.hover {
    color: #faa61a;
    transform: scale(1.15);
}

.star-rating .star.active {
    color: #faa61a;
}

.review-submit-btn {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: var(--text-color);
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}

.review-submit-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.review-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.admin-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-family: 'Consolas', 'Courier New', 'Fira Code', monospace;
}

.admin-reviews-header::before {
    content: "$ reviews --list";
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
}

.btn-refresh-reviews {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
    font-family: 'Consolas', 'Courier New', monospace;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-refresh-reviews svg {
    transition: transform 0.4s ease;
    stroke: rgba(255, 255, 255, 0.7);
}

.btn-refresh-reviews:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.9);
}

.btn-refresh-reviews:hover svg {
    transform: rotate(180deg);
    stroke: rgba(255, 255, 255, 0.9);
}

.btn-refresh-reviews:active svg {
    transform: rotate(360deg);
}

.admin-reviews-list .loading {
    grid-column: 1 / -1;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 13px;
    padding: 20px 0;
    text-align: center;
}

.admin-reviews-list .loading::before {
    content: "> ";
    color: rgba(255, 255, 255, 0.3);
}

.ascii-review {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.6;
    transition: border-color 0.2s ease, background 0.2s ease;
    display: flex;
    flex-direction: column;
}

.ascii-review:hover {
    background: rgba(0, 0, 0, 0.3);
}

.ascii-review.pinned {
    cursor: grab;
}

.ascii-review.dragging {
    opacity: 0.4;
    cursor: grabbing;
}

.ascii-review.drag-over {
    border-left-color: #7289da;
    background: rgba(114, 137, 218, 0.1);
}

.ascii-review.pending {
    border-left-color: #faa61a;
}

.ascii-review.approved {
    border-left-color: #43b581;
}

.ascii-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.ascii-id {
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
}

.ascii-status {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.ascii-status.pending {
    color: #faa61a;
}

.ascii-status.approved {
    color: #43b581;
}

.ascii-review-body {
    flex: 1;
    margin-bottom: 10px;
}

.ascii-line {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.9);
}

.ascii-label {
    color: rgba(255, 255, 255, 0.55);
    min-width: 50px;
    display: inline-block;
}

.ascii-label::before {
    content: "> ";
    color: rgba(255, 255, 255, 0.3);
}

.ascii-stars {
    color: #faa61a;
    letter-spacing: 1px;
}

.ascii-sep {
    border-top: 1px dashed rgba(255, 255, 255, 0.06);
    margin: 6px 0;
}

.ascii-text {
    color: rgba(255, 255, 255, 0.85);
    white-space: pre-wrap;
    word-break: break-word;
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    margin-left: 2px;
}

.ascii-text.ascii-text-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ascii-expand-btn {
    margin-top: 6px;
    margin-left: 18px;
}

.ascii-review-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
    padding-top: 8px;
    border-top: 1px dashed rgba(255, 255, 255, 0.06);
    align-items: center;
}

.ascii-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.ascii-btn.approve {
    color: #43b581;
    border-color: rgba(67, 181, 129, 0.25);
}

.ascii-btn.approve:hover {
    background: rgba(67, 181, 129, 0.15);
    border-color: rgba(67, 181, 129, 0.5);
}

.ascii-btn.reject {
    color: #f04747;
    border-color: rgba(240, 71, 71, 0.25);
}

.ascii-btn.reject:hover {
    background: rgba(240, 71, 71, 0.15);
    border-color: rgba(240, 71, 71, 0.5);
}

.admin-reviews-empty {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    padding: 30px 0;
    font-size: 13px;
    font-family: 'Consolas', 'Courier New', monospace;
}

.admin-reviews-empty::before {
    content: "> ";
    color: rgba(255, 255, 255, 0.25);
}

.ascii-review-color-slot {
    margin-right: auto;
}

.review-color-picker {
    display: flex;
    align-items: center;
}

.rcp-preview {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: border-color 0.2s;
    flex-shrink: 0;
}
.rcp-preview:hover {
    border-color: rgba(255, 255, 255, 0.4);
}
.rcp-preview.rcp-empty {
    background: repeating-conic-gradient(
        rgba(255, 255, 255, 0.08) 0% 25%, transparent 0% 50%
    ) 50% / 8px 8px !important;
}

.cpk-overlay {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.cpk-overlay.cpk-open {
    opacity: 1;
    pointer-events: auto;
}

.cpk-popup {
    background: #1c1c1e;
    border-radius: 16px;
    padding: 16px;
    width: 272px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                inset 0 0 0 0.5px rgba(255, 255, 255, 0.1);
    transform: scale(0.92);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cpk-open .cpk-popup {
    transform: scale(1);
}

.cpk-sv {
    width: 240px;
    height: 200px;
    border-radius: 10px;
    cursor: crosshair;
    display: block;
    touch-action: none;
}

.cpk-hue {
    width: 240px;
    height: 16px;
    cursor: pointer;
    display: block;
    touch-action: none;
}

.cpk-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cpk-current-preview {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.cpk-hex-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.cpk-hex-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    font-family: 'SF Mono', 'Consolas', monospace;
    font-size: 13px;
    padding: 5px 8px;
    outline: none;
    transition: border-color 0.2s;
}
.cpk-hex-input:focus {
    border-color: rgba(255, 255, 255, 0.3);
}

.cpk-saved {
    max-height: 68px;
    overflow-y: auto;
}

.cpk-saved-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.cpk-sw {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.15s ease;
}
.cpk-sw:hover {
    transform: scale(1.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.cpk-actions {
    display: flex;
    gap: 8px;
}

.cpk-btn {
    flex: 1;
    padding: 8px 0;
    border-radius: 8px;
    border: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.cpk-btn-clear {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.cpk-btn-clear:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.cpk-btn-apply {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.cpk-btn-apply:hover {
    background: rgba(255, 255, 255, 0.2);
}

.review-card.review-highlighted {
    border: 1px solid color-mix(in srgb, var(--review-border) 50%, transparent);
    background:
        linear-gradient(
            135deg,
            color-mix(in srgb, var(--review-border) 15%, transparent) 0%,
            color-mix(in srgb, var(--review-border) 6%, transparent) 50%,
            color-mix(in srgb, var(--review-border) 12%, transparent) 100%
        );
    box-shadow:
        0 0 20px color-mix(in srgb, var(--review-border) 18%, transparent),
        0 0 6px color-mix(in srgb, var(--review-border) 10%, transparent),
        inset 0 0 30px color-mix(in srgb, var(--review-border) 5%, transparent);
}

.review-pin-icon {
    width: 12px;
    height: 12px;
    vertical-align: -1px;
    opacity: 0.7;
    margin-right: 2px;
}

.review-card.review-pinned {
    order: -1;
}

.ascii-btn.pin {
    color: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.12);
}
.ascii-btn.pin:hover {
    color: #faa61a;
    border-color: rgba(250, 166, 26, 0.3);
    background: rgba(250, 166, 26, 0.08);
}
.ascii-btn.pin.active {
    color: #faa61a;
    border-color: rgba(250, 166, 26, 0.4);
    background: rgba(250, 166, 26, 0.12);
}

.ascii-pin-badge {
    font-size: 11px;
    margin-left: 4px;
}

.ascii-review.pinned {
    border-left-color: #faa61a !important;
}

.geo-stats-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 16px;
}

.geo-stats-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.geo-stats-header h3 {
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.btn-refresh-geo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-refresh-geo:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

.btn-refresh-geo:hover svg {
    transform: rotate(180deg);
    transition: transform 0.4s ease;
}

.geo-chart-label {
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 12px;
    opacity: 1;
}

.geo-chart-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.geo-chart {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s ease;
}

.geo-chart svg {
    width: 100%;
    height: 100%;
}

.geo-chart .pie-slice {
    cursor: pointer;
    transition: opacity 0.15s ease;
}

.geo-chart .pie-slice:hover {
    opacity: 0.85;
    filter: brightness(1.15);
}

.geo-legend {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 200px;
    overflow-y: auto;
}

.geo-legend::-webkit-scrollbar {
    width: 3px;
}

.geo-legend::-webkit-scrollbar-track {
    background: transparent;
}

.geo-legend::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.geo-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.geo-legend-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.geo-legend-item.active {
    background: rgba(255, 255, 255, 0.1);
}

.geo-legend-color {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    flex-shrink: 0;
}

.geo-legend-name {
    font-size: 13px;
    color: #ffffff;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.geo-legend-count {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
}

.geo-no-data {
    text-align: center;
    color: var(--text-secondary);
    font-size: 13px;
    padding: 40px 0;
    opacity: 0.6;
    width: 100%;
}

@media (max-width: 480px) {
    .geo-chart-container {
        flex-direction: column;
        align-items: center;
    }

    .geo-chart {
        width: 170px;
        height: 170px;
    }

    .geo-legend {
        width: 100%;
        max-height: 150px;
    }
}

@media (max-width: 480px) {
    .opi-badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    .reviews-panel {
        min-height: 320px;
        max-height: 60vh;
        margin: -5px -3px;
    }

    .reviews-list {
        grid-template-columns: 1fr;
    }

    .container.reviews-expanded {
        max-width: 100%;
    }

    .reviews-header {
        margin-bottom: 10px;
    }

    .reviews-header h2 {
        font-size: 17px;
    }

    .review-card {
        padding: 10px 12px;
    }

    .review-form {
        gap: 6px;
        padding-top: 8px;
    }

    .review-input,
    .review-textarea {
        padding: 7px 10px;
        font-size: 12px;
    }

    .review-submit-btn {
        padding: 7px 14px;
        font-size: 12px;
    }

    .star-rating .star {
        font-size: 16px;
    }

    .admin-wrapper {
        max-width: 100%;
    }

    .admin-card {
        padding: 20px 12px;
    }

    .tabs {
        flex-wrap: wrap;
        gap: 4px;
    }

    .tab-btn {
        font-size: 12px;
        padding: 6px 10px;
    }
}

@media (max-width: 360px) {
    .opi-badge {
        font-size: 10px;
        padding: 3px 7px;
    }

    .reviews-panel {
        min-height: 280px;
        max-height: 55vh;
    }

    .reviews-header h2 {
        font-size: 15px;
    }

    .review-form-row {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .star-rating .star {
        font-size: 15px;
    }
}

.config-section-title {
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin: 20px 0 12px;
    padding-bottom: 6px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.config-section-title:first-child {
    margin-top: 0;
}

#config-tab .btn-primary {
    margin-top: 20px;
}

#config-tab .input-group input[type="text"] {
    filter: blur(5px);
    transition: filter 0.25s ease;
    cursor: pointer;
}

#config-tab .input-group input[type="text"]:hover,
#config-tab .input-group input[type="text"]:focus {
    filter: blur(0);
    cursor: text;
}

.ascii-icon {
    font-family: 'Consolas', 'Courier New', monospace;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 4px;
}

.dynamic-island {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    background: rgba(38, 38, 38, 0.95);
    border-radius: 50px;
    width: 36px;
    height: 36px;
    max-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3),
                inset 0 0 0 0.5px rgba(255, 255, 255, 0.12);
}

.dynamic-island-text {
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    padding: 0 20px;
    transition: opacity 0.2s ease;
}

.dynamic-island.island-expand {
    opacity: 1;
    pointer-events: auto;
    animation: islandExpand 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.dynamic-island.island-expand .dynamic-island-text {
    opacity: 1;
    transition-delay: 0.25s;
}

.dynamic-island.island-retract {
    opacity: 1;
    pointer-events: none;
    animation: islandRetract 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.dynamic-island.island-retract .dynamic-island-text {
    opacity: 0;
    transition-delay: 0s;
    transition-duration: 0.1s;
}

.dynamic-island.island-idle {
    opacity: 0;
    width: 36px;
    height: 36px;
    max-width: 36px;
    pointer-events: none;
}

.dynamic-island[data-type="success"] { background: rgba(50, 50, 50, 0.95); }
.dynamic-island[data-type="error"]   { background: rgba(55, 55, 55, 0.95); }

@keyframes islandExpand {
    0%   { width: 36px;  height: 36px; max-width: 36px;  border-radius: 50px; }
    40%  { width: 44px;  height: 40px; max-width: 44px;  border-radius: 50px; }
    100% { width: 340px; height: 44px; max-width: 90vw;  border-radius: 50px; }
}

@keyframes islandRetract {
    0%   { width: 340px; height: 44px; max-width: 90vw; opacity: 1; border-radius: 50px; }
    60%  { width: 44px;  height: 40px; max-width: 44px; opacity: 1; border-radius: 50px; }
    100% { width: 36px;  height: 36px; max-width: 36px; opacity: 0; border-radius: 50px; }
}

.review-form-bottom {
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-image-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-secondary);
    padding: 6px 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.review-image-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.review-image-name {
    font-size: 11px;
    color: var(--text-secondary);
    opacity: 0.6;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100px;
}

.review-image-clear {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 16px;
    opacity: 0.5;
    padding: 0 4px;
    line-height: 1;
}

.review-image-clear:hover {
    opacity: 1;
}

.review-form-bottom .review-submit-btn {
    margin-left: auto;
}

.review-image-preview {
    margin-top: 4px;
}

.review-image-preview img {
    max-height: 60px;
    max-width: 100%;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
}

.review-card-image {
    margin: 6px 0;
}

.review-card-image img {
    max-width: 100%;
    max-height: 150px;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s ease;
    object-fit: cover;
}

.review-card-image img:hover {
    opacity: 0.85;
}

.review-fullscreen-image {
    margin: 10px 0;
    text-align: center;
}

.review-fullscreen-image img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 10px;
    object-fit: contain;
}

.image-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    cursor: zoom-out;
}

.image-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.image-overlay-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
}

.ascii-review-thumb {
    max-height: 60px;
    border-radius: 4px;
    cursor: pointer;
    vertical-align: middle;
    margin-left: 4px;
    transition: opacity 0.2s ease;
}

.ascii-review-thumb:hover {
    opacity: 0.7;
}

.disk-usage-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 16px;
    margin-top: 16px;
}

.disk-usage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.disk-usage-header h3 {
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.btn-refresh-disk {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.4);
    padding: 4px 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.btn-refresh-disk:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.disk-bar-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.disk-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.disk-bar-fill {
    height: 100%;
    background: #43b581;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.disk-bar-fill.warning {
    background: #faa61a;
}

.disk-bar-fill.critical {
    background: #f04747;
}

.disk-bar-label {
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    min-width: 40px;
    text-align: right;
}

.disk-stats {
    display: flex;
    justify-content: space-between;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

body.adm-standalone {
    overflow: auto;
}

body.adm-standalone #glassShader {
    display: none;
}
