* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ffffff;
    --secondary: rgba(255,255,255,0.72);
    --card: rgba(255,255,255,0.11);
    --border: rgba(255,255,255,0.18);
    --shadow: rgba(0,0,0,0.35);
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--primary);
    overflow-x: hidden;
    background: #080808;
}


/* BACKGROUND */

.background {
    position: fixed;
    inset: 0;

    background-image:
        url("../images.jpeg");

    background-size: cover;
    background-position: center;

    z-index: -3;

    transform: scale(1.03);
}

.background-overlay {
    position: fixed;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.40),
            rgba(0,0,0,0.70)
        );

    backdrop-filter: blur(2px);

    z-index: -2;
}


/* CONTAINER */

.container {
    width: min(680px, calc(100% - 30px));
    margin: auto;

    padding:
        55px 0
        40px;
}


/* PROFILE */

.profile {
    text-align: center;
    animation: fadeUp .7s ease both;
}

.logo-wrapper {
    width: 105px;
    height: 105px;

    margin: auto;

    border-radius: 50%;

    padding: 4px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            rgba(255,255,255,.25)
        );

    box-shadow:
        0 10px 40px rgba(0,0,0,.45);
}

.logo {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;

    background: #111;
}

.profile h1 {
    margin-top: 18px;

    font-size: 32px;
    font-weight: 800;

    letter-spacing: -1px;
}

.verified {
    margin-top: 7px;

    color: rgba(255,255,255,.9);

    font-size: 13px;
}

.verified i {
    margin-right: 5px;
}

.profile-description {
    max-width: 540px;

    margin:
        15px auto
        30px;

    color: var(--secondary);

    font-size: 14px;
    line-height: 1.7;
}


/* LINKS */

.links {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.link-card {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 72px;

    padding: 12px 18px;

    color: #fff;
    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.13),
            rgba(255,255,255,.06)
        );

    border:
        1px solid var(--border);

    border-radius: 18px;

    backdrop-filter: blur(15px);

    box-shadow:
        0 10px 30px var(--shadow);

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;

    animation:
        fadeUp .6s ease both;
}

.link-card:nth-child(1) {
    animation-delay: .1s;
}

.link-card:nth-child(2) {
    animation-delay: .18s;
}

.link-card:nth-child(3) {
    animation-delay: .26s;
}

.link-card:nth-child(4) {
    animation-delay: .34s;
}

.link-card:nth-child(5) {
    animation-delay: .42s;
}

.link-card:hover {
    transform:
        translateY(-3px)
        scale(1.01);

    background:
        rgba(255,255,255,.18);

    border-color:
        rgba(255,255,255,.35);
}

.link-card:active {
    transform: scale(.98);
}


/* HIGHLIGHT */

.link-card.highlight {
    border-color:
        rgba(255,255,255,.42);

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.21),
            rgba(255,255,255,.09)
        );
}


/* ICON */

.link-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 13px;

    background:
        rgba(255,255,255,.12);

    font-size: 18px;
}

.link-content {
    flex: 1;

    margin-left: 14px;

    display: flex;
    flex-direction: column;

    gap: 3px;
}

.link-content strong {
    font-size: 15px;
    font-weight: 700;
}

.link-content small {
    color: rgba(255,255,255,.60);

    font-size: 11px;
}

.arrow {
    color: rgba(255,255,255,.55);
    font-size: 13px;

    transition:
        transform .25s ease;
}

.link-card:hover .arrow {
    transform:
        translateX(4px);
}


/* SOCIAL */

.social {
    display: flex;
    justify-content: center;

    gap: 16px;

    margin:
        28px 0
        34px;
}

.social a {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    text-decoration: none;

    border:
        1px solid var(--border);

    border-radius: 50%;

    background:
        rgba(255,255,255,.08);

    backdrop-filter: blur(10px);

    transition:
        transform .25s ease,
        background .25s ease;
}

.social a:hover {
    transform:
        translateY(-4px);

    background:
        rgba(255,255,255,.18);
}


/* ARTICLE */

.article {
    padding: 27px;

    border:
        1px solid var(--border);

    border-radius: 22px;

    background:
        rgba(0,0,0,.25);

    backdrop-filter:
        blur(15px);

    box-shadow:
        0 15px 40px rgba(0,0,0,.25);
}

.article-label {
    display: inline-block;

    margin-bottom: 13px;

    padding:
        6px 10px;

    border-radius: 20px;

    background:
        rgba(255,255,255,.10);

    color:
        rgba(255,255,255,.65);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;
}

.article h2 {
    font-size: 24px;

    line-height: 1.3;

    margin-bottom: 18px;
}

.article h3 {
    margin-top: 24px;
    margin-bottom: 9px;

    font-size: 17px;
}

.article p {
    margin-bottom: 14px;

    color:
        rgba(255,255,255,.72);

    font-size: 14px;

    line-height: 1.8;
}


/* FOOTER */

footer {
    text-align: center;

    margin-top: 40px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 800;
}

footer p {
    margin-top: 5px;

    color:
        rgba(255,255,255,.55);

    font-size: 12px;
}

.footer-links {
    display: flex;
    justify-content: center;

    gap: 18px;

    margin:
        18px 0;
}

.footer-links a {
    color:
        rgba(255,255,255,.65);

    text-decoration: none;

    font-size: 11px;
}

.footer-links a:hover {
    color: white;
}

footer small {
    color:
        rgba(255,255,255,.4);

    font-size: 10px;
}


/* ANIMATION */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform:
            translateY(18px);
    }

    to {
        opacity: 1;
        transform:
            translateY(0);
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .container {
        width:
            min(
                100% - 22px,
                680px
            );

        padding-top: 35px;
    }

    .logo-wrapper {
        width: 88px;
        height: 88px;
    }

    .profile h1 {
        font-size: 27px;
    }

    .profile-description {
        font-size: 13px;
    }

    .link-card {
        min-height: 68px;

        padding:
            10px 13px;

        border-radius: 16px;
    }

    .link-icon {
        width: 40px;
        height: 40px;
    }

    .link-content strong {
        font-size: 14px;
    }

    .link-content small {
        font-size: 10px;
    }

    .article {
        padding: 21px;
    }

    .article h2 {
        font-size: 21px;
    }

}


/* REDUCE MOTION */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

}