@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Inter, sans-serif;
    color: #fff;
}

html, body {
    width: 100%;
    height: 100%;
}

/* body */
body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    overflow-y: auto;
}

/* background */
.background {
    position: fixed;
    inset: 0;
    z-index: -1;
}

.background-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(6px);
    transform: scale(1.05);
}

/* main layout */
.layout {
    width: 100%;
    max-width: 640px;
    padding: 220px 16px 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* card thingys */
.card {
    width: 100%;
    background: #f4bbd37a;
    border-radius: 16px;
    border: 1px solid #ca9ce1;
    padding: 16px;
    box-shadow:
        0 10px 25px rgba(0,0,0,0.3),
        inset 0 2px 6px rgba(255,255,255,0.05);
}

/* profile card */
.profile-card {
    text-align: center;
}

/* pfp */
.pfp img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin-bottom: 12px;
}

/* username */
.username-text {
    font-size: 25px;
    font-weight: 800;
    text-shadow: 0 0 10px #fff;
    letter-spacing: 0.5px;
}

/* description */
.description {
    margin-top: 40px;
}

.description-text {
    font-size: 18px;
    font-weight: 800;
    text-shadow: 0 0 10px #fff;
    letter-spacing: 0.5px;
}

/* social buttons yk */
.social-buttons {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-buttons a i {
    font-size: 30px;
    color: #fe5da070;
    transition: transform 0.3s, color 0.3s, text-shadow 0.3s;
    text-shadow: 0 0 10px #ffffff;
}

.social-buttons a i:hover {
    transform: scale(1.1);
    color: #ffffff;
}

/* row thingys */
.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* small cards */
.small-card {
    padding: 0;
    height: 64px;
}

/* mini buttons */
.mini-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    height: 100%;
    width: 100%;
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.2s;
}

.mini-button:hover {
    background: rgba(255,255,255,0.12);
}

.mini-button i {
    font-size: 26px;
    color: #fe5da070;
    transition: transform 0.2s, color 0.2s;
}

.mini-button:hover i {
    transform: scale(1.08);
    color: #ffffff;
}

.mini-button span {
    font-size: 14px;
    font-weight: 800;
    text-shadow: 0 0 10px #fff;
    letter-spacing: 0.5px;
}

/* biggy buttoins */
.big-button {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.big-button:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-1px);
}

/* big card gif yk */
.card-gif {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* big button text */
.card-text {
    font-size: 13px;
    font-weight: 800;
    text-shadow: 0 0 10px #000;
    white-space: nowrap;
}

/* discord stuff */
.discord-widget {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
}

#discord-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

#status-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 2px solid #2c2c2c;
}

/* discord text */
.discord-info {
    font-size: 15px;
    font-weight: 800;
    text-shadow: 0 0 10px #fff;
}

/* music player */
.music-player {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.track-left {
    font-size: 15px;
    font-weight: 800;
    text-shadow: 0 0 10px #fff;
}

.music-player button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.15);
    cursor: pointer;
    transition: transform 0.2s;
}

.music-player button:hover {
    transform: scale(1.1);
}

.music-player i {
    font-size: 20px;
    color: #fe5da070;
}

/* enter screen */
#enter-screen {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(10px);
    background: rgba(0,0,0,0.4);
    z-index: 9999;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s;
}

#enter-text {
    font-size: 25px;
    font-weight: 800;
    text-shadow: 0 0 10px #fff;
}

/* mobile fix WWWW */
@media (max-width: 480px) {
    .row {
        grid-template-columns: 1fr;
    }

    .username-text {
        font-size: 22px;
    }

    .description-text {
        font-size: 16px;
    }

    .layout {
        padding-top: 5px;
        padding-left: 12px;
        padding-right: 12px;
        padding-bottom: 40px;
    }

    .social-buttons {
        margin-top: 40px;
    }
}

.profile-card {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}








