/* ===========================
   Global Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0e27;
    --bg-darker: #05070f;
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --accent-cyan: #00d9ff;
    --accent-purple: #9d4edd;
    --accent-pink: #ff006e;
    --accent-green: #3fda78;
    --accent-yellow: #ffbe0b;
    --accent-orange: #fb5607;
    --border-color: #1a1f3a;
    --shadow: 0 10px 30px rgba(0, 217, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===========================
   Navigation Bar
   =========================== */
.navbar {
    background-color: var(--bg-darker);
    border-bottom: 2px solid var(--accent-cyan);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.logo {
    height: 50px;
    width: auto;
}

.company-name {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-cyan);
    background-color: rgba(0, 217, 255, 0.1);
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    background-color: rgba(0, 217, 255, 0.1);
    padding: 0.5rem;
    border-radius: 5px;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.lang-btn:hover,
.lang-btn.active {
    background-color: var(--accent-cyan);
    color: var(--bg-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.4rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--accent-cyan);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===========================
   Main Content
   =========================== */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 200px);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(157, 78, 221, 0.1), rgba(255, 0, 110, 0.1));
    border-radius: 15px;
    border: 1px solid var(--border-color);
    margin-bottom: 4rem;
    box-shadow: var(--shadow);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple), var(--accent-pink), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===========================
   Page Header
   =========================== */
.page-header {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(157, 78, 221, 0.05));
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.page-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

.policy-last-updated {
    font-size: 0.9rem;
    color: var(--accent-cyan);
    margin-top: 1rem;
}

/* ===========================
   Featured Games Section
   =========================== */
.featured-games {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-white);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.games-category {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--accent-yellow);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-yellow);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.game-card {
    background-color: rgba(26, 31, 58, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.05);
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.2);
}

.game-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(157, 78, 221, 0.1));
}

.game-image.game-icon-square {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-info {
    padding: 1.5rem;
}

.game-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-cyan);
}

.game-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ===========================
   Buttons
   =========================== */
.btn-play,
.btn-primary,
.btn-secondary,
.btn-coming-soon {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-play,
.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: var(--bg-dark);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.3);
}

.btn-play:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.5);
}

.btn-secondary {
    background-color: rgba(255, 0, 110, 0.2);
    color: var(--accent-pink);
    border: 2px solid var(--accent-pink);
}

.btn-secondary:hover {
    background-color: var(--accent-pink);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.btn-coming-soon {
    background-color: rgba(157, 78, 221, 0.2);
    color: var(--accent-purple);
    border: 2px solid var(--accent-purple);
    cursor: not-allowed;
    opacity: 0.7;
}

/* ===========================
   Game Detail Section
   =========================== */
.game-detail-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(157, 78, 221, 0.05));
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.game-detail-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .game-detail-container {
        grid-template-columns: 1fr;
    }
}

.game-detail-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
}

.game-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.game-detail-image .poster-image {
    width: 100%;
    height: auto;
    display: block;
}

.game-icon-display {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(157, 78, 221, 0.05));
    border-radius: 20px;
    border: 2px solid var(--border-color);
    padding: 10px;
}

.game-icon-display .app-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

.game-poster-display {
    width: 100%;
    margin-top: 1rem;
}

.game-poster-display .poster-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.game-poster-emo-diary {
    max-width: 350px;
    margin: 1rem auto 0;
}

.game-poster-emo-diary .poster-image {
    max-width: 100%;
}

.game-detail-content {
    padding: 1rem;
}

