/* ===================================
   CSS Variables & Design System
   =================================== */
:root {
    /* Gaming Color Palette - Purple Theme */
    --primary-color: #a78bfa;
    --primary-dark: #7c3aed;
    --primary-light: #c4b5fd;
    --secondary-color: #ff0055;
    --secondary-dark: #cc0044;
    --accent-color: #8b5cf6;
    --accent-glow: #8b5cf680;

    /* Dark Gaming Theme */
    --bg-primary: #0a0e1a;
    --bg-secondary: #0f1528;
    --bg-tertiary: #1a2038;
    --bg-card: #151d32;
    --bg-hover: #1f2842;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b8c5e0;
    --text-muted: #7a8aaa;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #ff0055 0%, #ff6b00 100%);
    --gradient-dark: linear-gradient(135deg, #1a2038 0%, #0f1528 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(10, 14, 26, 0) 0%, rgba(10, 14, 26, 0.8) 100%);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Typography */
    --font-heading: 'Press Start 2P', sans-serif;
    --font-body: 'Exo 2', sans-serif;

    /* Borders & Radius */
    --border-radius: 12px;
    --border-radius-sm: 6px;
    --border-radius-lg: 20px;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(167, 139, 250, 0.1);
    --shadow-md: 0 4px 20px rgba(167, 139, 250, 0.2);
    --shadow-lg: 0 8px 40px rgba(167, 139, 250, 0.3);
    --shadow-glow: 0 0 30px rgba(167, 139, 250, 0.4);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: clip;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

/* ===================================
   Tables (from Quill Editor)
   =================================== */
table {
    border-collapse: collapse;
    width: 100%;
    margin: 1rem 0;
}

table td,
table th {
    border: 1px solid rgba(167, 139, 250, 0.3);
    padding: 0.75rem;
    color: var(--text-primary);
}

table th {
    background: rgba(167, 139, 250, 0.1);
    font-weight: bold;
}

table tr:hover {
    background: rgba(167, 139, 250, 0.05);
}

/* ===================================
   Rich Text Content (Quill HTML)
   =================================== */
.product-features-html p {
    margin: 1em 0;
    line-height: 1.6;
}

.product-features-html ul,
.product-features-html ol {
    margin: 1em 0;
    padding-left: 2em;
    list-style-position: outside;
}

.product-features-html ul {
    list-style-type: disc;
}

.product-features-html ol {
    list-style-type: decimal;
}

.product-features-html ul li,
.product-features-html ol li {
    margin: 0.5em 0;
    line-height: 1.6;
    display: list-item;
}

.product-features-html strong {
    font-weight: bold;
}

.product-features-html em {
    font-style: italic;
}

.product-features-html u {
    text-decoration: underline;
}

.product-features-html s {
    text-decoration: line-through;
}

.product-features-html h1,
.product-features-html h2,
.product-features-html h3 {
    margin: 1.5em 0 0.5em 0;
    font-weight: bold;
}

.product-features-html h1 {
    font-size: 2em;
}

.product-features-html h2 {
    font-size: 1.5em;
}

.product-features-html h3 {
    font-size: 1.2em;
}

.product-features-html a {
    color: var(--primary-color);
    text-decoration: underline;
}

.product-features-html a:hover {
    color: var(--primary-light);
}

.product-features-html br {
    display: block;
    content: "";
    margin: 0.5em 0;
}

/* ===================================
   Typography
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.6;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   Utility Classes
   =================================== */
.container {
    max-width: 1800px;
    width: 90%;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Adjust container width for different screen sizes */
@media (min-width: 1920px) {
    .container {
        width: 85%;
        max-width: 2000px;
    }
}

@media (max-width: 1400px) {
    .container {
        width: 92%;
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 1rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    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.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

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

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: #9171f8;
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
    box-shadow: var(--shadow-md);
}

.btn-full {
    width: 100%;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.75rem;
    cursor: pointer;
}

.logo-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

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

.nav-link {
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

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

.nav-link:hover {
    color: var(--primary-color);
}

/* Cart Link */
.cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.cart-icon {
    font-size: 1.2rem;
}

.cart-count {
    background: var(--primary-color);
    color: var(--bg-primary);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.cart-count:empty,
.cart-count[data-count="0"] {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition-base);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(10, 14, 26, 0.5), rgba(10, 14, 26, 0.7)),
        url('../images/projects/root.jpg') center/cover no-repeat,
        radial-gradient(circle at 50% 50%, #1a2038 0%, #0a0e1a 100%);
    background-size: cover;
    background-position: center center;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-md);
    margin-top: 150px;
}

.hero-title {
    font-size: clamp(1.2rem, 3vw, 2.2rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(196, 181, 253, 0.6);
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: max-content;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, var(--primary-color) 0%, transparent 100%);
}

/* ===================================
   Section Headers
   =================================== */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about .section-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: normal;
    margin-top: 0;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

#rotatingWord {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   About Section (Portfolio Preview)
   =================================== */
.about {
    background: var(--bg-secondary);
}

.about .container {
    max-width: 100%;
    width: 98%;
}

.portfolio-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.portfolio-preview-item {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: var(--border-radius);
    border: 1px solid rgba(167, 139, 250, 0.1);
    transition: all var(--transition-base);
    cursor: pointer;
}

.portfolio-preview-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.portfolio-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.portfolio-preview-item:hover img {
    transform: scale(1.1);
}

.portfolio-preview-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.portfolio-cta {
    text-align: center;
    margin-top: 3rem;
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* ===================================
   Projects Section
   =================================== */
.projects {
    background: var(--bg-primary);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 2rem;
    background: var(--bg-card);
    border: 2px solid transparent;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-base);
}

.filter-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    min-height: 400px;
}

.loading-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 4rem;
    gap: 1rem;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--bg-tertiary);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.project-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(167, 139, 250, 0.1);
    transition: all var(--transition-base);
    cursor: pointer;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.project-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    opacity: 0;
    transition: opacity var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-icon {
    font-size: 3rem;
    color: var(--primary-color);
    transform: scale(0);
    transition: transform var(--transition-base);
}

.project-card:hover .view-icon {
    transform: scale(1);
}

.project-info {
    padding: 1.5rem;
}

.project-category {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(167, 139, 250, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.project-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.project-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================
   Store Preview Section
   =================================== */
.store-preview {
    background: var(--bg-primary);
    padding: 4rem 0;
}

.store-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-preview-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(167, 139, 250, 0.1);
    transition: all var(--transition-base);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-preview-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.product-preview-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background-color: var(--bg-tertiary);
    flex-shrink: 0;
    overflow: hidden;
}

.product-preview-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-preview-content {
    padding: 0.75rem 1rem 0.75rem;
}

.product-preview-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(167, 139, 250, 0.1);
    color: var(--primary-color);
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.product-preview-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.product-preview-price-badge {
    position: absolute;
    bottom: 0.6rem;
    right: 0.6rem;
    padding: 0.2rem 0.5rem;
    background: rgba(10, 14, 26, 0.72);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(167, 139, 250, 0.25);
    border-radius: var(--border-radius-sm);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
}

.btn-xs {
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
}

.store-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info>p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.method-icon {
    font-size: 2rem;
}

.method-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.method-details a {
    color: var(--text-secondary);
}

.method-details a:hover {
    color: var(--primary-color);
}

.social-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.contact-form {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(167, 139, 250, 0.1);
}

/* Discord card */
.discord-card {
    background: #5865F2;
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-self: start;
}

.discord-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.discord-logo {
    width: 32px;
    height: 32px;
    color: #fff;
    flex-shrink: 0;
}

.discord-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0;
}

.discord-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.discord-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}

.discord-stat-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #23a55a;
    flex-shrink: 0;
}

