/* Add at the very top of styles.css */
* {
    font-family: 'Hubot Sans', sans-serif;
}

body {
    margin: 0;
    position: relative;
    overflow-y: auto;
    font-family: 'Hubot Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, #000000 50%, #4B0000);
    z-index: -1;
    min-height: 100vh;
}

.blood-flow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('path/to/blood-animation.png') repeat; /* Use a blood texture image */
    animation: flow 5s linear infinite; /* Animation for flowing effect */
    opacity: 0.5; /* Adjust opacity for a subtle effect */
    z-index: -1; /* Ensure it is behind other content */
}

@keyframes flow {
    0% {
        background-position: 0 0; /* Start position */
    }
    100% {
        background-position: 0 100%; /* End position */
    }
}

.top-bar {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 800px;
    height: 80px;
    background: rgba(20, 20, 20, 0.7);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(139, 0, 0, 0.1),
                inset 0 0 30px rgba(139, 0, 0, 0.2);
    border: 1px solid rgba(139, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.top-bar:hover {
    box-shadow: 0 4px 30px rgba(139, 0, 0, 0.2),
                inset 0 0 40px rgba(139, 0, 0, 0.3),
                0 0 20px rgba(139, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.3);
}

.title {
    font-size: 40px;
    margin-right: auto;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    position: relative;
}

.title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF0000;
    transition: width 0.3s ease;
}

.title:hover::after {
    width: 100%;
}

.title:hover .kill-text,
.title:hover .wtf-text {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.title:hover .dot {
    color: #FF0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

.kill-text {
    color: white; /* Make "kill" text white */
}

.title .dot {
    color: #FF0000; /* Dark red color for the dot */
}

.wtf-text {
    color: white; /* Make "wtf" text white */
}

.title .glow {
    color: white; /* Make "Kill" fully opaque */
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8), /* Dark red glow */
                 0 0 20px rgba(255, 0, 0, 0.5); /* More diffuse dark red glow */
}

.button-group {
    display: flex; /* Align buttons in the group */
    align-items: center; /* Center vertically */
}

.signup-button {
    background-color: #8B0000; /* Dark red for Sign Up button */
    color: white; /* Text color */
    border: none; /* No border */
    border-radius: 25px; /* Rounded corners */
    padding: 15px 25px; /* Increased padding for bigger buttons */
    margin-left: 10px; /* Spacing between buttons */
    cursor: pointer; /* Pointer cursor on hover */
    transition: box-shadow 0.3s ease, transform 0.3s ease; /* Increased duration for smoother transition */
    font-size: 16px; /* Improved font size */
    font-family: 'Hubot Sans', sans-serif; /* Use Hubot Sans for buttons */
    text-decoration: none; /* Remove underline */
}

.login-button, .pricing-button {
    background-color: transparent; /* Remove background */
    color: white; /* Change text color to white */
    border: 2px solid transparent; /* Set initial border to transparent */
    border-radius: 25px; /* Rounded corners */
    padding: 15px 25px; /* Increased padding for bigger buttons */
    margin-left: 10px; /* Spacing between buttons */
    cursor: pointer; /* Pointer cursor on hover */
    transition: transform 0.3s ease, border-color 0.3s ease; /* Smooth transition for border color */
    font-size: 16px; /* Improved font size */
    font-family: 'Hubot Sans', sans-serif; /* Use Hubot Sans for buttons */
    text-decoration: none; /* Remove underline */
}

.signup-button:hover {
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.7); /* Glow effect on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.login-button:hover, .pricing-button:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
    border-color: rgba(255, 0, 0, 0.7); /* Change border color to dark red on hover */
}

.centered-text {
    position: absolute; /* Use absolute positioning */
    top: 30%; /* Position it at 30% from the top */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -30%); /* Adjust position to truly center */
    text-align: center; /* Center the text */
    color: white; /* Text color */
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
}

.centered-text h1 {
    color: rgba(255, 255, 255, 0.5); /* Set default color for the heading */
    font-family: 'Hubot Sans', sans-serif; /* Use the same font */
    margin: 0; /* Remove default margin */
    font-size: 50px;
}

