/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --midnight-blue: #1B1F3A;
    --nebula-purple: #5C4A72;
    --cosmic-gold: #E4A663;
    --mystic-cyan: #00FFFF;
    --starlight-white: #FFFFFF;
    --cosmic-black: #0A0D1C;
    --relic-glow: rgba(228, 166, 99, 0.3);
    --cyan-glow: rgba(0, 255, 255, 0.2);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-body);
    background: var(--midnight-blue);
    color: var(--starlight-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Starfield Background Animation */
.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(135deg, var(--midnight-blue) 0%, var(--nebula-purple) 50%, var(--cosmic-black) 100%);
}

.starfield::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 40px 70px, white, transparent),
        radial-gradient(1px 1px at 90px 40px, white, transparent),
        radial-gradient(1px 1px at 130px 80px, white, transparent),
        radial-gradient(2px 2px at 160px 30px, white, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: stars 20s linear infinite;
}

.starfield::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 10px 10px, var(--mystic-cyan), transparent),
        radial-gradient(1px 1px at 50px 50px, var(--cosmic-gold), transparent),
        radial-gradient(1px 1px at 150px 150px, var(--mystic-cyan), transparent);
    background-repeat: repeat;
    background-size: 300px 200px;
    animation: stars 30s linear infinite reverse;
}

@keyframes stars {
    from { transform: translateX(0); }
    to { transform: translateX(-200px); }
}

/* Floating Relics Animation */
.floating-relics {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.floating-relics::before,
.floating-relics::after {
    content: '⬟';
    position: absolute;
    font-size: 2rem;
    color: var(--cosmic-gold);
    opacity: 0.1;
    animation: float 15s ease-in-out infinite;
}

.floating-relics::before {
    top: 20%;
    left: 10%;
    animation-delay: -5s;
}

.floating-relics::after {
    top: 60%;
    right: 15%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(27, 31, 58, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(228, 166, 99, 0.2);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--starlight-white);
}

.logo-icon {
    font-size: 2rem;
    color: var(--cosmic-gold);
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--cosmic-gold), var(--mystic-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes pulse-glow {
    from { text-shadow: 0 0 5px var(--cosmic-gold); }
    to { text-shadow: 0 0 20px var(--cosmic-gold), 0 0 30px var(--cosmic-gold); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--starlight-white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cosmic-gold), var(--mystic-cyan));
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--cosmic-gold);
    text-shadow: 0 0 10px var(--relic-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--cosmic-gold);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 5%;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--cosmic-gold), var(--mystic-cyan), var(--cosmic-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, var(--cosmic-gold), var(--mystic-cyan));
    color: var(--cosmic-black);
    box-shadow: 0 0 20px var(--relic-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--starlight-white);
    border: 2px solid var(--mystic-cyan);
    box-shadow: 0 0 20px var(--cyan-glow);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(228, 166, 99, 0.4);
}

.hero-relic {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.relic-glow {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--relic-glow) 0%, transparent 70%);
    animation: relic-pulse 3s ease-in-out infinite;
}

.relic-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--cosmic-gold);
    animation: relic-rotate 10s linear infinite;
}

@keyframes relic-pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}

@keyframes relic-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* About Section */
.about {
    padding: 5rem 0;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-relic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.artifact-pulse {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--relic-glow) 0%, transparent 70%);
    animation: artifact-pulse 2s ease-in-out infinite;
}

.artifact-icon {
    position: absolute;
    font-size: 3rem;
    color: var(--cosmic-gold);
    animation: artifact-float 4s ease-in-out infinite;
}

@keyframes artifact-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--cosmic-gold);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.feature-icon {
    color: var(--mystic-cyan);
    font-size: 1.5rem;
}

/* Games Section */
.games {
    padding: 5rem 0;
    background: rgba(92, 74, 114, 0.1);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--cosmic-gold), var(--mystic-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.game-card {
    background: rgba(27, 31, 58, 0.8);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(228, 166, 99, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, var(--relic-glow), transparent);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover::before {
    opacity: 1;
    animation: relic-shine 1s linear;
}

@keyframes relic-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, var(--relic-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .card-glow {
    opacity: 0.5;
}

.game-card:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(228, 166, 99, 0.3);
    border-color: var(--cosmic-gold);
}

.card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.card-content img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--cosmic-gold);
}

