:root {
    --bg-dark: #050508;
    --bg-sidebar: #0e0e14;
    --bg-card: #14141e;
    --text-white: #ffffff;
    --text-grey: #a0a0b0;
    --neon-purple: #9d00ff;
    --neon-blue: #00f7ff;
    --neon-red: #ff3333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
input, select, button { font-family: inherit; outline: none; }

.main-wrapper {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.sidebar {
    width: 260px;
    background-color: var(--bg-sidebar);
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    border-right: 1px solid rgba(157, 0, 255, 0.15);
}

.brand-title {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-white);
    text-shadow: 0 0 15px var(--neon-purple);
    margin-bottom: 50px;
    text-align: center;
}

.sidebar-menu { flex-grow: 1; }

.sidebar-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wishlist-btn {
    color: var(--text-grey);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    padding: 10px;
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 10px;
    justify-content: center;
}
.wishlist-btn:hover { color: var(--neon-purple); border-color: var(--neon-purple); }

.settings-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background-color: #252530; color: var(--text-grey);
    padding: 12px; border-radius: 50px; font-weight: bold; font-size: 14px;
}
.settings-btn:hover { background-color: #eee; color: #000; }

.content-area {
    flex-grow: 1;
    overflow-y: auto;
    position: relative;
    background: radial-gradient(circle at top right, #1a0b2e, var(--bg-dark) 60%);
}

.main-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 40px; position: sticky; top: 0; z-index: 50;
    background: rgba(5, 5, 8, 0.9); backdrop-filter: blur(10px);
}

.center-nav ul { display: flex; gap: 30px; }
.center-nav a { font-size: 13px; font-weight: 700; color: var(--text-grey); letter-spacing: 1px; }
.center-nav a:hover, .center-nav a.active { color: var(--neon-blue); text-shadow: 0 0 8px var(--neon-blue); }

.header-right { display: flex; align-items: center; gap: 20px; }
.auth-buttons { display: flex; gap: 15px; }

.btn-neon {
    padding: 10px 25px; border-radius: 50px; border: 2px solid transparent;
    background: transparent; color: #fff; font-weight: bold; cursor: pointer; transition: 0.3s;
}
.blue-glow { border-color: var(--neon-blue); color: var(--neon-blue); box-shadow: 0 0 5px var(--neon-blue); }
.blue-glow:hover { background: var(--neon-blue); color: #000; box-shadow: 0 0 25px var(--neon-blue); }

.purple-glow { border-color: var(--neon-purple); color: var(--neon-purple); box-shadow: 0 0 5px var(--neon-purple); }
.purple-glow:hover { background: var(--neon-purple); color: #fff; box-shadow: 0 0 25px var(--neon-purple); }

.profile-star-btn { font-size: 26px; color: var(--text-grey); cursor: pointer; transition: 0.3s; }
.profile-star-btn:hover { color: gold; transform: scale(1.1); }

.user-controls {
    display: flex; align-items: center; gap: 15px;
    background: rgba(255, 255, 255, 0.05); padding: 8px 15px;
    border-radius: 50px; border: 1px solid rgba(255, 255, 255, 0.1);
}
.user-greeting { font-size: 14px; color: var(--neon-blue); font-weight: bold; text-shadow: 0 0 5px rgba(0, 247, 255, 0.3); }
.logout-btn { color: var(--text-grey); font-size: 16px; transition: 0.3s; display: flex; align-items: center; }
.logout-btn:hover { color: var(--neon-red); text-shadow: 0 0 10px var(--neon-red); transform: translateX(3px); }

.main-content-padding { padding: 30px 40px; }
.section-title { color: var(--text-white); margin-bottom: 20px; }

.horizontal-scroll-container { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 15px; }
.horizontal-scroll-container .game-card { min-width: 230px; }

.filter-bar { display: flex; justify-content: flex-end; gap: 15px; margin: 30px 0 20px 0; }
.control-btn { background: var(--bg-card); color: var(--text-grey); border: 1px solid #333; padding: 8px 15px; border-radius: 8px; cursor: pointer; }
.control-btn:hover { border-color: var(--neon-blue); color: var(--neon-blue); }

.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 30px; }

.game-card {
    display: block;
    background: var(--bg-card); 
    border-radius: 15px; 
    overflow: hidden;
    position: relative; 
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
    text-decoration: none;
    height: 100%;
}
.game-card:hover { transform: translateY(-8px); border-color: var(--neon-purple); box-shadow: 0 5px 20px rgba(157,0,255,0.2); }

.game-cover-wrapper { position: relative; height: 320px; width: 100%; overflow: hidden; }
.game-cover { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.game-card:hover .game-cover { transform: scale(1.05); }

.badge-admin, .badge-user {
    position: absolute; top: 12px; width: 32px; height: 32px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 12px; z-index: 2;
}
.badge-admin { left: 12px; background: var(--neon-purple); color: #fff; }
.badge-user { right: 12px; background: var(--neon-blue); color: #000; }
.bad-score { background: #555 !important; color: #ccc !important; }

.fav-btn {
    position: absolute; bottom: 12px; right: 12px; width: 36px; height: 36px;
    background: rgba(0,0,0,0.7); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: #fff; cursor: pointer; z-index: 2;
}
.fav-btn:hover { background: var(--neon-red); box-shadow: 0 0 15px var(--neon-red); }

.game-info { padding: 15px; text-align: center; }
.game-info h3 { margin: 0; font-size: 16px; color: var(--text-white); }
.game-info p { margin: 5px 0 0 0; font-size: 12px; color: var(--text-grey); }

.mini-score-bar { height: 3px; width: 100%; }
.mini-score-bar.good { background: var(--neon-blue); }
.mini-score-bar.bad { background: var(--neon-red); }

.is-18-plus.locked .game-cover { filter: blur(15px); transform: scale(1.2); }
.adult-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center;
    color: var(--neon-red); font-weight: bold; gap: 10px; opacity: 0; z-index: 1;
}
.is-18-plus.locked .adult-overlay { opacity: 1; }


.auth-page-body {
    margin: 0; padding: 0; height: 100vh; width: 100%;
    background: url('https://images.unsplash.com/photo-1614850523060-8da1d56ae167?q=80&w=2670&auto=format&fit=crop') no-repeat center center/cover;
    position: relative; display: flex; justify-content: center; align-items: center;
}

.auth-page-body::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(5, 5, 8, 0.75); backdrop-filter: blur(8px); z-index: 1;
}

.back-home-link {
    position: absolute; top: 40px; left: 40px;
    color: var(--text-white); font-weight: bold;
    display: flex; align-items: center; gap: 10px; font-size: 15px;
    z-index: 10; text-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.back-home-link:hover { color: var(--neon-blue); }

.centered-auth-container {
    position: relative; z-index: 5; width: 100%; max-width: 380px;
    padding: 0 10px; background: transparent; border: none; box-shadow: none;
    display: flex; flex-direction: column; align-items: center; margin: 0 auto;
}

.form-header { text-align: center; margin-bottom: 35px; width: 100%; }
.form-header h2 { 
    font-size: 42px; margin: 0; color: var(--text-white); font-weight: 900; 
    letter-spacing: -1px; text-shadow: 0 0 30px rgba(0,0,0,0.8);
}
.form-header span { 
    background: -webkit-linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(157, 0, 255, 0.5));
}

.modern-form { width: 100%; display: flex; flex-direction: column; align-items: center; }

.modern-form .input-group { 
    margin-bottom: 20px; position: relative; width: 100%; 
    display: flex; justify-content: center; 
}

.modern-form i {
    position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
    color: var(--text-grey); font-size: 16px; z-index: 2; pointer-events: none;
}

.modern-form input, .modern-form select {
    width: 100%; max-width: 100%;
    background: rgba(0, 0, 0, 0.6); 
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px; 
    padding: 15px 45px;
    text-align: center; font-size: 15px; color: white;
    transition: all 0.3s ease; backdrop-filter: blur(5px);
}

.modern-form input:focus {
    background: rgba(0, 0, 0, 0.9); border-color: var(--neon-blue);
    transform: scale(1.02); box-shadow: 0 0 20px rgba(0, 247, 255, 0.2);
}
.modern-form input:focus + i { color: var(--neon-blue); }

.dual-inputs { display: flex; gap: 15px; width: 100%; }
.dual-inputs .input-group { width: 50%; }

.form-footer {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; color: rgba(255, 255, 255, 0.7); margin-bottom: 20px; padding: 0 15px; 
}
.form-footer label { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.form-footer input[type="checkbox"] {
    width: 14px; height: 14px; accent-color: var(--neon-blue); margin: 0; padding: 0;
    background: transparent; border: 1px solid white;
}
.form-footer a { color: var(--text-white); transition: 0.3s; }
.form-footer a:hover { color: var(--neon-blue); }

.btn-submit {
    width: 100%; padding: 16px; border-radius: 50px; border: none;
    font-size: 15px; font-weight: bold; cursor: pointer; margin-top: 5px;
    letter-spacing: 1px; text-transform: uppercase;
    background: linear-gradient(90deg, var(--neon-purple), #6a00ff);
    color: white; transition: 0.3s; box-shadow: 0 0 25px rgba(157, 0, 255, 0.4);
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(157, 0, 255, 0.6); }
.btn-submit.blue { background: linear-gradient(90deg, #007bff, var(--neon-blue)); box-shadow: 0 0 25px rgba(0, 247, 255, 0.4); }

.switch-page { text-align: center; margin-top: 30px; color: rgba(255,255,255,0.6); font-size: 13px; width: 100%; }
.highlight-link { color: var(--neon-blue); font-weight: bold; margin-left: 5px; }

.profile-header {
    position: relative; margin-bottom: 30px;
    background-color: var(--bg-card); border-radius: 0 0 20px 20px; padding-bottom: 20px;
}

.profile-cover { height: 220px; width: 100%; position: relative; }

.edit-cover-btn {
    position: absolute; top: 20px; right: 20px;
    background: rgba(0, 0, 0, 0.4); color: white;
    padding: 10px 15px; border-radius: 50px;
    cursor: pointer; font-size: 13px; font-weight: bold;
    display: flex; align-items: center; gap: 8px;
    transition: 0.3s; backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2); z-index: 10;
}
.edit-cover-btn:hover { background: white; color: black; transform: scale(1.05); }

.profile-info-bar {
    position: relative; margin-top: -60px; padding: 0 40px;
    display: flex; align-items: flex-end; gap: 30px; z-index: 5;
}

.profile-avatar-wrapper {
    position: relative; width: 140px; height: 140px;
    border-radius: 50%; padding: 4px; background: var(--bg-card);
}
.profile-avatar {
    width: 100%; height: 100%; object-fit: cover;
    border-radius: 50%; border: 2px solid rgba(255,255,255,0.1);
}

.upload-icon {
    position: absolute; bottom: 5px; right: 5px;
    background: var(--neon-blue); color: #000;
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: 0.3s; border: 3px solid var(--bg-card);
}
.upload-icon:hover { transform: scale(1.1); background: #fff; }

.profile-text { flex-grow: 1; margin-bottom: 10px; }
.profile-text h1 { margin: 0; font-size: 32px; color: var(--text-white); text-shadow: 0 0 10px rgba(0,0,0,0.5); }
.profile-text p { margin: 5px 0; color: var(--neon-blue); font-weight: bold; }
.profile-text small { color: var(--text-grey); }

.profile-stats { display: flex; gap: 20px; margin-bottom: 20px; }
.stat-box {
    text-align: center; background: rgba(255,255,255,0.05);
    padding: 10px 20px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}
.stat-box span { display: block; font-size: 20px; font-weight: bold; color: var(--text-white); }
.stat-box small { font-size: 12px; color: var(--text-grey); }

.profile-tabs {
    display: flex; gap: 15px; padding: 0 40px; margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.tab-link {
    padding: 15px 20px; color: var(--text-grey); font-weight: bold;
    position: relative; transition: 0.3s;
}
.tab-link:hover { color: var(--text-white); }
.tab-link.active { color: var(--neon-purple); }
.tab-link.active::after {
    content: ''; position: absolute; bottom: -1px; left: 0;
    width: 100%; height: 3px;
    background: var(--neon-purple); box-shadow: 0 0 10px var(--neon-purple);
}

.masonry-grid { padding: 0 40px; column-count: 4; column-gap: 20px; }
.masonry-item {
    break-inside: avoid; margin-bottom: 20px;
    background: var(--bg-card); border-radius: 15px;
    overflow: hidden; border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}
.masonry-item:hover {
    transform: translateY(-5px); box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border-color: var(--neon-blue);
}

.review-card { padding: 20px; }
.review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.game-thumb { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; }
.review-header span { font-weight: bold; color: var(--text-white); font-size: 14px; flex-grow: 1; }
.review-header .score { 
    width: 30px; height: 30px; border-radius: 50%; background: #333; 
    display: flex; align-items: center; justify-content: center; font-weight: bold; 
}
.score.good { background: var(--neon-blue); color: #000; }
.review-text { font-size: 14px; color: #ccc; font-style: italic; line-height: 1.5; }

@media (max-width: 1000px) { .masonry-grid { column-count: 3; } }
@media (max-width: 768px) { 
    .masonry-grid { column-count: 2; } 
    .profile-info-bar { flex-direction: column; align-items: center; text-align: center; margin-top: -50px; }
    .profile-cover { height: 180px; }
}
@media (max-width: 500px) { .masonry-grid { column-count: 1; } }

.settings-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 0 20px;
}

.page-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.page-title span { color: var(--neon-blue); }

.settings-section {
    margin-bottom: 40px;
}

.settings-section h3 {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 3px solid var(--neon-purple);
    padding-left: 15px;
}

.settings-section h3 i { color: var(--text-grey); }

.settings-form .input-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.settings-form label {
    font-size: 13px;
    color: var(--text-grey);
    margin-bottom: 8px;
    margin-left: 10px;
    font-weight: bold;
}

.settings-form input, .settings-form textarea {
    width: 100%;
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 15px;
    color: white;
    font-size: 14px;
    transition: 0.3s;
}

.settings-form textarea { resize: none; }

.settings-form input:focus, .settings-form textarea:focus {
    border-color: var(--neon-blue);
    background: rgba(20, 20, 30, 0.9);
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.1);
}

.neon-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    margin: 40px 0;
}

.settings-form button {
    width: 100%;
    margin-top: 10px;
}

.settings-container {
    max-width: 650px;
    margin: 40px auto;
    padding: 0 20px 60px 20px;
}

.page-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}
.page-title span { 
    color: var(--neon-blue);
    text-shadow: 0 0 15px rgba(0, 247, 255, 0.4); 
}

.settings-card {
    background: linear-gradient(145deg, rgba(20, 20, 30, 0.6), rgba(10, 10, 20, 0.9));
    
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    border: 1px solid rgba(255, 255, 255, 0.06);
    
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.settings-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.1);
}

.card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.card-header h3 {
    margin: 0;
    font-size: 18px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.card-header i { 
    color: var(--neon-purple); 
    filter: drop-shadow(0 0 5px rgba(157, 0, 255, 0.4));
}

.settings-form .input-group {
    margin-bottom: 20px;
}

.settings-form label {
    display: block;
    text-align: left;
    font-size: 12px;
    color: var(--text-grey);
    margin-bottom: 8px;
    margin-left: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.settings-form input, 
.settings-form select {
    width: 100%;
    background: rgba(0, 0, 0, 0.4) !important; 
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 15px 20px;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.settings-form input:focus, 
.settings-form select:focus {
    background: rgba(0, 0, 0, 0.8) !important;
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.15);
    outline: none;
}

.settings-form select option {
    background: #000;
    color: white;
}

.account-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.btn-action {
    flex: 1;
    padding: 15px;
    border-radius: 50px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.switch-account {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-grey);
    border: 1px solid rgba(255,255,255,0.1);
}
.switch-account:hover {
    background: var(--text-white);
    color: black;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.delete-account {
    background: rgba(255, 0, 0, 0.05);
    color: var(--neon-red);
    border: 1px solid rgba(255, 0, 0, 0.2);
}
.delete-account:hover {
    background: var(--neon-red);
    color: white;
    box-shadow: 0 0 25px rgba(255, 50, 50, 0.5);
}

.danger-zone {
    border: 1px solid rgba(255, 0, 0, 0.15);
    background: linear-gradient(145deg, rgba(30, 10, 10, 0.6), rgba(20, 5, 5, 0.9));
}
.danger-zone .card-header {
    border-bottom-color: rgba(255, 0, 0, 0.1);
}
.danger-zone .card-header i { color: var(--neon-red); filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.5)); }

@media (max-width: 600px) {
    .account-actions { flex-direction: column; }
}
.profile-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    text-align: left !important;
    width: 100%;
}

.profile-text h1 {
    text-align: left;
    margin-left: 0;
}

.bio-text { 
    color: #ccc; 
    font-size: 14px; 
    margin-top: 15px;
    max-width: 550px;       
    line-height: 1.5; 
    white-space: pre-wrap;
    
    /* Hizalama */
    text-align: left !important;
    align-self: flex-start !important;
    margin-left: 0 !important;
}

@media (max-width: 768px) {
    .profile-info-bar { flex-direction: column; align-items: center; }
    .profile-text { align-items: center !important; text-align: center !important; }
    .bio-text { text-align: center !important; align-self: center !important; }
}


.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    align-items: stretch;
}

.game-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.game-cover-wrapper {
    position: relative;
    height: 320px;
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.game-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.game-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    text-align: left;
}

.game-info h3 {
    margin: 0;
    font-size: 15px;
    color: var(--text-white);
    height: 40px;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.game-info p {
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-grey);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 8px;
}

.admin-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
}


.top-rated-slider {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 20px;
    padding: 10px 5px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.top-rated-slider .top-rated-card {
    flex: 0 0 220px !important;
    width: 220px !important;
    height: 310px !important;
}

.top-rated-slider::-webkit-scrollbar {
    height: 6px;
}
.top-rated-slider::-webkit-scrollbar-thumb {
    background: var(--neon-purple);
    border-radius: 10px;
}
.top-rated-slider::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}