.centered-text h1 .glow {
    color: white; /* Make "Kill" fully opaque */
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7), /* Dark red glow */
                 0 0 20px rgba(255, 0, 0, 0.5); /* More diffuse dark red glow */
}

.centered-text p {
    font-size: 16px; /* Font size for the description remains the same */
    font-family: 'Hubot Sans', sans-serif; /* Use the same font */
    color: rgba(255, 255, 255, 0.8); /* Slightly transparent white for description */
    margin-top: 10px; /* Space above the description */
}

.input-container {
    display: flex; /* Use flexbox for horizontal alignment */
    align-items: center; /* Center items vertically */
    margin-top: 20px; /* Space above the input */
    width: 100%; /* Full width for the input container */
    justify-content: center; /* Center the input box */
}

.input-prefix {
    position: absolute; /* Position the prefix text absolutely */
    left: 16px; /* Position it inside the input */
    top: 87.15%; /* Center vertically */
    transform: translateY(-50%); /* Adjust for vertical centering */
    color: rgba(255, 255, 255, 0.7); /* Color for the prefix */
    pointer-events: none; /* Prevent interaction with the prefix */
    font-size: 20px; /* Font size for the prefix */
}

.input-prefix .dot {
    color: #FF0000; /* Dark red color for the dot */
}

.bio-input {
    width: 80%; /* Width of the input box */
    max-width: 400px; /* Maximum width */
    padding: 10px 10px 10px 82.5px; /* Add padding to the left for the prefix */
    border: 2px solid rgba(255, 255, 255, 0.5); /* Border color */
    border-radius: 25px; /* Rounded corners */
    font-size: 16px; /* Font size */
    font-family: 'Hubot Sans', sans-serif; /* Use the same font */
    color: white; /* Text color */
    background-color: rgba(0, 0, 0, 0.5); /* Background color with transparency */
    transition: border-color 0.3s ease; /* Smooth transition for border color */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.bio-input::placeholder {
    color: rgba(255, 255, 255, 0.466); /* Placeholder text color */
}

.bio-input:focus {
    outline: none; /* Remove default outline */
    border-color: #FF0000; /* Change border color on focus */
}

.claim-button {
    background-color: #8B0000; /* Dark red for Claim button */
    color: white; /* Text color */
    border: none; /* No border */
    border-radius: 25px; /* Rounded corners */
    padding: 10px 20px; /* Padding for the button */
    margin-left: 10px; /* Space between input and button */
    margin-top: 0px; /* Add a small margin to bring it down */
    cursor: pointer; /* Pointer cursor on hover */
    transition: box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effect */
    font-size: 16px; /* Font size */
    font-family: 'Hubot Sans', sans-serif; /* Use Hubot Sans for buttons */
    text-decoration: none; /* Remove underline */
}

.claim-button:hover {
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.7); /* Glow effect on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.signup-title {
    color: white; /* Set the text color to white */
    font-family: 'Hubot Sans', sans-serif; /* Ensure the same font is used */
    font-size: 40px; /* Set the font size */
    margin: 0; /* Remove default margin */
    text-align: center; /* Center the text */
    /* Remove transparency */
    opacity: 1;
}

