/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #0f0f0f;
    color: #ffffff;
}

/* ---------- INDEX PAGE ---------- */

.index-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 720px;
    padding: 40px 20px;
}

h1 {
    font-size: 36px;
    margin-bottom: 8px;
}

.subtitle {
    color: #9ca3af;
    margin-bottom: 32px;
}

.pages {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-link {
    display: block;
    padding: 20px 24px;
    background: #18181b;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.2s ease;
    border: 1px solid #27272a;
}

.page-link:hover {
    background: #1f1f23;
    transform: translateY(-2px);
    border-color: #3f3f46;
}

.page-title {
    font-size: 18px;
    font-weight: 600;
    display: block;
}

.page-desc {
    font-size: 14px;
    color: #a1a1aa;
    margin-top: 4px;
}

/* ---------- DESIGN PAGES ---------- */

/* Common image styles */
.design {
    display: block;
    width: 100%;
    height: auto;
}

.design-desktop {
    max-width: 1440px;
    margin: 0 auto;
}


/* By default show desktop */
.design-mobile {
    display: none;
}

/* Mobile breakpoint */
@media (max-width: 768px) {
    .design-desktop {
        display: none;
    }

    .design-mobile {
        display: block;
    }
}
