/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #F8F8FC;
    color: #0C0C23;
    font-family: 'Mona Sans', 'Roboto', sans-serif;
    font-size: 16px;
    min-height: 100vh;
}

/* Container - 2/4 (50%) width of browser */
.container {
    max-width: 50%;
    margin: 0 auto;
    padding: 60px 0;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 20px;
}

.title {
    font-size: 3.125rem;
    font-weight: 700;
    line-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Instructions */
.instruction-text {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 30px;
}

/* Screenshots */
.screenshot {
    display: flex;
    justify-content: center;
}

.screenshot img {
    max-width: 100%;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .container {
        max-width: 70%;
    }

    .title {
        font-size: 2.9rem;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 90%;
        padding: 40px 15px;
    }

    .title {
        font-size: 1.4rem;
    }

    .instruction-text {
        font-size: 1rem;
    }
}
