:root {
    --bg: #0a0e27;
    --text: #00FF00;
    --muted: #FF006E;
    --surface: #1a1f3a;
    --surface-alt: #16213e;
    --accent: #00F0FF;
    --accent-strong: #FF006E;
    --neon-purple: #8338EC;
    --neon-yellow: #FFBE0B;
    --radius: 0;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Courier New', 'Courier', monospace;
    line-height: 1.6;
    color: var(--text);
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(0, 240, 255, 0.02) 0px,
            rgba(0, 240, 255, 0.02) 1px,
            transparent 1px,
            transparent 2px
        ),
        linear-gradient(
            135deg,
            #0a0e27 0%,
            #16213e 50%,
            #1a1f3a 100%
        );
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 0, 110, 0.03) 2px,
            rgba(255, 0, 110, 0.03) 4px
        );
    pointer-events: none;
    z-index: 1;
}

.container {
    width: min(100% - 2rem, var(--container, 1060px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(10px);
    background: linear-gradient(
        90deg,
        rgba(10, 14, 39, 0.95) 0%,
        rgba(22, 33, 62, 0.95) 100%
    );
    border-bottom: 2px solid var(--accent);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
    position: relative;
    z-index: 2;
}

.brand {
    text-decoration: none;
    color: var(--accent);
    font-weight: 900;
    letter-spacing: 0.05em;
    font-size: 1.3rem;
    text-shadow: 
        0 0 10px var(--accent),
        0 0 20px var(--neon-purple);
}

.site-nav {
    display: flex;
    gap: 1rem;
}

.site-nav a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    transition: all 0.2s ease;
    text-shadow: 0 0 5px rgba(255, 0, 110, 0.5);
}

.site-nav a:hover {
    color: var(--accent);
    text-shadow: 
        0 0 10px var(--accent),
        0 0 20px var(--neon-purple);
}

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.carousel-track {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: background-image 0.8s ease-in-out;
    filter: brightness(0.4) hue-rotate(280deg);
}

.carousel-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 0, 110, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--muted);
}

.carousel-dot.active {
    background: var(--muted);
    box-shadow: 0 0 10px var(--muted);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 14, 39, 0.85) 0%,
        rgba(131, 56, 236, 0.3) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: var(--accent);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 900;
    text-shadow: 0 0 5px var(--muted);
}

.hero-content .eyebrow {
    color: var(--muted);
}

.hero-content h1 {
    color: var(--accent);
    text-shadow: 
        0 0 20px var(--accent),
        0 0 40px var(--neon-purple);
}

.hero-content .hero-copy {
    color: rgba(0, 240, 255, 0.9);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

h1,
h2 {
    line-height: 1.2;
    margin: 0 0 0.8rem;
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent);
}

h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    max-width: 18ch;
}

h2 {
    font-size: 2rem;
}

h3 {
    color: var(--muted);
    text-shadow: 0 0 5px var(--muted);
}

.hero-copy {
    max-width: 60ch;
    color: rgba(0, 240, 255, 0.85);
    font-size: 1.1rem;
}

button {
    border: 2px solid var(--accent);
    border-radius: 0;
    background: linear-gradient(45deg, var(--accent), var(--neon-purple));
    color: #000;
    padding: 0.8rem 1.2rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Courier New', 'Courier', monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 0 20px var(--accent);
}

button:hover {
    box-shadow: 0 0 40px var(--accent), 0 0 60px var(--neon-purple);
    transform: scale(1.05);
}

.status {
    min-height: 1.4rem;
    margin-top: 0.65rem;
    color: var(--neon-yellow);
    font-weight: 600;
    text-shadow: 0 0 5px var(--neon-yellow);
}

.section {
    margin: 0;
    padding: 3rem 0;
    background: var(--surface);
    position: relative;
    overflow: hidden;
    border-top: 2px solid var(--muted);
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(
        45deg,
        transparent 0%,
        transparent calc(50% - 2px),
        var(--muted) calc(50% - 2px),
        var(--muted) calc(50% + 2px),
        transparent calc(50% + 2px),
        transparent 100%
    );
    background-size: 40px 40px;
    background-position: 0 -60px;
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.4);
}

