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

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 900px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

header {
    text-align: center;
    margin-bottom: 2.5rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ff4d4d, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #a0a0a0;
    max-width: 500px;
    margin: 0 auto;
}

.subtitle strong {
    color: #ff6b35;
}

main {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

.image-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #1a1a1a;
    box-shadow: 0 20px 60px rgba(255, 77, 77, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(255, 77, 77, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.06);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

footer {
    margin-top: 3rem;
    padding: 1.5rem 0;
    text-align: center;
    color: #444;
    font-size: 0.85rem;
}

/* Mobile */
@media (max-width: 600px) {
    .container {
        padding: 1.5rem 1rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .image-wrapper {
        border-radius: 12px;
    }
}
