:root {
    --primary-color: #8A2BE2; /* Amethyst */
    --secondary-color: #00FFFF; /* Aqua */
    --background-color: #1A0033; /* Dark Purple */
    --footer-bg-color: #0F001A; /* Even Darker Purple */
    --button-color: #00FFFF; /* Aqua */
    --text-color: #E0E0E0; /* Light Gray for readability */
    --heading-color: var(--secondary-color);
    --link-color: var(--secondary-color);
    --accent-color: #FF00FF; /* Magenta, for extra cyberpunk pop */

    --section-bg-1: #2B004F;
    --section-bg-2: #3A006F;
    --section-bg-3: #1F003F;
    --section-bg-4: #25004A;

    --font-primary: 'Orbitron', sans-serif;
    --font-secondary: 'Roboto Mono', monospace;

    --border-radius-sm: 8px;
    --border-radius-md: 15px;
    --border-radius-lg: 25px;

    --glass-blur: 15px;
    --glass-bg-opacity: 0.15;
    --glass-border-opacity: 0.3;
}

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto+Mono:wght@300;400;700&display=swap');

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    font-size: 1.1rem;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(138, 43, 226, 0.2) 0%, transparent 40%),
                radial-gradient(circle at bottom right, rgba(0, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--heading-color);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.8em;
    text-shadow: 0 0 5px var(--secondary-color), 0 0 10px var(--primary-color);
}

h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-top: 0.5em;
}

h2 {
    font-size: 2.8rem;
    line-height: 1.2;
}

h3 {
    font-size: 2.2rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1.5em;
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    position: relative;
}

a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 8px var(--accent-color);
}

a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease-in-out;
}

a:hover::after {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--background-color);
    background: var(--button-color);
    border: 2px solid var(--button-color);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 0 15px var(--button-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.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: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: -1;
}

.btn:hover {
    color: var(--button-color);
    background: transparent;
    box-shadow: 0 0 25px var(--accent-color), inset 0 0 10px var(--button-color);
    border-color: var(--accent-color);
}

.btn:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--button-color);
    border-color: var(--button-color);
    box-shadow: none;
}

.btn-secondary:hover {
    color: var(--background-color);
    background: var(--button-color);
    box-shadow: 0 0 20px var(--button-color);
}

.card {
    background: rgba(var(--primary-color-rgb), var(--glass-bg-opacity));
    border: 1px solid rgba(var(--secondary-color-rgb), var(--glass-border-opacity));
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    padding: 2.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px 0 rgba(0, 255, 255, 0.2), 0 0 20px var(--accent-color);
}

.section-bg-1 {
    background-color: var(--section-bg-1);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    border-top: 1px solid rgba(138, 43, 226, 0.1);
}

.section-bg-2 {
    background-color: var(--section-bg-2);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.section-bg-3 {
    background-color: var(--section-bg-3);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    border-top: 1px solid rgba(138, 43, 226, 0.1);
}

.section-bg-4 {
    background-color: var(--section-bg-4);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

/* Form Styles */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    margin-bottom: 1.5rem;
    background: rgba(var(--primary-color-rgb), 0.1);
    border: 1px solid rgba(var(--secondary-color-rgb), 0.4);
    border-radius: var(--border-radius-sm);
    color: var(--text-color);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
    box-shadow: inset 0 0 5px rgba(0, 255, 255, 0.1);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(var(--accent-color-rgb), 0.5), inset 0 0 8px rgba(0, 255, 255, 0.2);
    background: rgba(var(--primary-color-rgb), 0.2);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

/* Utility for RGB values from hex for rgba() */
:root {
    --primary-color-rgb: 138, 43, 226;
    --secondary-color-rgb: 0, 255, 255;
    --accent-color-rgb: 255, 0, 255;
}

/* Animations */
@keyframes neon-glow {
    0% { text-shadow: 0 0 5px var(--secondary-color), 0 0 10px var(--primary-color); }
    50% { text-shadow: 0 0 10px var(--secondary-color), 0 0 20px var(--primary-color), 0 0 30px var(--accent-color); }
    100% { text-shadow: 0 0 5px var(--secondary-color), 0 0 10px var(--primary-color); }
}

.animate-neon-pulse {
    animation: neon-glow 3s infinite alternate ease-in-out;
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

.glitch-effect:hover {
    animation: glitch 0.3s infinite linear;
}

/* Specific elements for cyberpunk feel */
.data-display {
    font-family: var(--font-secondary);
    font-size: 0.9em;
    color: var(--secondary-color);
    text-shadow: 0 0 3px var(--secondary-color);
    background: rgba(0, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 5px;
    display: inline-block;
    margin: 0.5rem 0;
}

.data-display::before {
    content: '// ';
    color: var(--primary-color);
}

/* Footer specific styles */
footer {
    background-color: var(--footer-bg-color);
    color: rgba(var(--text-color-rgb), 0.7);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(var(--secondary-color-rgb), 0.1);
    position: relative;
    overflow: hidden;
}

footer a {
    color: rgba(var(--secondary-color-rgb), 0.8);
}

footer a:hover {
    color: var(--accent-color);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.2rem;
    }
    h3 {
        font-size: 1.8rem;
    }
    .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    .card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 1rem;
    }
    h1 {
        font-size: 2.5rem;
        letter-spacing: 0.05em;
    }
    h2 {
        font-size: 1.8rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    .btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.95rem;
    }
    .card {
        padding: 1.5rem;
        border-radius: var(--border-radius-md);
    }
    .section-bg-1, .section-bg-2, .section-bg-3, .section-bg-4 {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.2rem;
    }
    .btn {
        width: 100%;
        padding: 0.8rem 1rem;
    }
    .card {
        padding: 1rem;
    }
    .section-bg-1, .section-bg-2, .section-bg-3, .section-bg-4 {
        padding: 3rem 0;
    }
}


/* 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;
    }
}