:root {
    --gradient-colors: linear-gradient(270deg, #0f0c29, #302b63, #24243e);
    --text-color: #fff;
    --glass-bg: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.15);
    --button-bg: rgba(255, 255, 255, 0.1);
    --button-hover: rgba(255, 255, 255, 0.2);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Rubik', sans-serif;
    background: var(--gradient-colors);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    color: var(--text-color);
    overflow-x: hidden;
    padding: 20px;
    min-height: 100vh;
    position: relative;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}
h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: inline-block;
    transition: transform 0.3s ease;
}
h1:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}
.search-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}
.input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.search-wrapper, .request-wrapper {
    display: flex;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 5px;
    transition: transform 0.3s ease;
    height: 38px;
    width: 100%;
}
.search-wrapper:hover, .request-wrapper:hover {
    transform: translateY(-2px);
}
.search-wrapper input, .request-wrapper input {
    flex-grow: 1;
    padding: 6px 12px;
    font-size: 0.88em;
    border: none;
    background: transparent;
    color: var(--text-color);
}
.search-wrapper button, .request-wrapper button {
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--button-bg);
    color: var(--text-color);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.search-wrapper button:hover, .request-wrapper button:hover {
    background: var(--button-hover);
    transform: scale(1.05);
}
.search-wrapper { position: relative; }
.initial-loader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 12, 30, 0.96);
    backdrop-filter: blur(6px);
    z-index: 350;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.initial-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.initial-loader .loader-content {
    text-align: center;
    color: #fff;
}
.initial-loader .loader-content p {
    margin: 10px 0 0;
    font-size: 1rem;
    color: #d8d8ff;
}
.category-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    position: relative;
    flex-wrap: nowrap;
}
.category-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
}
.category-buttons button {
    width: 36px;
    height: 36px;
    background: var(--button-bg);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.category-buttons button:hover {
    background: var(--button-hover);
    transform: scale(1.05);
}
.category-buttons button.active {
    background: var(--button-hover);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
.settings-wrapper { position: relative; }
.settings-btn {
    width: 36px;
    height: 36px;
    background: var(--button-bg);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 0;
}
.settings-btn:hover {
    background: var(--button-hover);
    transform: scale(1.05);
}
.settings-btn.active {
    background: var(--button-hover);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
.sort-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 8px 0;
    width: fit-content;
    min-width: 120px;
    max-width: 180px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.sort-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sort-option {
    padding: 10px 15px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
}
.sort-option:hover { background: var(--button-hover); }
.sort-option.active {
    background: var(--button-hover);
    color: #a3d5ff;
}
.sort-option i {
    font-size: 0.9em;
    width: 16px;
    text-align: center;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 35px auto 0;
    padding: 0 20px;
}
.item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    contain: layout;
    cursor: pointer;
    position: relative;
}
.item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
.item-content {
    text-decoration: none;
    color: inherit;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.item h2 {
    font-size: 1em;
    margin: 12px 0 4px 0;
    color: var(--text-color);
    text-align: center;
    font-weight: 500;
    order: 1;
}
.title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    order: 2;
    width: 100%;
}
.subtitle {
    text-align: center;
    font-size: 0.85em;
    color: #ccc;
    font-weight: 400;
}
.description { display: none; }
.download-count {
    display: none;
    font-size: 0.75em;
    color: #aaa;
    text-align: center;
}
.download-count.show {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.img-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    order: 3;
    background: rgba(0, 0, 0, 0.2);
}
.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    opacity: 0;
    animation: lazyFadeIn 0.45s ease forwards;
}
@keyframes lazyFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
.item:hover img { transform: scale(1.05); }
.yt-embed, .panorama-url, .item-rating, .item-total-ratings, .item-creator, .description,
[class^="img-wrapper"]:not(.img-wrapper) { display: none; }
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.overlay.active {
    opacity: 1;
    visibility: visible;
}
.download-modal {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    width: 90%;
    max-width: 550px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.overlay.active .download-modal { transform: translateY(0); }
.share-modal {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    width: 90%;
    max-width: 560px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    position: relative;
}
.overlay.active .share-modal { transform: translateY(0); }
.overlay.active .alert-modal { transform: translateY(0); }
.alert-modal {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    text-align: center;
}
.overlay.active .success-modal { transform: translateY(0); }
.success-modal {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    text-align: center;
}
.share-modal .close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.35em;
    cursor: pointer;
    transition: transform 0.2s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.share-modal .close-btn:hover { transform: scale(1.05); }
.share-title {
    font-size: 1.2em;
    font-weight: 800;
    text-align: center;
    margin: 0 0 14px 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}
.share-label {
    font-size: 0.8em;
    color: #aaa;
    margin: 15px 0 5px 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.share-label:first-of-type { margin-top: 0; }
.share-link-row {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 5px 0;
}
.share-url {
    flex: 1;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.25);
    color: #ddd;
    font-size: 0.9em;
    word-break: break-all;
}
.copy-share-btn {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: var(--button-bg);
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
    position: relative;
}
.copy-share-btn:hover {
    transform: translateY(-1px) scale(1.02);
    background: var(--button-hover);
}
.copy-share-btn.copied i { display: none; }
.copy-share-btn.copied::after {
    content: "✓";
    font-size: 1.2em;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.modal-title {
    font-size: 1.4em;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
.modal-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.favourite-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.2em;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease, text-shadow 0.2s ease;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.favourite-btn i {
    transition: color 0.2s ease;
}
.favourite-btn:hover { transform: scale(1.05); }
.share-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.2em;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.share-btn:hover { transform: scale(1.05); }
.favourite-btn.favourited,
.favourite-btn.favourited i {
    color: #ff4d4d !important;
    text-shadow: 0 0 8px rgba(255, 77, 77, 0.35);
}
.close-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.35em;
    cursor: pointer;
    transition: transform 0.2s ease;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.close-btn:hover { transform: scale(1.05); }
.modal-meta-row {
    position: relative;
    display: block;
    margin: 0 0 15px;
}
.modal-meta-row .modal-type {
    margin: 0;
    text-align: center;
    padding: 0 45px;
}
.modal-meta-row #favouriteBtn, .modal-meta-row #shareBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}
.modal-meta-row #favouriteBtn { left: 0; }
.modal-meta-row #shareBtn { right: 0; }
.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    background: #0a0a0a;
    margin-bottom: 20px;
}
.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease;
}
.slider-slide {
    flex: 0 0 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
}
.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0a0a0a;
}
.slider-slide.panorama-mode img {
    object-fit: cover;
    user-select: none;
}
.slider-slide iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.slider-prev, .slider-next, .slider-up {
    position: absolute;
    width: 36px;
    height: 36px;
    background: var(--button-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
    z-index: 5;
}
.slider-prev, .slider-next {
    top: 50%;
    transform: translateY(-50%);
}
.slider-prev { left: 8px; }
.slider-next { right: 8px; }
.slider-up {
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}
.slider-prev:hover, .slider-next:hover {
    background: var(--button-hover);
    transform: translateY(-50%) scale(1.05);
}
.slider-up:hover {
    background: var(--button-hover);
    transform: translateX(-50%) scale(1.05);
}
.slider-dots {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 5;
}
.panorama-slider {
    position: absolute;
    left: 20%;
    right: 20%;
    bottom: 10px;
    height: 3px;
    z-index: 6;
    display: none;
    accent-color: #e6e6e6;
    opacity: 0.9;
}
.panorama-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.4);
}
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.2s;
}
.slider-dot.active {
    background: white;
    transform: scale(1.2);
    border-color: white;
}
.modal-type {
    text-align: center;
    font-size: 0.95em;
    color: #ccc;
    margin-bottom: 0;
    text-transform: capitalize;
}
.modal-type .clickable-meta {
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: rgba(100, 149, 237, 0.6);
    text-underline-offset: 2px;
    color: #6495ed;
    transition: all 0.2s ease;
}
.modal-type .clickable-meta:hover {
    color: #87cefa;
    text-decoration-color: rgba(135, 206, 250, 0.8);
    text-shadow: 0 0 8px rgba(100, 149, 237, 0.5);
}
.modal-rating {
    text-align: center;
    margin: -6px 0 14px;
    color: #f5d76e;
    font-size: 0.92em;
}
.modal-rating i { margin-right: 4px; }
.modal-description {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 20px;
    max-height: calc(1.4em * 5);
    overflow-y: auto;
    font-size: 0.9em;
    line-height: 1.2;
    color: #ddd;
    border: 1px solid var(--glass-border);
    scrollbar-width: thin;
    scrollbar-color: var(--button-hover) transparent;
}
.modal-description::-webkit-scrollbar { width: 6px; }
.modal-description::-webkit-scrollbar-thumb {
    background: var(--button-hover);
    border-radius: 10px;
}
.download-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 240px;
    overflow-y: auto;
    padding: 4px 5px 4px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--button-hover) transparent;
}
.download-links::-webkit-scrollbar { width: 6px; }
.download-links::-webkit-scrollbar-thumb {
    background: var(--button-hover);
    border-radius: 10px;
}
.download-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--button-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-color);
}
.download-link:hover {
    background: var(--button-hover);
    transform: translateY(-2px);
}
.link-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}
.link-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.link-icon { font-size: 1.2em; }
.file-size {
    margin-left: auto;
    padding-left: 12px;
    font-size: 0.85em;
    color: #aaa;
    white-space: nowrap;
    text-align: right;
}
.right-group {
    display: flex;
    align-items: center;
    gap: 8px;
}
.link-arrow {
    font-size: 0.9em;
    opacity: 0.7;
}
.hidden-links { display: none; }
.loading-indicator {
    grid-column: 1/-1;
    text-align: center;
    padding: 30px;
    color: var(--text-color);
    font-size: 1.1em;
}
.no-items {
    text-align: center;
    padding: 40px;
    grid-column: 1/-1;
    color: #ccc;
    font-size: 1.2em;
}
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    color: #bbb;
    z-index: 2;
}
.stars {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}
.star {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: twinkle var(--anim-dur) ease-in-out infinite;
}
@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}
@media (max-width: 768px) {
    .grid-container { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
    .download-modal { width: 95%; padding: 20px; max-width: 500px; }
    .sort-dropdown { right: 0; left: auto; }
    .category-container { gap: 8px; }
    .category-buttons { gap: 8px; }
    .title-row { gap: 6px; }
    .slider-prev, .slider-next, .slider-up { width: 32px; height: 32px; }
}
.themes-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: var(--glass-bg);
    border-left: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    z-index: 200;
    transition: right 0.4s ease;
    overflow-y: auto;
    padding: 20px;
}
.themes-panel.active { right: 0; }
.panel-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--button-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}
.panel-close-btn:hover {
    background: var(--button-hover);
    transform: scale(1.1);
}
.themes-panel h2 {
    font-size: 1.4em;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
.theme-option { margin-bottom: 18px; }
.theme-option label {
    display: block;
    font-size: 0.85em;
    color: #aaa;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.theme-option input[type="color"] {
    width: 100%;
    height: 40px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    cursor: pointer;
    background: transparent;
}
.font-style-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.font-style-btn {
    flex: 1;
    min-width: 90px;
    padding: 10px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: var(--button-bg);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.85em;
}
.font-style-btn:hover {
    background: var(--button-hover);
    transform: translateY(-1px);
}
.font-style-btn.active {
    background: rgba(76, 175, 80, 0.35);
    border-color: #4CAF50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.35);
}
.theme-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.theme-actions button {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s ease;
}
.theme-apply-btn { background: #4CAF50; color: white; }
.theme-reset-btn {
    background: var(--button-bg);
    color: var(--text-color);
}
.theme-actions button:hover { transform: translateY(-2px); }
.information-section {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: var(--glass-bg);
    border-left: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    z-index: 200;
    transition: right 0.4s ease;
    overflow-y: auto;
    padding: 20px;
}
.information-section.show { right: 0; }
.information-section .panel-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--button-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}
.information-section .panel-close-btn:hover {
    background: var(--button-hover);
    transform: scale(1.1);
}
.information-section h2 {
    font-size: 1.8em;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--button-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
    color: var(--text-color);
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-links a:hover { transform: scale(1.15); }
.social-links a.discord:hover {
    background: #5865F2;
    color: #fff;
}
.social-links a.youtube:hover {
    background: #ff0000;
    color: #fff;
}
.social-links a.tiktok:hover {
    background: #000;
    color: #fff;
}
.themes-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.themes-overlay.active {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 768px) {
    .themes-panel { width: 100%; right: -100%; }
    .themes-panel.active { right: 0; }
    .information-section { width: 100%; right: -100%; }
    .information-section.show { right: 0; }
}
.tutorial-section {
    margin-top: 25px;
    text-align: center;
}
.tutorial-section h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #a3d5ff;
}
.tutorial-item {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid var(--glass-border);
}
.tutorial-item h4 {
    font-size: 1em;
    margin-bottom: 8px;
}
.download-guide-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--button-bg);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    font-size: 1em;
    margin-top: 10px;
}
.download-guide-btn:hover {
    background: var(--button-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.tutorial-item p {
    font-size: 0.85em;
    color: #aaa;
    line-height: 1.5;
}
.statistics-title {
    text-align: center;
    color: var(--text-color);
    font-size: 1.3em;
    margin: 25px 0 15px 0;
    padding: 10px;
    border-bottom: 2px solid var(--button-bg);
}
.statistics-area {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 10px 0;
}
.statistics-area.show { display: flex; }
.stat-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
}
.stat-row-single { justify-content: center; }
.stat-item-wide { width: 95%; max-width: 95%; }
.stat-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    flex: 1;
    width: 45%;
    box-sizing: border-box;
}
.stat-item:hover {
    transform: translateY(-3px);
    background: var(--button-hover);
}
.stat-icon {
    font-size: 1.3em;
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.stat-count {
    font-size: 1.1em;
    font-weight: bold;
}
.stat-label {
    font-size: 0.7em;
    color: #aaa;
    text-transform: uppercase;
}
.social-icon.discord:hover {
    background: #5865F2 !important;
    color: #fff !important;
    transform: scale(1.1);
}
.social-icon.youtube:hover {
    background: #ff0000 !important;
    color: #fff !important;
    transform: scale(1.1);
}
.social-icon.tiktok:hover {
    background: #000 !important;
    color: #fff !important;
    transform: scale(1.1);
}