.discord-card-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.discord-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #93c5fd, #60a5fa);
    color: #0f172a;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.2s, opacity 0.2s;
}

.discord-join-btn:hover {
    opacity: 0.88;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 2px solid transparent;
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--bg-secondary);
    padding: 1.5rem 0 var(--spacing-md);
    border-top: 1px solid rgba(167, 139, 250, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-column ul {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-column a {
    color: var(--text-secondary);
    transition: var(--transition-base);
}

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

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(167, 139, 250, 0.1);
    text-align: center;
    color: var(--text-muted);
}

.footer-bottom p {
    margin: 0.5rem 0;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 14, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .hero-title {
        top: 32% !important;
        font-size: clamp(0.8rem, 3.5vw, 1.5rem) !important;
        width: 95% !important;
        max-width: 95vw;
    }

    .hero {
        background:
            linear-gradient(rgba(10, 14, 26, 0.5), rgba(10, 14, 26, 0.7)),
            url('../images/projects/root.jpg') no-repeat !important;
        background-size: cover !important;
        background-position: center center !important;
        background-attachment: scroll !important;
    }

    .hero-content {
        margin-top: 120px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

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

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

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

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

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

@media (max-width: 480px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    section {
        padding: var(--spacing-lg) 0;
    }

    .hero-title {
        font-size: 0.9rem;
        top: 30% !important;
        width: 90% !important;
        max-width: 90vw;
    }

    .hero {
        background:
            linear-gradient(rgba(10, 14, 26, 0.55), rgba(10, 14, 26, 0.75)),
            url('../images/projects/root.jpg') no-repeat !important;
        background-size: cover !important;
        background-position: center 30% !important;
        background-attachment: scroll !important;
        min-height: 100vh !important;
    }

    .hero-content {
        margin-top: 100px;
    }

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

/* ===================================
   GLightbox Custom Styling
   =================================== */
.glightbox-clean .gslide-description {
    background: var(--bg-card);
    color: var(--text-primary);
}

.glightbox-clean .gdesc-inner h4 {
    color: var(--primary-color);
}

/* ===================================
   Animations & Effects
   =================================== */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}