:root {
    /* Colors */
    --primary-color: #00F7FF;
    --secondary-color: #FF0077;
    --background-color: #1A0F2B;
    --footer-bg-color: #0C0715;
    --button-color: #00F7FF;
    --text-color: #E0E0E0; /* Light gray for general text */
    --accent-color: #FF0077; /* Using secondary as accent for contrast */

    /* Section Backgrounds */
    --section-bg-1: #1E1330;
    --section-bg-2: #25193B;
    --section-bg-3: #2B1F45;
    --section-bg-4: #32254F;
    --section-bg-5: #382B5A;
    --section-bg-6: #403264;

    /* Fonts */
    --font-primary: 'Oxanium', sans-serif;
    --font-secondary: 'Space Mono', monospace;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Border Radius */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.75rem;
    --border-radius-lg: 1.5rem; /* Medium-large for buttons */

    /* Shadow */
    --neon-glow-primary: 0 0 8px var(--primary-color), 0 0 16px var(--primary-color);
    --neon-glow-secondary: 0 0 8px var(--secondary-color), 0 0 16px var(--secondary-color);
    --text-shadow-neon: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color);
    --card-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll from glitch effects */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    color: var(--primary-color);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    text-shadow: var(--text-shadow-neon);
    letter-spacing: 0.05em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.8rem;
    font-weight: 600;
}

h3 {
    font-size: 2.2rem;
    font-weight: 500;
}

p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-shadow: var(--neon-glow-secondary);
}

/* Header Background - Abstract Futuristic Gaming Pattern */
.header-bg {
    background: linear-gradient(45deg, #1A0F2B, #32254F); /* Base gradient */
    position: relative;
    overflow: hidden;
    /* Add a subtle overlay for the 'abstract futuristic gaming pattern' effect if no image is provided */
    /* If an image is provided via JS, it would override this with background-image */
}
.header-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 L 0 10" fill="none" stroke="%2300F7FF" stroke-width="0.3"/></pattern></defs><rect width="100%" height="100%" fill="url(https://meeel-shop.com/%23grid)"/></svg>');
    opacity: 0.05; /* Very subtle */
    pointer-events: none;
    animation: glitch-bg 15s infinite linear;
}

/* Footer Background - Subtle Dark Gaming Texture */
.footer-bg {
    background-color: var(--footer-bg-color);
    position: relative;
    overflow: hidden;
}
.footer-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><rect width="20" height="20" fill="%230C0715"/><path d="M0 0h1v19H0zm19 0h1v19h-1zM0 0h19V0H0zM0 19h19v1H0z" fill="%23221C2B" opacity="0.5"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}


/* Buttons - Neon glow, slightly rounded */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-md);
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    background: linear-gradient(45deg, var(--primary-color), var(--button-color));
    color: var(--background-color); /* Dark text on bright button */
    box-shadow: var(--neon-glow-primary);
    transition: all 0.3s ease-in-out, transform 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: #FFF;
    box-shadow: var(--neon-glow-secondary);
    transform: translateY(-3px) scale(1.02);
}

.btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: none;
}

/* Cards - Glassmorphism/Claymorphism hybrid with neon borders */
.card {
    background: rgba(43, 31, 69, 0.2); /* Slightly transparent background */
    backdrop-filter: blur(10px) saturate(180%); /* Glassmorphism blur */
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 247, 255, 0.3); /* Subtle neon border */
    box-shadow: var(--card-shadow), inset 0 0 5px rgba(0, 247, 255, 0.1); /* Soft shadow + inner neon glow */
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--card-shadow), var(--neon-glow-primary);
}

/* Section Backgrounds */
.section-bg-1 { background-color: var(--section-bg-1); }
.section-bg-2 { background-color: var(--section-bg-2); }
.section-bg-3 { background-color: var(--section-bg-3); }
.section-bg-4 { background-color: var(--section-bg-4); }
.section-bg-5 { background-color: var(--section-bg-5); }
.section-bg-6 { background-color: var(--section-bg-6); }

/* Utility for spacing sections */
.section-padding {
    padding: var(--spacing-xl) var(--spacing-lg);
}

/* Glitch Effect for text/elements (optional, can be applied to specific elements) */
.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 var(--primary-color);
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -2px 0 var(--secondary-color);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

/* Keyframe Animations */
@keyframes glitch-anim-1 {
    0% { clip: rect(20px, 9999px, 50px, 0); transform: skew(0.5deg); }
    20% { clip: rect(80px, 9999px, 110px, 0); transform: skew(-0.8deg); }
    40% { clip: rect(10px, 9999px, 70px, 0); transform: skew(1.2deg); }
    60% { clip: rect(120px, 9999px, 150px, 0); transform: skew(-0.3deg); }
    80% { clip: rect(30px, 9999px, 90px, 0); transform: skew(0.7deg); }
    100% { clip: rect(60px, 9999px, 100px, 0); transform: skew(-1deg); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(40px, 9999px, 70px, 0); transform: skew(-0.7deg); }
    25% { clip: rect(100px, 9999px, 130px, 0); transform: skew(0.4deg); }
    50% { clip: rect(5px, 9999px, 45px, 0); transform: skew(-1.1deg); }
    75% { clip: rect(90px, 9999px, 120px, 0); transform: skew(0.9deg); }
    100% { clip: rect(15px, 9999px, 55px, 0); transform: skew(-0.2deg); }
}

@keyframes glitch-bg {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}


/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.8rem; }
    p { font-size: 1rem; }
    .btn { padding: var(--spacing-sm) var(--spacing-md); font-size: 1rem; }
    .section-padding { padding: var(--spacing-lg) var(--spacing-md); }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    p { font-size: 0.95rem; }
    .btn { padding: 0.75rem var(--spacing-sm); font-size: 0.9rem; }
    .section-padding { padding: var(--spacing-md) var(--spacing-sm); }
}

@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.3rem; }
    p { font-size: 0.9rem; }
    .btn { padding: 0.6rem 0.8rem; font-size: 0.85rem; border-radius: var(--border-radius-md); }
}


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}