.signup-input {
    width: 80%; /* Width of the input box */
    max-width: 400px; /* Maximum width */
    padding: 10px; /* Padding inside the input */
    border: 2px solid rgba(255, 255, 255, 0.5); /* Border color */
    border-radius: 25px; /* Rounded corners */
    font-size: 16px; /* Font size */
    font-family: 'Hubot Sans', sans-serif; /* Use the same font */
    color: white; /* Text color */
    background-color: rgba(0, 0, 0, 0.5); /* Background color with transparency */
    transition: border-color 0.3s ease; /* Smooth transition for border color */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.signup-input::placeholder {
    color: rgba(255, 255, 255, 0.466); /* Placeholder text color */
}

.signup-input:focus {
    outline: none; /* Remove default outline */
    border-color: #FF0000; /* Change border color on focus */
}

.signup-prefix {
    position: absolute; /* Position the prefix text absolutely */
    left: 70px; /* Position it inside the input */
    top: 77.75%; /* Center vertically */
    transform: translateY(-50%); /* Adjust for vertical centering */
    color: rgba(255, 255, 255, 0.7); /* Color for the prefix */
    pointer-events: none; /* Prevent interaction with the prefix */
    font-size: 20px; /* Font size for the prefix */
}

.signup-prefix .dot {
    color: #FF0000; /* Dark red color for the dot */
}

.signuppage-button {
    background-color: #8B0000; /* Dark red for Claim button */
    color: white; /* Text color */
    border: none; /* No border */
    border-radius: 25px; /* Rounded corners */
    padding: 10px 20px; /* Padding for the button */
    margin-left: 10px; /* Space between input and button */
    margin-top: 0px; /* Add a small margin to bring it down */
    cursor: pointer; /* Pointer cursor on hover */
    transition: box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effect */
    font-size: 16px; /* Font size */
    font-family: 'Hubot Sans', sans-serif; /* Use Hubot Sans for buttons */
    text-decoration: none; /* Remove underline */
    margin-top: 20px; /* Space above the button */
}

.signuppage-button:hover {
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.7); /* Glow effect on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.loginpage-input {
    width: 80%; /* Width of the input box */
    max-width: 400px; /* Maximum width */
    padding: 10px; /* Ensure padding is consistent */
    border: 2px solid rgba(255, 255, 255, 0.5); /* Border color */
    border-radius: 25px; /* Rounded corners */
    font-size: 16px; /* Font size */
    font-family: 'Hubot Sans', sans-serif; /* Use the same font */
    color: white; /* Text color */
    background-color: rgba(0, 0, 0, 0.5); /* Background color with transparency */
    transition: border-color 0.3s ease; /* Smooth transition for border color */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.loginpage-input::placeholder {
    color: rgba(255, 255, 255, 0.466); /* Placeholder text color */
}

.loginpage-input:focus {
    outline: none; /* Remove default outline */
    border-color: #FF0000; /* Change border color on focus */
}

.loginpage-button {
    background-color: #8B0000; /* Dark red for Claim button */
    color: white; /* Text color */
    border: none; /* No border */
    border-radius: 25px; /* Rounded corners */
    padding: 10px 20px; /* Padding for the button */
    margin-left: 10px; /* Space between input and button */
    margin-top: 0px; /* Add a small margin to bring it down */
    cursor: pointer; /* Pointer cursor on hover */
    transition: box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effect */
    font-size: 16px; /* Font size */
    font-family: 'Hubot Sans', sans-serif; /* Use Hubot Sans for buttons */
    text-decoration: none; /* Remove underline */
    margin-top: 20px; /* Space above the button */
}

.loginpage-button:hover {
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.7); /* Glow effect on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

.auth-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(20, 20, 20, 0.3); /* More transparent background */
    backdrop-filter: blur(15px); /* Increased blur effect */
    -webkit-backdrop-filter: blur(15px); /* For Safari support */
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
}

.auth-title {
    color: white;
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Hubot Sans', sans-serif;
}

.auth-input-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.auth-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 16px;
    font-family: 'Hubot Sans', sans-serif;
    transition: border-color 0.3s ease;
}

.auth-input:focus {
    outline: none;
    border-color: #FF0000;
}

.auth-button {
    width: 100%;
    padding: 12px;
    margin-top: 0;
    background-color: #8B0000;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-family: 'Hubot Sans', sans-serif;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auth-button:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.7);
}

.bio-input-container {
    position: relative;
    margin-top: 20px;
    padding-top: 15px;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    width: 100%;
}

.bio-input-container .input-prefix {
    position: absolute;
    left: 19px;
    top: 60%; /* Center vertically */
    transform: translateY(-50%); /* Perfect vertical centering */
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px; /* Increased font size from 16px to 18px */
    pointer-events: none;
    display: flex;
    align-items: center;
    line-height: 1; /* Ensure text is perfectly centered */
}

.bio-input-container .auth-input {
    padding-left: 82.5px; /* Make room for the prefix */
    padding-top: 14px; /* Adjust top padding */
    padding-bottom: 14px; /* Adjust bottom padding */
    line-height: 1; /* Ensure input text is vertically centered */
}

