:root {
    --primary: #3c9dff;
    --primary-dark: #2b7fd9;
    --primary-light: #5fb0ff;
    --secondary: #00d4ff;
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --dark-lighter: #2a2a2a;
    --text: #ffffff;
    --text-muted: #b0b0b0;
    --accent: #00d4ff;
    --shadow: rgba(60, 157, 255, 0.3);
    --gradient: linear-gradient(135deg, #3c9dff 0%, #00d4ff 100%);
}

/* Page specific color overrides */
body.page-features {
    --primary: #7a3bff;
    --primary-dark: #602be0;
    --primary-light: #9b5fff;
    --secondary: #ff4dcf;
    --accent: #ff4dcf;
    --shadow: rgba(122, 59, 255, 0.3);
    --gradient: linear-gradient(135deg, #7a3bff 0%, #ff4dcf 100%);
}

body.page-donate {
    --primary: #00c853;
    --primary-dark: #00a043;
    --primary-light: #33d66a;
    --secondary: #00acc1;
    --accent: #00acc1;
    --shadow: rgba(0, 200, 83, 0.3);
    --gradient: linear-gradient(135deg, #00c853 0%, #00acc1 100%);
}

body.page-rules {
    --primary: #ff6f00;
    --primary-dark: #e65100;
    --primary-light: #ff8f00;
    --secondary: #ffd600;
    --accent: #ffd600;
    --shadow: rgba(255, 111, 0, 0.3);
    --gradient: linear-gradient(135deg, #ff6f00 0%, #ffd600 100%);
}

body.page-gallery {
    --primary: #d32f2f;
    --primary-dark: #b71c1c;
    --primary-light: #ef5350;
    --secondary: #e57373;
    --accent: #e57373;
    --shadow: rgba(211, 47, 47, 0.3);
    --gradient: linear-gradient(135deg, #d32f2f 0%, #e57373 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 100%);
}

.bolt-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(90deg, rgba(60, 157, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

/* Default home uses blue, so no override needed */

body.page-features .bolt-lines {
    background-image:
        linear-gradient(90deg, rgba(122, 59, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 77, 207, 0.03) 1px, transparent 1px);
}

body.page-donate .bolt-lines {
    background-image:
        linear-gradient(90deg, rgba(0, 200, 83, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(0, 172, 193, 0.03) 1px, transparent 1px);
}

body.page-rules .bolt-lines {
    background-image:
        linear-gradient(90deg, rgba(255, 111, 0, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 214, 0, 0.03) 1px, transparent 1px);
}

body.page-gallery .bolt-lines {
    background-image:
        linear-gradient(90deg, rgba(211, 47, 47, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(229, 115, 115, 0.03) 1px, transparent 1px);
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow:
        100px 200px var(--primary),
        200px 400px var(--secondary),
        300px 100px var(--primary),
        400px 500px var(--secondary),
        500px 300px var(--primary),
        700px 150px var(--secondary),
        800px 450px var(--primary),
        900px 250px var(--secondary),
        1100px 350px var(--primary),
        1300px 200px var(--secondary);
    animation: particleFloat 20s linear infinite;
}

.particles::after {
    animation-delay: -10s;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(60, 157, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 5px 30px var(--shadow);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Kanit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--shadow));
    transition: all 0.3s ease;
    border-radius: 8px;
}

.logo:hover {
    transform: scale(1.05);
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 20px var(--shadow));
    transform: rotate(-5deg);
}

.highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

.nav-links a:not(.btn-nav):hover {
    color: var(--primary);
}

.btn-nav {
    background: var(--gradient);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--shadow);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    color: var(--primary);
}

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

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

.hero-title {
    font-family: 'Kanit', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 30px var(--shadow);
}

.text-reveal {
    display: block;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient);
    color: var(--dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-item .material-icons {
    font-size: 3rem;
    color: var(--primary);
    filter: drop-shadow(0 0 10px var(--shadow));
}

.stat-number {
    font-family: 'Kanit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator .material-icons {
    font-size: 3rem;
    color: var(--primary);
    animation: bounce 2s ease-in-out infinite;
}

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

/* Steps Section */
.steps-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon {
    font-size: 3rem;
    color: var(--primary);
    display: block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: 'Kanit', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.quality-badge {
    display: inline-block;
    background: var(--primary);
    color: #000000;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 1rem;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px var(--shadow);
    font-family: 'Kanit', sans-serif;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.step-card {
    background: var(--dark-light);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(60, 157, 255, 0.1);
    position: relative;
    transition: all 0.4s ease;
    text-align: center;
}

/* Default home uses blue */

body.page-features .step-card {
    border-color: rgba(122, 59, 255, 0.1);
}

body.page-features .step-card:hover {
    box-shadow: 0 20px 60px rgba(122, 59, 255, 0.3), 0 0 40px rgba(255, 77, 207, 0.2);
    background: linear-gradient(135deg, var(--dark-light) 0%, rgba(122, 59, 255, 0.05) 100%);
}

body.page-donate .step-card {
    border-color: rgba(0, 200, 83, 0.1);
}

body.page-donate .step-card:hover {
    box-shadow: 0 20px 60px rgba(0, 200, 83, 0.3), 0 0 40px rgba(0, 172, 193, 0.2);
    background: linear-gradient(135deg, var(--dark-light) 0%, rgba(0, 200, 83, 0.05) 100%);
}

body.page-rules .step-card {
    border-color: rgba(255, 111, 0, 0.1);
}

body.page-rules .step-card:hover {
    box-shadow: 0 20px 60px rgba(255, 111, 0, 0.3), 0 0 40px rgba(255, 214, 0, 0.2);
    background: linear-gradient(135deg, var(--dark-light) 0%, rgba(255, 111, 0, 0.05) 100%);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px var(--shadow), 0 0 40px rgba(0, 212, 255, 0.2);
    background: linear-gradient(135deg, var(--dark-light) 0%, rgba(60, 157, 255, 0.05) 100%);
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-family: 'Kanit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(60, 157, 255, 0.1);
}

body.page-features .step-number {
    color: rgba(122, 59, 255, 0.1);
}

body.page-donate .step-number {
    color: rgba(0, 200, 83, 0.1);
}

body.page-rules .step-number {
    color: rgba(255, 111, 0, 0.1);
}

body.page-gallery .step-number {
    color: rgba(211, 47, 47, 0.1);
}

.step-icon {
    font-size: 4rem;
    color: var(--primary);
    display: block;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px var(--shadow));
}

.step-card h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.step-arrow {
    color: var(--primary);
}

.step-arrow .material-icons {
    font-size: 3rem;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(10px); opacity: 1; }
}

/* Products Section */
.products-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
    background: rgba(26, 26, 26, 0.5);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--dark-light);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(60, 157, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

body.page-features .product-card {
    border-color: rgba(122, 59, 255, 0.1);
}

body.page-features .product-card:hover {
    box-shadow: 0 25px 70px rgba(122, 59, 255, 0.3), 0 0 50px rgba(255, 77, 207, 0.2);
    background: linear-gradient(135deg, var(--dark-light) 0%, rgba(122, 59, 255, 0.05) 100%);
}

body.page-donate .product-card {
    border-color: rgba(0, 200, 83, 0.1);
}

body.page-donate .product-card:hover {
    box-shadow: 0 25px 70px rgba(0, 200, 83, 0.3), 0 0 50px rgba(0, 172, 193, 0.2);
    background: linear-gradient(135deg, var(--dark-light) 0%, rgba(0, 200, 83, 0.05) 100%);
}

body.page-rules .product-card {
    border-color: rgba(255, 111, 0, 0.1);
}

body.page-rules .product-card:hover {
    box-shadow: 0 25px 70px rgba(255, 111, 0, 0.3), 0 0 50px rgba(255, 214, 0, 0.2);
    background: linear-gradient(135deg, var(--dark-light) 0%, rgba(255, 111, 0, 0.05) 100%);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 25px 70px var(--shadow), 0 0 50px rgba(0, 212, 255, 0.2);
    background: linear-gradient(135deg, var(--dark-light) 0%, rgba(60, 157, 255, 0.05) 100%);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.product-icon .material-icons {
    font-size: 3rem;
    color: var(--dark);
}

.product-card h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    width: 100%;
}

.product-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
    width: 100%;
    flex-grow: 1;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
    width: 100%;
    text-align: left;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.7rem;
    color: var(--text-muted);
}

.product-features .material-icons {
    color: var(--primary);
    font-size: 1.2rem;
}

.btn-product {
    width: 100%;
    justify-content: center;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-product:hover {
    background: var(--gradient);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--dark-light);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(60, 157, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

body.page-features .feature-card {
    border-color: rgba(122, 59, 255, 0.1);
}

body.page-features .feature-card:hover {
    box-shadow: 0 20px 60px rgba(122, 59, 255, 0.3), 0 0 40px rgba(255, 77, 207, 0.2);
    background: linear-gradient(135deg, var(--dark-light) 0%, rgba(122, 59, 255, 0.05) 100%);
}

body.page-donate .feature-card {
    border-color: rgba(0, 200, 83, 0.1);
}

body.page-donate .feature-card:hover {
    box-shadow: 0 20px 60px rgba(0, 200, 83, 0.3), 0 0 40px rgba(0, 172, 193, 0.2);
    background: linear-gradient(135deg, var(--dark-light) 0%, rgba(0, 200, 83, 0.05) 100%);
}

body.page-rules .feature-card {
    border-color: rgba(255, 111, 0, 0.1);
}

body.page-rules .feature-card:hover {
    box-shadow: 0 20px 60px rgba(255, 111, 0, 0.3), 0 0 40px rgba(255, 214, 0, 0.2);
    background: linear-gradient(135deg, var(--dark-light) 0%, rgba(255, 111, 0, 0.05) 100%);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px var(--shadow), 0 0 40px rgba(0, 212, 255, 0.2);
    background: linear-gradient(135deg, var(--dark-light) 0%, rgba(60, 157, 255, 0.05) 100%);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon .material-icons {
    font-size: 2.5rem;
    color: var(--dark);
}

.feature-card h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.feature-card h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Discord Section */
.discord-section {
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

.discord-banner {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    transition: all 0.4s ease;
}

.discord-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(88, 101, 242, 0.4);
}

.discord-icon {
    width: 80px;
    height: 80px;
}

.discord-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.discord-content h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.discord-content p {
    color: rgba(255, 255, 255, 0.9);
}

.btn-discord {
    background: white;
    color: #5865F2;
    flex-shrink: 0;
}

.btn-discord:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: var(--dark-light);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(60, 157, 255, 0.1);
    position: relative;
    z-index: 2;
}

body.page-features .footer {
    border-top-color: rgba(122, 59, 255, 0.1);
}

body.page-donate .footer {
    border-top-color: rgba(0, 200, 83, 0.1);
}

body.page-rules .footer {
    border-top-color: rgba(255, 111, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-column h4 {
    font-family: 'Kanit', sans-serif;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

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

.footer-column a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(60, 157, 255, 0.1);
    color: var(--text-muted);
}

body.page-features .footer-bottom {
    border-top-color: rgba(122, 59, 255, 0.1);
}

body.page-donate .footer-bottom {
    border-top-color: rgba(0, 200, 83, 0.1);
}

body.page-rules .footer-bottom {
    border-top-color: rgba(255, 111, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

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

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

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

    .hero-stats {
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

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

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

    .discord-banner {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--dark);
}