.section:first-of-type::before {
    display: none;
}

.section.alt {
    background: var(--surface-alt);
    border-top-color: var(--accent);
}

.section > .container {
    position: relative;
    z-index: 1;
    padding: 0 1rem;
    padding-top: 2rem;
}

.section:first-of-type > .container {
    padding-top: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.product-card {
    background: linear-gradient(135deg, var(--surface) 0%, rgba(131, 56, 236, 0.1) 100%);
    padding: 1.8rem;
    border-radius: 0;
    border: 2px solid var(--accent);
    box-shadow: 
        0 0 15px rgba(0, 240, 255, 0.4),
        inset 0 0 15px rgba(0, 240, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--muted), var(--accent), var(--muted));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--muted);
    box-shadow: 
        0 0 30px rgba(255, 0, 110, 0.6),
        0 0 50px rgba(0, 240, 255, 0.3),
        inset 0 0 20px rgba(131, 56, 236, 0.2);
}

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.product-card h3 {
    margin: 0 0 0.6rem;
    color: var(--muted);
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

.product-card p {
    margin: 0 0 1rem;
    color: rgba(0, 240, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.product-link {
    text-decoration: none;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
}

.product-link:hover {
    color: var(--muted);
    text-shadow: 0 0 15px var(--muted);
}

ul {
    margin: 0;
    padding-left: 1.2rem;
}

ul li {
    color: rgba(0, 240, 255, 0.9);
    margin-bottom: 0.5rem;
}

.site-footer {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-alt) 100%);
    border-top: 2px solid var(--accent);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin: 0 0 0.8rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    font-weight: 900;
    text-shadow: 0 0 10px var(--accent);
}

.footer-section p {
    margin: 0;
    color: rgba(0, 240, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.95rem;
    transition: all 0.2s ease;
    text-shadow: 0 0 3px rgba(255, 0, 110, 0.5);
}

.footer-section a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent);
}

.weather-widget .weather-content {
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.2), rgba(0, 240, 255, 0.1));
    padding: 0.8rem;
    border: 1px solid var(--accent);
    border-radius: 0;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.location-name {
    margin: 0 0 0.6rem;
    font-weight: 600;
    color: var(--accent);
    font-size: 0.9rem;
    text-shadow: 0 0 5px var(--accent);
}

.weather-current {
    text-align: center;
    margin-bottom: 0.8rem;
}

.weather-temp {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--muted);
    text-shadow: 0 0 10px var(--muted);
}

.weather-condition {
    font-size: 0.85rem;
    color: rgba(0, 240, 255, 0.8);
    margin-top: 0.2rem;
}

.weather-forecast {
    display: flex;
    justify-content: space-around;
    gap: 0.4rem;
}

.forecast-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
}

.forecast-day {
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.2rem;
}

.forecast-icon {
    font-size: 1.2rem;
    margin: 0.2rem 0;
}

.forecast-temp {
    color: rgba(0, 240, 255, 0.8);
    font-size: 0.75rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    color: rgba(0, 240, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.3);
}

@media (max-width: 720px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .site-nav {
        flex-wrap: wrap;
    }

    .hero {
        min-height: 400px;
    }

    .carousel-dots {
        bottom: 1rem;
        gap: 0.5rem;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    .hero-overlay {
        background: linear-gradient(
            135deg,
            rgba(10, 14, 39, 0.9) 0%,
            rgba(131, 56, 236, 0.4) 100%
        );
    }

    .section {
        padding: 2rem 0;
    }

    .section::before {
        height: 40px;
        background-size: 30px 30px;
        background-position: 0 -40px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-card {
        padding: 1.2rem;
    }

    .product-icon {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section a,
    .footer-section p {
        font-size: 0.9rem;
    }

    .weather-current {
        text-align: center;
    }

    .weather-temp {
        font-size: 1.4rem;
    }

    .forecast-item {
        font-size: 0.75rem;
    }

    .forecast-icon {
        font-size: 1rem;
    }
}
