:root {
    --bg: #ffffff;
    --border: #e2e2e2;
    --text: #1a1a1a;
    --muted: #6b6b6b;
    --accent: #3b5bfd;
    --radius: 14px;
    --light: #ececec;
}

*,
:before,
:after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 48px 24px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
}

header {
    margin-bottom: 48px;
    text-align: center;
    
    h1 {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        
        span {
            color: var(--accent);
            font-weight: bold;
            font-size: 32px;
            font-weight: 600;
            text-transform: uppercase;
        }
    }
}

.demo-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
    margin: 0px auto;
    max-width: 1280px;
}

.requinSite {
    display: block;
    width: 320px;
    text-decoration: none;
    color: var(--text);
    background: var(--bg);
    
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.requinSite:active,
.requinSite:hover {
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.requinSite__screenshot-wrap {
    position: relative;
    width: 100%;
    background: var(--light);
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.requinSite__screenshot {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.requinSite__skeleton {
    position: absolute;
    background: linear-gradient(90deg, var(--light) 25%, #f5f5f5 50%, var(--light) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    inset: 0;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.requinSite__body {
    padding: 14px 16px;
}

.requinSite__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.requinSite__favicon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 3px;
}

.requinSite__title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;

    overflow: hidden;
}

.requinSite__description {
    display: -webkit-box;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
    
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.requinSite__url {
    margin-top: 8px;
    color: var(--accent);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;

    overflow: hidden;
}

.requinSite--error .requinSite__description {
    color: #c0392b;
}