/* RESET & BASE */
html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    width: 100%;
    min-height: 100vh;
}

.snap-section {
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* GLASS PANEL (The main card style) */
.glass-panel {
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 8px; /* Slightly sharper corners for tech look */
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.glass-panel:hover {
    border-color: rgba(0, 255, 65, 0.4);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.1);
    transform: translateY(-2px);
}

/* SCANLINE EFFECT */
.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(0, 255, 65, 0.02) 51%,
        transparent 51%
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 999;
}

/* SOCIAL BUTTONS */
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    color: rgba(255,255,255,0.6);
    transition: all 0.2s;
}

.social-btn:hover {
    background: rgba(0, 255, 65, 0.1);
    border-color: #00FF41;
    color: #00FF41;
}

/* TICKER ANIMATION */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}
.ticker {
    display: inline-block;
    animation: ticker 25s linear infinite;
}
.ticker span {
    margin: 2rem;
}
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* FADE IN ANIMATION */
.fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}