.game-detail-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-tagline {
    font-size: 1.1rem;
    color: var(--accent-pink);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.feature-title {
    font-size: 1.3rem;
    color: var(--accent-yellow);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.game-text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.features-list li {
    margin-bottom: 1rem;
    padding-left: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: rgba(0, 217, 255, 0.05);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.spec-item {
    text-align: center;
}

.spec-label {
    font-size: 0.85rem;
    color: var(--accent-cyan);
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.spec-value {
    font-size: 0.95rem;
    color: var(--text-light);
}

.game-modes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.mode-card {
    background-color: rgba(26, 31, 58, 0.6);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mode-card:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 5px 20px rgba(157, 78, 221, 0.2);
}

.mode-card h4 {
    color: var(--accent-purple);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.mode-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.game-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.coming-soon-banner {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), rgba(255, 0, 110, 0.2));
    border: 2px solid var(--accent-purple);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.coming-soon-banner h3 {
    color: var(--accent-purple);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.coming-soon-banner p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    margin: 4rem 0;
}

/* ===========================
   About Section
   =========================== */
.about-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(157, 78, 221, 0.05));
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.highlight-section {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(0, 217, 255, 0.1));
    border: 2px solid var(--accent-pink);
}

/* ===========================
   Timeline
   =========================== */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    margin-bottom: 3rem;
    padding-left: 3rem;
    position: relative;
}

.timeline-marker {
    position: absolute;
    left: -15px;
    top: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.timeline-marker::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    width: 2px;
    height: 30px;
    background: var(--accent-cyan);
    transform: translateX(-50%);
}

.timeline-item:last-child .timeline-marker::after {
    display: none;
}

.timeline-title {
    font-size: 1.3rem;
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
}

.timeline-content {
    padding: 1rem;
    background-color: rgba(26, 31, 58, 0.4);
    border-left: 3px solid var(--accent-cyan);
    border-radius: 5px;
}

/* ===========================
   Values Grid
   =========================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: rgba(26, 31, 58, 0.6);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.2rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(157, 78, 221, 0.1));
    border-radius: 15px;
    border: 2px solid var(--accent-cyan);
    margin: 3rem 0;
    box-shadow: var(--shadow);
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   Policy Content
   =========================== */
.policy-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.03), rgba(157, 78, 221, 0.03));
    border-radius: 15px;
    border: 1px solid var(--border-color);
    line-height: 1.9;
}

.policy-text h2 {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-cyan);
}

.policy-text h3 {
    font-size: 1.2rem;
    color: var(--accent-purple);
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.policy-text h4 {
    font-size: 1rem;
    color: var(--accent-yellow);
    margin-top: 1.2rem;
    margin-bottom: 0.8rem;
    padding-left: 1rem;
}

.policy-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.85;
    padding-left: 1rem;
    text-align: justify;
}

.policy-list {
    list-style: none;
    margin-bottom: 2rem;
    margin-left: 1rem;
    margin-top: 1rem;
}

.policy-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.75;
}

.policy-list li::before {
    content: '●';
    position: absolute;
    left: 0.5rem;
    color: var(--accent-cyan);
    font-weight: bold;
}

.policy-text a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.policy-text a:hover {
    color: var(--accent-pink);
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

/* ===========================
   Ads Section
   =========================== */
.ads-section {
    padding: 2rem;
    margin: 3rem 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(157, 78, 221, 0.05));
    border-radius: 15px;
    border: 1px dashed var(--border-color);
    text-align: center;
}

.ad-placeholder {
    background-color: rgba(26, 31, 58, 0.4);
    padding: 2rem;
    border-radius: 10px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--bg-darker);
    border-top: 2px solid var(--accent-cyan);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-pink);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .nav-container {
        gap: 1rem;
        padding: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        gap: 1rem;
        flex-basis: 100%;
        margin-top: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .logo-section {
        width: 100%;
        justify-content: center;
    }

    .nav-menu {
        flex-basis: 100%;
        flex-direction: column;
        align-items: center;
    }

    .language-switcher {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .main-content {
        padding: 1rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-header {
        padding: 2rem 1rem;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .page-subtitle {
        font-size: 0.95rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .game-card {
        margin: 0 auto;
        width: 100%;
    }

    .game-detail-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        width: 100%;
    }

    .game-buttons {
        flex-direction: column;
    }

    .game-buttons a {
        width: 100%;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-link {
        padding: 0.3rem 0.5rem;
        font-size: 0.85rem;
    }

    .company-name {
        font-size: 1.1rem;
    }

    .logo {
        height: 40px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .category-title {
        font-size: 1.3rem;
    }

    .game-title {
        font-size: 1.2rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .game-modes {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.game-card {
    animation: fadeIn 0.6s ease-out;
}

.value-card {
    animation: fadeIn 0.6s ease-out;
}

/* ===========================
   Scrollbar Styling
   =========================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-cyan);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
}

