@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

body {
    margin: 0;
    font-family: Inter, sans-serif;
    color: #f5c542;
    overflow-x: hidden;
    background: #000;
}

/* BACKGROUND */
#bg {
    position: fixed;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 2s ease, opacity 2s ease;
    z-index: -2;
}

#overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.3), rgba(0,0,0,0.95));
    z-index: -1;
}

/* CONTAINER */
.container {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
}

/* PROFILE */
.profile h1 {
    font-size: 42px;
    margin: 10px 0;
}

.avatar-ring {
    width: 140px;
    height: 140px;
    margin: auto;
    border-radius: 50%;
    padding: 5px;
    background: conic-gradient(#f5c542, #000, #f5c542);
}

.avatar {
    width: 100%;
    border-radius: 50%;
}

/* LINKS */
.links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.links a {
    text-decoration: none;
    color: #f5c542;
    border: 1px solid #f5c542;
    padding: 8px 14px;
    border-radius: 20px;
    transition: 0.3s;
}

.links a:hover {
    background: #f5c542;
    color: #000;
}

/* CARD */
.card {
    margin-top: 40px;
    padding: 20px;
    border: 1px solid rgba(245,197,66,0.3);
    border-radius: 15px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
}

/* TAGS */
.tags {
    margin-top: 10px;
}

.tags span {
    display: inline-block;
    margin: 5px;
    padding: 5px 10px;
    border: 1px solid #f5c542;
    border-radius: 15px;
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* FOOTER */
footer {
    margin-top: 40px;
    opacity: 0.6;
}
