/* © WatchJunk */
/* coded by nya & suzunay */

body {
        background-color: #0b1120;
        background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .03) 1px, transparent 1px, transparent 30px);
        font-family: 'Poppins', sans-serif;
        color: #e0e0e0;
        margin: 0;
        padding: 0;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .profile-container {
        max-width: 640px;
        margin: 50px auto 70px;
        background: linear-gradient(145deg, #1a2235, #0b1120);
        padding: 48px 40px 60px;
        border-radius: 28px;
        box-shadow:
            0 10px 10px rgba(0, 0, 0, 0.75),
            inset 2px 2px 10px rgba(255, 255, 255, 0.07),
            inset -2px -2px 10px rgba(0, 0, 0, 0.75);
        text-align: center;
        transition: box-shadow 0.3s ease;
    }

    .profile-container:hover {
        box-shadow:
            0 14px 38px rgba(0, 0, 0, 0.5),
            inset 2px 2px 14px rgba(255, 255, 255, 0.05),
            inset -2px -2px 14px rgba(0, 0, 0, 0.95);
    }

    .profile-pic {
        width: 140px;
        height: 130px;
        border-radius: 50%;
        object-fit: cover;
        border: 5px solid #fff;
        margin-bottom: 28px;
        transition: transform 0.3s ease;
    }

    .profile-pic:hover {
        transform: scale(1.12);
    }

    .username {
        font-weight: 900;
        font-size: 2.3rem;
        margin-bottom: 12px;
        color: #fff;
    }

    .description {
        font-weight: 400;
        font-size: 1.15rem;
        color: rgba(255 255 255 / 0.85);
        margin-bottom: 48px;
        line-height: 1.65;
        letter-spacing: 0.02em;
    }

    .link-buttons {
        display: flex;
        flex-direction: column;
        gap: 22px;
        margin-bottom: 36px;
    }

    .link-button {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: #fff;
        border-radius: 24px;
        padding: 20px 30px;
        font-weight: 700;
        font-size: 1.2rem;
        text-decoration: none;
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 18px;
        transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
        user-select: none;
    }

    .link-button:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: #fff;
        box-shadow: 0 10px 12px rgba(0, 0, 0, 0.4);
        transform: translateY(-4px);
    }

    .link-button i {
        font-size: 32px;
        width: 32px;
        text-align: center;
    }

    @media (max-width: 768px) {
        .profile-container {
            max-width: 90%;
            padding: 36px 28px 44px;
        }

        .profile-pic {
            width: 120px;
            height: 110px;
            margin-bottom: 22px;
        }

        .username {
            font-size: 1.9rem;
            margin-bottom: 10px;
        }

        .description {
            font-size: 1rem;
            margin-bottom: 36px;
        }

        .link-button {
            font-size: 1.05rem;
            padding: 16px 24px;
            gap: 14px;
        }

        .link-button i {
            font-size: 28px;
            width: 28px;
        }
    }

    @media (max-width: 480px) {
        .profile-container {
            max-width: 95%;
            padding: 32px 20px 40px;
        }

        .profile-pic {
            width: 100px;
            height: 90px;
            margin-bottom: 18px;
        }

        .username {
            font-size: 1.6rem;
            margin-bottom: 8px;
        }

        .description {
            font-size: 0.95rem;
            margin-bottom: 28px;
        }

        .link-button {
            font-size: 1rem;
            padding: 14px 20px;
            gap: 12px;
        }

        .link-button i {
            font-size: 24px;
            width: 24px;
        }
    }
