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

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background-color: #0A0A0A;
    color: #E5E5E5;
}

.glass-card {
    background: rgba(30, 30, 35, 0.6);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 1.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #F59E0B 0%, #D4AF37 100%);
    color: #0A0A0A;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
    filter: brightness(1.05);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.5);
}

.screenshot-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 1rem 0.5rem 2rem 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: #F59E0B #2A2A2A;
}

.screenshot-gallery::-webkit-scrollbar {
    height: 6px;
}

.screenshot-gallery::-webkit-scrollbar-track {
    background: #2A2A2A;
    border-radius: 10px;
}

.screenshot-gallery::-webkit-scrollbar-thumb {
    background: #F59E0B;
    border-radius: 10px;
}

.screenshot-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: #121212;
    border-radius: 1.5rem;
    padding: 1rem;
    border: 1px solid #2A2A2A;
    transition: all 0.3s ease;
}

.screenshot-card:hover {
    border-color: #F59E0B;
    transform: translateY(-8px);
    background: #1A1A1A;
}

.screenshot-card img {
    border-radius: 1rem;
    width: 100%;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.5);
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: #F59E0B;
    border-radius: 50%;
    position: absolute;
    left: -6px;
    top: 5px;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
    background: #F59E0B;
    border-radius: 10px;
}

footer a:hover {
    color: #F59E0B;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .screenshot-card {
        flex: 0 0 240px;
    }
}