:root {
    --bg-color: #050507;
    --copper: #b87333;
    --copper-glow: #ff8c00;
    --text-color: #e0e0e0;
    --accent: #ffd700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

#circuit-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none; /* Let clicks pass to card if needed, but we want mousemove on canvas */
}

/* Ensure mouse events are captured by body/canvas even if content is over it */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1; /* Above canvas, below content */
    pointer-events: none;
}

/* PCB Background Pattern */
.pcb-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(184, 115, 51, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
    z-index: -1;
    opacity: 0.5;
}

.pcb-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 5, 7, 0.8) 0%, transparent 100%);
}

.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    position: relative;
    z-index: 10;
}

.section {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-snap-align: start;
    padding: 20px;
}

.content-card {
    background: rgba(15, 15, 20, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(184, 115, 51, 0.25);
    border-radius: 32px;
    padding: 80px 60px;
    text-align: center;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8);
    max-width: 800px;
    width: 90%;
    position: relative;
}

@keyframes cardEntry {
    from { opacity: 0; transform: translateY(30px) rotateX(10deg); }
    to { opacity: 1; transform: translateY(0) rotateX(0); }
}

.logo-wrapper {
    margin-bottom: 80px;
    transform: scale(2.5);
    filter: drop-shadow(0 0 25px rgba(184, 115, 51, 0.3));
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
    color: var(--copper);
    text-transform: uppercase;
}


.divider {
    height: 3px;
    width: 80px;
    background: var(--copper);
    margin: 0 auto 40px;
    box-shadow: 0 0 15px var(--copper-glow);
}

.coming-soon {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.status-msg {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 50px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    animation: fadeIn 2s ease-in;
}

.scroll-indicator p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--copper);
}

.mouse {
    width: 20px;
    height: 35px;
    border: 2px solid var(--copper);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--copper);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    animation: mouseScroll 1.5s infinite;
}

@keyframes mouseScroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* Second Section Styles */
.section-title {
    font-family: 'Orbitron', sans-serif;
    color: var(--copper);
    margin-bottom: 40px;
    letter-spacing: 4px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.map-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(184, 115, 51, 0.4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.map-container iframe {
    filter: invert(90%) hue-rotate(180deg) contrast(90%);
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.address {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.8;
    max-width: 500px;
}

.contact-info {
    font-size: 0.9rem;
    color: var(--copper);
    border: 1px solid rgba(184, 115, 51, 0.4);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-info:hover {
    background: rgba(184, 115, 51, 0.15);
    box-shadow: 0 0 25px rgba(184, 115, 51, 0.4);
    transform: translateY(-2px);
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 0.6; } }

/* Animations for SVG */
svg {
    max-width: 100%;
    height: auto;
}
