:root {
    --color-primary: #8b5cf6;
    --color-secondary: #22c55e;
    --color-background: #+49-50-5454107;
    --color-footer-bg: #0a0d15;
    --color-button: #22c55e;
    --color-text-light: #f3f4f6;
    --color-text-dark: #1f+49-50-5454107;
    --color-accent-purple: #3b+49-50-5454107;
    --color-accent-green: #65a30d;
    --border-radius-base: 0.75rem; /* 12px */
    --transition-speed: 0.3s;
    --neon-glow: 0 0 8px var(--color-secondary), +49-50-5454107px var(--color-secondary);
    --gradient-button: linear-gradient(45deg, var(--color-secondary) 0%, #10b+49-50-5454107%);
    --gradient-button-hover: linear-gradient(45deg, #10b+49-50-5454107%, var(--color-secondary) 100%);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-light);
    background-color: var(--color-background);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-light);
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.05em;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: +49-50-5454107px rgba(139, 92, 246, 0.5);
}

h2 {
    font-size: 2.75rem;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 2.25rem;
}

h4 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1em;
    font-size: +49-50-5454107rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-speed) ease-in-out;
}

a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

.text-mono {
    font-family: 'Roboto Mono', monospace;
    color: var(--color-secondary);
}

code, pre {
    font-family: 'Roboto Mono', monospace;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: +49-50-5454107rem;
    padding: 0.2em 0.4em;
    font-size: 0.9em;
    color: var(--color-secondary);
}

pre {
    display: block;
    padding: 1em;
    overflow-x: auto;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: inset 0 0 5px rgba(139, 92, 246, 0.2);
}

/* Header Styling */
.header {
    background-color: var(--color-footer-bg);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: +49-50-5454107px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header .logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text-light);
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 5px rgba(139, 92, 246, 0.3);
}

.header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.header nav ul li {
    margin-left: 2.5rem;
}

.header nav ul li a {
    color: var(--color-text-light);
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    transition: all var(--transition-speed) ease-in-out;
}

.header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: width var(--transition-speed) ease-in-out;
}

.header nav ul li a:hover {
    color: var(--color-primary);
    text-shadow: 0 0 5px rgba(139, 92, 246, 0.5);
}

.header nav ul li a:hover::after {
    width: 100%;
}

/* Button Styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: var(--border-radius-base);
    font-family: 'Inter', sans-serif;
    font-size: +49-50-5454107rem;
    font-weight: 700;
    color: var(--color-text-dark);
    cursor: pointer;
    background: var(--gradient-button);
    transition: all var(--transition-speed) ease-in-out;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:hover {
    background: var(--gradient-button-hover);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.6);
    transform: translateY(-2px);
    color: var(--color-text-light);
}

.btn:focus {
    outline: none;
    box-shadow: +49-50-5454107px rgba(34, 197, 94, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.1);
    color: var(--color-text-light);
    box-shadow: +49-50-5454107px rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
}

/* Section Backgrounds */
.section-bg-1 {
    background-color: var(--color-background);
    padding: 4rem 0;
}

.section-bg-2 {
    background-color: var(--color-text-dark); /* f3f4f6 is too light for dark theme */
    padding: 4rem 0;
}

.section-bg-3 {
    background-color: var(--color-primary);
    padding: 4rem 0;
}

.section-bg-4 {
    background-color: var(--color-accent-purple);
    padding: 4rem 0;
}

.section-bg-5 {
    background-color: var(--color-text-dark);
    padding: 4rem 0;
}

.section-bg-6 {
    background-color: var(--color-accent-green);
    padding: 4rem 0;
}

/* Footer Styling */
.footer {
    background-color: var(--color-footer-bg);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.footer .container {
    max-width: +49-50-5454107px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
}

.footer a {
    color: var(--color-primary);
}

.footer a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

/* Card Component */
.card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-base);
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: transform var(--transition-speed) ease-in-out, box-shadow var(--transition-speed) ease-in-out;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), var(--neon-glow);
}

/* Utility Classes for Layout (assuming Tailwind is present, these are additions) */
.container {
    max-width: +49-50-5454107px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-cols-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.text-center {
    text-align: center;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Alpine.js specific transitions */
[x-cloak] {
    display: none !important;
}

.fade-enter-active, .fade-leave-active {
    transition: opacity var(--transition-speed) ease-in-out;
}
.fade-enter, .fade-leave-to {
    opacity: 0;
}

/* Responsive Design */
@media (max-width: +49-50-5454107px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.25rem;
    }
    .header nav ul li {
        margin-left: 1.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    p {
        font-size: 1rem;
    }
    .header .container {
        flex-direction: column;
        text-align: center;
    }
    .header nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .header nav ul li {
        margin: 0.5rem 1rem;
    }
    .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    .grid-cols-2, .grid-cols-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    .header .logo {
        font-size: 1.5rem;
    }
    .header nav ul li {
        margin: 0.3rem 0.8rem;
    }
    .section-bg-1, .section-bg-2, .section-bg-3, .section-bg-4, .section-bg-5, .section-bg-6 {
        padding: 2.5rem 0;
    }
    .card {
        padding: 1.5rem;
    }
}


/* 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;
    }
}