/* RESET & FONTS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #ffffff;
    color: #fff;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* BACKGROUND STARS */
body::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(2px 1px at 20px 30px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 1px at 40px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 90px 40px, #fff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 8;
    animation: drift 1s linear infinite;
    z-index: 0;
}

@keyframes drift {
    from { background-position: 0 0; }
    to { background-position: 0 207px; }
}

/* ENTER SCREEN */
#enter-screen {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1.45s ease;
}

#enter-screen span {
    font-size: 1.rem;
    letter-spacing: 4px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    animation: pulse 5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.3; }
    20% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* MAIN CARD (HIDDEN INITIALLY) */
#main-card {
    position: relative;
    z-index: 10;
    text-align: center;
    opacity: 0;
    transform: scale(2); /* Starts zoomed in slightly */
    filter: blur(5px);    /* Starts blurry */
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

#main-card.visible {
    opacity: 1;
    transform: scale(0.9);
    filter: blur(0px);
}

/* PROFILE PICTURE */
.pfp {
    width: 55%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 0 10px rgba(255,255,255,0.15);
    position: relative;
    z-index: 2;
}

/* TEXT */
.username {
    font-size: 2.8rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,0.6); /* THE GLOW */
    letter-spacing: -1px;
}

.status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-top: 5px;
    color: #ffffff;
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.icon-small {
    width: 20px;
    height: 20px;
    opacity: 1;
}

/* LINKS ROW */
.links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
}

.link-btn {
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 255, 255, 0);
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9c9494;
    transition: all 0.3s ease;
}

.link-btn svg {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 0 0 transparent);
    transition: all 0.7s;
}

/* HOVER EFFECTS */
.link-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.link-btn:hover svg {
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.8)); /* GLOWING ICON */
    transform: scale(1.1);
}
/* BACKGROUND VIDEO STYLING */
#bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -2; /* Keeps it behind everything */
    object-fit: cover; /* Ensures the video fills the screen */
    filter: brightness(0.4) grayscale(0.2); /* Makes the video darker so text pops */
}

/* DARK OVERLAY (Optional - adds extra depth) */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black layer */
    z-index: -1;
}

/* Remove the previous body::before star animation if you don't want them overlapping */
/* Top corner positioning */
.top-right {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 1000;
}

.control-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
}

/* Username Animation (Floating & Glow) */
.username {
    font-size: 3rem;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Fix: Social Row Layout */
.links-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.social-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.social-btn svg { width: 24px; height: 24px; }

/* Container for alignment */
.status-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 10px;
    cursor: pointer;
}

/* The "Location" Badge */
.location-badge {
    position: absolute;
    bottom: 130%; /* Position it above the text */
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Show the badge on hover */
.status-wrapper:hover .location-badge {
    opacity: 1;
    bottom: 150%;
    transform: translateX(-50%) scale(1);
}

/* Optional: Add the little triangle arrow at the bottom of the bubble */
.location-badge::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(20, 20, 20, 0.9) transparent transparent transparent;
}

.status-wrapper.active .location-badge {
    opacity: 1;
    bottom: 150%;
    transform: translateX(-50%) scale(12);
}
.username {
     font-family: Intradistaff; /* set name */
  src: url(assets/Intradistaff.ttf); /* url of the font */
    font-size: 3rem;
    font-weight: 600;
    position: relative;
    /* This keeps your main text color white */
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: float 8s ease-in-out infinite;
}

.sparkle-text {
    position: relative;
    display: inline-block;
}

/* This creates the sparkle layer ON TOP of your name */
.sparkle-text::after {
    content: "yker";
    position: absolute;
    inset: 0;
    
    /* Load your GIF here */
    background: url('https://giphy.com/stickers/white-star-kelleybb-0QT98Psjfy9Z3PDums');
    background-size: 200px; /* Adjust this to make sparkles smaller or bigger */
    
    /* This makes the GIF take the shape of the letters */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* This removes the white background from the GIF so only sparkles show */
    mix-blend-mode: color-dodge; 
    
    opacity: 0.8;
    z-index: 4;
    pointer-events: none;
}
/* Apply to the whole site */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    
}

/* Ensure links and buttons feel clickable */
a, .social-btn, #enter-screen, .status-wrapper {
    cursor: pointer !important;
}
/* Apply to the whole site */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    /* Replace 'cursor.png' with your actual file name in the assets folder */
    cursor: url('..assets/cursor.png2'), auto; 
}

/* Ensure links and buttons feel clickable */
a, .social-btn, #enter-screen, .status-wrapper {
    cursor: pointer !important;
}
/* Container for the badge and the popup */
.admin-badge-container {
    display: inline-flex;
    position: relative;
    margin-left: 1px;
    cursor: pointer;
    vertical-align: middle;
}

/* The Staff Icon Styling */
.staff-icon {
    width: 24px;
    height: 24px;
    color: #3a43c7; /* Discord Blue */
    filter: drop-shadow(0 0 5px #ffffff);
    transition: transform 0.12s ease;
}

.admin-badge-container:hover .staff-icon {
    transform: scale(1);
    filter: drop-shadow(0 0 10px #ffffff);
}

/* The "Owner" Tooltip */
.admin-badge-container::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    
    /* Style from your uploaded images */
    background-color: #111214;
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

/* Tooltip Arrow */
.admin-badge-container::before {
    content: "";
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #111214 transparent transparent transparent;
    opacity: 0;
    transition: all 0.2s ease;
}

/* Show Tooltip on Hover/Touch */
.admin-badge-container:hover::after,
.admin-badge-container:hover::before {
    opacity: 1;
    transform: translateX(-50%) scale(1.2);
}

#discord-btn {
    cursor: copy !important; /* Changes the mouse cursor to a 'copy' symbol */
}

/* Optional: Add a simple transition for the green fade-back */
.social-btn {
    transition: color 0.3s ease, transform 0.2s ease;
}

/* PFP & Decoration */
.pfp-container2 {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 19px;
}

.pfp2 {
    width: 103%;
    height: 105%;
    border-radius: 56%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.pfp-decoration2 {
    position: absolute;
    top: -11%;
    left: -9%;
    width: 122%;
    height: 125%;
    z-index: 2;
}
