* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(80, 80, 80, 0.45)
        ),
        url("XrayzBG.png");

    background-size: 120% 120%;
    background-repeat: no-repeat;

    animation: bgLoop 15s linear infinite;

    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes bgLoop {
    from {
        background-position: 0% 50%;
    }
    to {
        background-position: 100% 50%;
    }
}


.navbar {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);

    width: 90%;
    max-width: 1200px;
    height: 70px;

    padding: 0 24px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(31, 31, 31, 0.75);
    backdrop-filter: blur(14px);

    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-dot {
    width: 12px;
    height: 12px;
    background: #15ff00;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(9, 255, 0, 0.8);
}

.logo-text {
    font-weight: bold;
    letter-spacing: 2px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-link {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 1;
}

.nav-btn {
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.nav-btn.discord {
    background: linear-gradient(135deg, #444444, #242424);
}

.nav-btn.download {
    background: linear-gradient(135deg, #444444, #242424);
}

.nav-btn.purchase {
    background: linear-gradient(135deg, #444444, #242424);
}

.nav-btn.Product {
    position: relative;
    display: inline-block;

    background: linear-gradient(135deg, #383838, #181818);
    color: white;

    border-radius: 999px;
    padding: 10px 22px;
    font-weight: bold;

    box-shadow:
        0 0 18px rgba(187, 187, 187, 0.55),
        0 0 40px rgba(255, 255, 255, 0.35);

    transform: scale(1);

    transition:
        transform 0.28s cubic-bezier(.25,1.6,.45,1),
        box-shadow 0.18s ease;
}

.nav-btn.Product:hover {
    transform: scale(1.05);
}


.nav-btn.Product:active {
    transform: scale(0.9);
    transition-duration: 0.08s;
}






.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}


@keyframes bgMove {
    from {
        background-position: center;
    }
    to {
        background-position: top right;
    }
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
}

.modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    width: 90%;
    max-width: 420px;
    padding: 30px;

    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);

    border-radius: 20px;
    text-align: center;
    color: white;

    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal {
    transform: scale(1);
}

.modal h2 {
    margin-bottom: 10px;
}

.modal p {
    opacity: 0.85;
    margin-bottom: 25px;
}

.modal-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.modal-btn {
    padding: 10px 24px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.25s ease;
}

.modal-btn.cancel {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.modal-btn.confirm {
    background: linear-gradient(135deg, #4da3ff, #1e3cff);
    color: white;
}

.modal-btn:hover {
    transform: translateY(-2px);
}


.profile-wrap {
    position: relative;
    width: 540px;  
    margin: auto;
}


.profile-card {
    padding: 48px 40px 100px;
    text-align: center;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.12),
            rgba(255,255,255,0.04)
        );

    backdrop-filter: blur(22px);
    border-radius: 26px;

    box-shadow:
        0 40px 90px rgba(0,0,0,0.85),
        inset 0 0 0 1px rgba(255,255,255,0.15);

    color: #fff;
}


.avatar {
    width: 96px;
    height: 96px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;

    box-shadow:
        0 0 0 4px rgba(255,255,255,0.08),
        0 0 35px rgba(255,255,255,0.35);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name {
    font-size: 28px;
    letter-spacing: 1.2px;
    margin-bottom: 12px;

    text-shadow:
        0 0 18px rgba(255,255,255,0.55),
        0 2px 8px rgba(0,0,0,0.8);
}

.info {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.82;
    margin-bottom: 14px;
}

.location {
    font-size: 14px;
    opacity: 0.9;
}

.social-pill {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 22px;
    padding: 14px 28px;

    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(16px);

    border-radius: 999px;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.6),
        inset 0 0 0 1px rgba(255,255,255,0.18);
}

.social-pill img {
    width: 22px;
    height: 22px;

    opacity: 0.85;
    cursor: pointer;

    filter: brightness(0) invert(1); 
    transition: all 0.3s ease;
}

.social-pill img:hover {
    opacity: 1;
    transform: translateY(-3px) scale(1.05);
    filter:
        brightness(0) invert(1)
        drop-shadow(0 0 10px rgba(255,255,255,0.6));
}


.social-pill span:hover {
    opacity: 1;
    transform: translateY(-3px);
    text-shadow: 0 0 12px rgba(255,255,255,0.6);
}

.music-btn {
    position: fixed;
    top: 20px;
    right: 20px;

    width: 46px;
    height: 46px;

    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
    z-index: 9999;

    transition: all 0.3s ease;
}

.music-btn img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

.music-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}