.dashboard-content {
    color: white;
    text-align: left;
}

.dashboard-text {
    color: rgba(255, 255, 255, 0.9);
    margin: 10px 0;
    font-size: 16px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Force two columns */
    gap: 30px; /* Increased gap */
    margin: 30px 0; /* Increased margin */
    max-width: 600px; /* Added max-width */
}

.stat-box {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box h3 {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.stat-box p {
    margin: 10px 0 0 0;
    font-size: 24px;
    color: white;
}

.section-title {
    color: white;
    font-size: 20px;
    margin: 15px 0 10px 0;
}

.bio-textarea {
    width: 100%;
    height: 150px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 15px;
    color: white;
    font-family: 'Hubot Sans', sans-serif;
    font-size: 16px;
    resize: none;
    margin-bottom: 20px;
}

.bio-textarea:focus {
    outline: none;
    border-color: #FF0000;
}

#bio-link {
    color: #FF0000;
    text-decoration: none;
}

#bio-link:hover {
    text-decoration: underline;
}

.user-info {
    margin-bottom: 30px;
}

.notification {
    position: fixed;
    top: -100px; /* Start above viewport */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    color: white;
    font-family: 'Hubot Sans', sans-serif;
    border: 1px solid rgba(255, 0, 0, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: top 0.3s ease;
}

.notification.show {
    top: 20px; /* Slide down when shown */
}

.notification.error {
    border-color: rgba(255, 0, 0, 0.5);
}

.notification.success {
    border-color: rgba(0, 255, 0, 0.5);
}

.password-toggle {
    color: rgba(255, 0, 0, 0.8);
    font-size: 12px;  /* Smaller font size */
    cursor: pointer;
    margin: 0 0 0 0; /* Remove all margins */
    user-select: none;
    transition: color 0.3s ease;
    text-align: left;  /* Align text to the left */
}

.password-toggle:hover {
    color: #FF0000;
}

.password-requirements {
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, margin 0.3s ease;
    padding: 0 15px 0 15px; /* Remove top/bottom padding, keep left/right */
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.password-requirements.show {
    margin: 0 0 5px 0; /* Remove top margin, keep bottom margin */
    max-height: 100px;
}

.password-requirements ul {
    margin: 5px 0; /* Keep this for spacing inside the box */
    padding-left: 15px;
}

.password-requirements li {
    margin: 2px 0;  /* Reduced spacing between items */
}

.dashboard-container {
    max-width: 1400px;
    width: 98%;
    margin: 120px auto 40px auto;
    padding: 30px;
}

.background-section {
    margin: 0;
}

.background-preview {
    width: 100%;
    height: 200px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    margin: 10px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.file-upload {
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-input {
    display: none;
}

.file-label {
    background: #8B0000;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.file-label:hover {
    background: #A00000;
    transform: scale(1.02);
}

.file-name {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.socials-section {
    margin: 20px 0;
}

.social-inputs {
    max-width: 100%;
    padding: 20px;
}

.social-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.social-prefix {
    position: absolute;
    left: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    pointer-events: none;
}

.social-input {
    padding-left: 120px !important;
}

.dashboard-header {
    margin-bottom: 20px;
}

.dashboard-tabs {
    display: flex;
    gap: 15px;
    margin: 20px 0 10px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-button {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 25px; /* Increased padding */
    cursor: pointer;
    font-family: 'Hubot Sans', sans-serif;
    font-size: 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.tab-button:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.tab-button.active {
    color: white;
    background: #8B0000;
}

.tab-content {
    min-height: 400px;
    padding: 20px 0;
    margin-bottom: 20px;
    overflow-y: auto;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.save-button {
    margin-top: 20px;
}

.background-url-input {
    margin-top: 10px;
}

.help-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-top: 5px;
}

.name-input-container {
    margin-bottom: 20px;
}

.input-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-size: 14px;
}

.bio-textarea-container {
    margin-bottom: 20px;
}

.colors-section {
    margin: 0;
}

.color-pickers {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.color-picker-group {
    width: 100%;
}

.color-preview-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.color-picker {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: none;
    padding: 0;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    cursor: pointer;
}

.color-picker::-webkit-color-swatch-wrapper {
    padding: 0;
}

.color-picker::-webkit-color-swatch {
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.color-value {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Hubot Sans', monospace;
    font-size: 14px;
}

/* Add responsive adjustments */
@media (max-width: 1200px) {
    #appearance {
        grid-template-columns: 1fr; /* Single column on smaller screens */
    }
}

@media (max-width: 768px) {
    .dashboard-container {
        padding: 15px;
        margin-top: 80px;
    }
}

.appearance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two equal columns */
    gap: 30px;
    align-items: start; /* Align items to top */
}

.appearance-section {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Update responsive design */
@media (max-width: 768px) {
    .appearance-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
}

/* Make sure input placeholders use the same font */
::placeholder {
    font-family: 'Hubot Sans', sans-serif;
}

:-ms-input-placeholder {
    font-family: 'Hubot Sans', sans-serif;
}

::-ms-input-placeholder {
    font-family: 'Hubot Sans', sans-serif;
}

/* Social Cards Styling */
.socials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.social-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.social-name {
    color: white;
    font-size: 16px;
    flex-grow: 1;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #8B0000;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.social-input-container {
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
}

.social-input-container.active {
    max-height: 100px;
    opacity: 1;
    margin-top: 10px;
}

.social-prefix {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    pointer-events: none;
    z-index: 1;
}

/* Bio Tab Styling */
.bio-editor {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 20px;
}

.bio-section, .bio-preview {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
}

.bio-header, .preview-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.bio-icon {
    width: 24px;
    height: 24px;
    filter: invert(1);
    opacity: 0.8;
}

.bio-textarea-wrapper {
    position: relative;
}

.character-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 8px;
    border-radius: 10px;
}

.preview-container {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    min-height: 300px;
    overflow: hidden;
}

.preview-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    filter: blur(1px);
}

.preview-profile {
    position: relative;
    z-index: 1;
}

.preview-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #8B0000, #4B0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 32px;
    color: white;
    text-transform: uppercase;
}

#preview-name {
    color: white;
    font-size: 24px;
    margin: 0 0 10px 0;
}

.preview-bio-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    white-space: pre-wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bio-editor {
        grid-template-columns: 1fr;
    }
}

/* Fixed save button container */
.fixed-save-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px;
    display: flex;
    justify-content: center;
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.save-button {
    width: auto;
    min-width: 200px;
    margin: 0;
}

/* Add padding to main container to account for fixed save button */
.dashboard-container {
    padding-bottom: 80px;
}

.preview-socials {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.preview-social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    width: fit-content;
}

.preview-social-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.preview-social-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.preview-container {
    transition: background 0.3s ease;
}

.preview-avatar {
    transition: background 0.3s ease;
}

/* Add styles for save notification */
.save-notification {
    position: fixed;
    bottom: -100px; /* Start off-screen */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: bottom 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.save-notification.show {
    bottom: 20px;
}

.save-notification-content {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
}

.save-notification .save-button {
    margin: 0;
    padding: 8px 16px;
    min-width: unset;
}

/* Remove bottom padding that was for fixed save button */
.dashboard-container {
    padding-bottom: 30px;
}

/* Profile picture styles */
.profile-preview {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(45deg, #8B0000, #4B0000);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.3);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.profile-url-input {
    margin-top: 15px;
}

/* Button hover effects */
.button-group a {
    position: relative;
    overflow: hidden;
}

.button-group a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.button-group a:hover::before {
    width: 300px;
    height: 300px;
}

/* Bio page styles */
.bio-page {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

.bio-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        var(--primary-color)99, 
        var(--secondary-color)99);
    opacity: 0.95;
}

.bio-content {
    position: relative;
    max-width: 600px;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: white;
}

.bio-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.bio-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-profile h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

.bio-profile p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    white-space: pre-wrap;
}

.bio-socials {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link img {
    width: 20px;
    height: 20px;
}

.not-found {
    text-align: center;
    color: white;
    font-size: 24px;
    padding: 40px;
}