:root {
    --bg: #f7f3eb;
    --surface: rgba(255, 255, 255, 0.92);
    --text: #111111;
    --muted: #5f6470;
    --accent: #f97316;
    --border: #000000;
    --shadow: 6px 6px 0 #000000;
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Noto Sans Arabic", "Public Sans", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.14), transparent 28%),
        radial-gradient(circle at bottom right, rgba(250, 204, 21, 0.16), transparent 30%),
        var(--bg);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.info-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    display: block;
    opacity: 0.16;
    animation: float 12s ease-in-out infinite;
}

.shape-orange {
    width: 140px;
    height: 140px;
    top: 10%;
    left: 7%;
    background: #ff9a3d;
    border-radius: 28px;
}

.shape-yellow {
    width: 110px;
    height: 110px;
    right: 10%;
    top: 16%;
    background: #ffd84d;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    animation-delay: 2s;
}

.shape-black {
    width: 120px;
    height: 120px;
    right: 12%;
    bottom: 10%;
    background: #111111;
    border-radius: 50%;
    animation-delay: 4s;
}

.bio-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.bio-card {
    width: min(100%, 760px);
    border: 3px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    background: var(--surface);
    backdrop-filter: blur(8px);
    padding: 28px 22px;
    text-align: center;
}

.bio-logo {
    width: 96px;
    height: 96px;
    margin: 0 auto 14px;
    border-radius: 999px;
    border: 3px solid var(--border);
    box-shadow: 4px 4px 0 #000000;
    object-fit: cover;
}

.bio-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border: 3px solid var(--border);
    border-radius: 999px;
    background: #fff2a8;
    box-shadow: 4px 4px 0 #000000;
    font-size: 0.82rem;
    font-weight: 900;
}

.bio-card h1 {
    margin: 16px 0 10px;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.1;
    font-weight: 900;
}

.bio-card p {
    margin: 0 auto;
    max-width: 520px;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.8;
    font-weight: 700;
}

.store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 360px);
    min-height: 54px;
    margin-top: 20px;
    padding: 0 18px;
    border: 3px solid var(--border);
    border-radius: 18px;
    box-shadow: 4px 4px 0 #000000;
    background: var(--accent);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
    transition: transform 0.2s ease;
}

.store-button:hover {
    transform: translateY(-2px);
}

.store-button-secondary {
    margin-top: 18px;
    background: #ffffff;
    color: var(--text);
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.mini-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border: 3px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 4px 4px 0 #000000;
    text-align: right;
}

.mini-card img {
    width: 112px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 3px solid var(--border);
    border-radius: 14px;
    flex-shrink: 0;
}

.mini-card-body h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 900;
}

.mini-card-body span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 800;
}

.mini-yellow { background: #fff4bf; }
.mini-sky { background: #e3f4ff; }
.mini-fuchsia { background: #f8e3ff; }
.mini-emerald { background: #e5f9ec; }
.mini-rose { background: #ffe3ec; }
.mini-bundle { background: #fff1dd; }
.mini-blue { background: #dbeafe; }
.mini-purple { background: #f3e8ff; }
.mini-amber { background: #fef3c7; }

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

@media (max-width: 640px) {
    .bio-shell {
        padding: 14px;
    }

    .bio-card {
        padding: 22px 16px;
        border-radius: 24px;
    }

    .mini-grid {
        grid-template-columns: 1fr;
    }

    .mini-card img {
        width: 96px;
    }
}
