:root {
    --primary: #007AFF;
    --bg: #0a0a0a;
    --text: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #0a0a0a 100%);
    z-index: -1;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 4px;
    margin-bottom: 60px;
}

.logo span {
    color: var(--primary);
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--glass);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

p {
    max-width: 500px;
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 40px;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 16 / 9;
    background: var(--glass);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(40%);
}

.card:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.footer-note {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.loader {
    width: 20px;
    height: 20px;
    border: 2px solid var(--glass);
    border-top: 2px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr;
    }
}