.card-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.play-btn {
    background: linear-gradient(45deg, var(--mystic-cyan), var(--cosmic-gold));
    color: var(--cosmic-black);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.play-btn:hover::before {
    left: 100%;
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--cyan-glow);
}

.card-runes {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 1.2rem;
    color: var(--mystic-cyan);
    opacity: 0.5;
    z-index: 1;
}

/* Game Modal */
.game-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    height: 80%;
    background: var(--midnight-blue);
    border-radius: 15px;
    border: 2px solid var(--cosmic-gold);
    box-shadow: 0 0 50px var(--relic-glow);
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--cosmic-gold);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--mystic-cyan);
    text-shadow: 0 0 10px var(--cyan-glow);
}

.modal-header {
    padding: 1rem 2rem;
    background: rgba(92, 74, 114, 0.3);
    border-bottom: 1px solid var(--cosmic-gold);
}

.modal-header h3 {
    font-family: var(--font-heading);
    color: var(--cosmic-gold);
    margin: 0;
}

.modal-body {
    height: calc(100% - 80px);
}

.modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Disclaimer Section */
.disclaimer {
    padding: 3rem 0;
    background: rgba(10, 13, 28, 0.5);
}

.disclaimer-tablet {
    background: rgba(27, 31, 58, 0.8);
    border: 2px solid var(--cosmic-gold);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 0 30px var(--relic-glow);
}

.disclaimer-tablet::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--cosmic-gold), var(--mystic-cyan), var(--cosmic-gold));
    border-radius: 15px;
    z-index: -1;
    animation: border-glow 3s ease-in-out infinite;
}

@keyframes border-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.disclaimer-tablet h3 {
    font-family: var(--font-heading);
    color: var(--cosmic-gold);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--cosmic-black);
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cosmic-gold), transparent);
}

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

.footer-section h4 {
    font-family: var(--font-heading);
    color: var(--cosmic-gold);
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--mystic-cyan);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(228, 166, 99, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* Page Content Styles */
.page-content {
    padding-top: 100px;
    min-height: 100vh;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--cosmic-gold), var(--mystic-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Page Styles */
.contact-hero {
    padding: 3rem 0;
    text-align: center;
}

.contact-form-section {
    padding: 3rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--cosmic-gold);
}

.contact-relic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.relic-pulse {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--relic-glow) 0%, transparent 70%);
    animation: relic-pulse 2s ease-in-out infinite;
}

.relic-symbol {
    position: absolute;
    font-size: 2rem;
    color: var(--cosmic-gold);
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.method-icon {
    font-size: 1.5rem;
    color: var(--mystic-cyan);
}

.contact-form-container {
    background: rgba(27, 31, 58, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--cosmic-gold);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--cosmic-gold);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid rgba(228, 166, 99, 0.3);
    border-radius: 8px;
    background: rgba(27, 31, 58, 0.5);
    color: var(--starlight-white);
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cosmic-gold);
    box-shadow: 0 0 10px var(--relic-glow);
}

/* Legal Content Styles */
.legal-hero {
    padding: 3rem 0;
    text-align: center;
}

.legal-content {
    padding: 3rem 0;
}

.holographic-scroll,
.ancient-book {
    background: rgba(27, 31, 58, 0.9);
    border: 2px solid var(--cosmic-gold);
    border-radius: 15px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 0 30px var(--relic-glow);
}

.holographic-scroll::before,
.ancient-book::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--cosmic-gold), var(--mystic-cyan));
    border-radius: 15px;
    z-index: -1;
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.scroll-content h2,
.book-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--cosmic-gold);
    text-align: center;
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

.policy-section,
.terms-section {
    margin-bottom: 2rem;
}

.policy-section h3,
.terms-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--mystic-cyan);
    margin-bottom: 1rem;
}

.policy-section h4,
.terms-section h4 {
    color: var(--cosmic-gold);
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.policy-section ul,
.terms-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section li,
.terms-section li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.policy-section a,
.terms-section a {
    color: var(--mystic-cyan);
    text-decoration: none;
}

.policy-section a:hover,
.terms-section a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-relic {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(27, 31, 58, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modal-content {
        width: 95%;
        height: 85%;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .holographic-scroll,
    .ancient-book {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1rem 3%;
    }
    
    .container {
        padding: 0 3%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .game-card {
        padding: 1rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cosmic-black);
}

::-webkit-scrollbar-thumb {
    background: var(--cosmic-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--mystic-cyan);
}