@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    padding-top: 75px;

    background-image: url("assets/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    min-height: 100vh;
    color: white;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    padding: 12px 40px; 

    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    /* NEW: Rounds only the two bottom corners */
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}



.nav-left {
    display: flex;
    align-items: center;
    list-style-type: none;
    padding-left: 40px;
    gap: 10px; /* Controls spacing between the item tabs */
}

.nav-left li {
    position: relative; /* Crucial for positioning the absolute bottom line */
    padding-bottom: 8px; /* Creates spacing above the bottom active border line */
}

/* Base link styling inside your list */
.nav-left a {
    color: rgba(255, 255, 255, 0.8); /* Slightly translucent white text */
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Adds space between the icon and text */
    padding: 10px 18px;
    border-radius: 12px; /* Soft rounded rectangle styling */
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* Hover style: Gives a subtle background pill capsule effect */
.nav-left li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Active Page State: Highlights the text and background */
.nav-left li.active a {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Active Bottom Indicator Line */
.nav-left li.active::after {
    content: '';
    position: absolute;
    bottom: -4px; /* Adjust this to move the line closer or further down */
    left: 15%;
    width: 70%;  /* Centers the underline nicely under the main item text width */
    height: 3px;
    background-color: #3b82f6; /* Bright neon blue line matching your vision */
    border-radius: 10px;
}

/* Container for the right-side buttons */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;                 /* Adds clean spacing between the two buttons */
    margin-left: auto;         /* MAGIC RULE: Pushes this entire container to the far right */
}

/* Base button styles for pill shape */
.btn-ip, .btn-discord {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;       /* Gives it the rounded pill look */
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

/* Light / IP Button styling */
.btn-ip {
    background-color: rgba(235, 243, 255, 0.9);
    color: #1e293b;
}
.btn-ip:hover {
    background-color: rgba(235, 243, 255, 1);
}
.btn-ip .copy-icon {
    opacity: 0.6;
}

/* Purple Discord Button styling */
.btn-discord {
    background-color: #5865F2; /* Official Discord Purple */
    color: white;
}
.btn-discord:hover {
    background-color: #4752c4;
}
