/* General Page Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Header Styling */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #222;
    padding: 15px 20px;
    font-family: 'Poppins', sans-serif;
}

/* Menu Icon */
.menu-icon {
    font-size: 24px;
    cursor: pointer;
    color: #c6ff00;
}

/* Header Title */
.header-title {
    color: #c6ff00;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    flex-grow: 1;
}

.header-title span {
    display: block;
    font-size: 16px;
    font-weight: normal;
    opacity: 0.8;
}

/* Glitter Animation */
@keyframes glitter {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Profile Card */
.profile-card {
    max-width: 450px;
    margin: 20px auto;
    padding: 20px;
    background: radial-gradient(circle, rgba(0,0,0,0.9) 40%, #000 100%);
    border-radius: 15px;
    border: 2px solid white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    text-align: left;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    background-size: 300% 300%;
    animation: glitter 3s infinite linear;
}

/* Sparkle Overlay */
.profile-card::after {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 10%, rgba(255, 255, 255, 0) 70%);
    opacity: 0.7;
    border-radius: 15px;
    pointer-events: none;
}

/* Profile Picture */
/* Profile Picture - Increased Size */
.profile-card img {
    width: 170px;  /* Adjusted size */
    height: 170px; /* Adjusted size */
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 10px auto;
    border: 3px solid white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Profile Name */
.profile-card h2 {
    font-size: 22px;
    margin: 10px 0;
    color: cyan;
}

/* Verified Badge (Blue Checkmark) */
.verified {
    color: #3498db;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
}

.verified::before {
    content: "✔";
    font-size: 16px;
    margin-right: 5px;
}

/* Running Text (Marquee Effect) */
.running-text {
    position: fixed;
    bottom: 10px;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 5px 0;
}

.running-text span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 10s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(0%); }
    to { transform: translateX(-100%); }
}

* {
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}