body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    overflow-y: hidden;
}

.acrylic-header {
    backdrop-filter: blur(10px);
    background: #111111;
    border: 0.2px solid #333333;
    border-radius: 100px; 
    position: relative; 
    left: 10px;
    top: 10px; 
    width: 100%; 
    max-width: 1860px; 
    height: 57px;
    z-index: 1000; 
}


.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

h1.outfit-header {
    font-weight: 800;
    position: relative;
    bottom: 30px;
    right: 20px;
    color: #ffffff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    position: relative;
    bottom: 30px;
}

.holder {
    height: 200px;
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    align-items: center;
}

.link-holder {
    width: 100%;
    padding: 10px;
    max-width: 350px;
    margin: 0 auto 20px auto;
    margin-bottom: 20px;
    margin-left: 20px;
    border: 1px solid #ccc;
    background-color: #ffffff;
    color: #000000;
    border-radius: 7px;
    font-size: 16px;
    align-self: left;
    display: block;
    justify-content: center;
    font-family: 'Outfit';
    font-weight: 600;
}

.bypass-button {
    width: 100px;
    padding: 10px;
    max-width: 350px;
    margin: 0 auto 20px auto;
    border: 1px solid #ccc;
    background-color: #ffffff;
    color: #000000;
    border-radius: 7px;
    font-size: 16px;
    align-self: center;
    display: block;
    justify-content: center;
    font-family: 'Outfit';
    font-weight: 600;
    position: relative;
    bottom: 61px;
    left: 160px;
}

.link-holder:focus {
    outline: none;
    box-shadow: none;
}


.content-holder {
    height: 70vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
}

.input-group {
    position: relative;
   }
   
   .input {
    border: solid 1.5px #9e9e9e;
    border-radius: 1rem;
    background: none;
    padding: 1rem;
    font-size: 1rem;
    color: #f5f5f5;
    transition: border 150ms cubic-bezier(0.4,0,0.2,1);
   }
   
   .user-label {
    position: absolute;
    left: 15px;
    color: #e8e8e8;
    pointer-events: none;
    transform: translateY(1rem);
    transition: 150ms cubic-bezier(0.4,0,0.2,1);
   }
   

   .footer {
    color: #FFF;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    position: relative; 
    bottom: 0;
    width: 100%;
    margin-top: 20%;
}
   
   .input:focus ~ label, input:valid ~ label {
    transform: translateY(-50%) scale(0.8);
    background-color: #212121;
    padding: 0 .2em;
    color: #2196f3;
   }


   #loadingCard {
    display: none;
    flex-direction: column; /* Stack content vertically */
    padding: 20px;
    border: 1px solid #ccc;
    width: 100%;
    max-width: 520px;
    color: #000000;
    font-family: 'Outfit';
    font-weight: 700;
    border-radius: 10px;
    margin-top: 10px;
    font-size: 18px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box; /* Include padding and border in the element's width */
    overflow-wrap: break-word; /* Prevent long words from overflowing */
    word-wrap: break-word; /* Ensure word breaks */
    white-space: normal; /* Allow wrapping of text */
    word-break: break-all; /* Break long words in the middle if needed */
}

#loadingText {
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
    word-break: break-all;
}

pre {
    white-space: pre-wrap;
    word-wrap: break-word; 
    overflow-wrap: break-word; 
    width: 100%;
    max-width: 520px;
    color: #000000;
    font-family: 'Outfit';
    font-weight: 700;
}

#copyButton {
    background-color: #f9f9f9;
    color: #000000;
    width: 100px;
    height: 35px;
    border-radius: 5px;
    font-family: 'Outfit';
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    margin-left: 160px;
    border: none;
    outline: none;
    transition: transform 0.3s ease;
}

#copyButton:hover {
    transform: scale(1.05);
}

.loading-circle {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #000000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

#redirectButton {
    background-color: #f9f9f9;
    color: #000000;
    width: 100px;
    height: 35px;
    border-radius: 5px;
    font-family: 'Outfit';
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    margin-left: 10px;
    border: none;
    outline: none;
    transition: transform 0.3s ease;
}

#redirectButton:hover {
    transform: scale(1.05);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.nav-links li a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-links li a:hover::before {
    width: 100%;
}



.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 30px; /* Adjust width if needed */
    height: 30px; /* Adjust height if needed */
    position: relative;
    display: none;
    margin-left: 10px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 4px; /* Adjust height if needed */
    background: rgb(255, 255, 255);
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 69px;
    left: -250px;
    width: 100%;
    height: 92%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease;
    display: none;
    z-index: 1000;
}

.mobile-menu.show {
    transform: translateX(0); /* Adjust this value based on your menu width */
}

.mobile-menu ul {
    list-style: none;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2rem;
}


@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-bottom: 55px;
    }

    .mobile-menu.show {
        left: 0;
        display: block;
    }

    .acrylic-header {
        max-width: 740px;
    }
}

main {
    padding: 7rem 2rem;
}

@media (max-width: 425px)  {
    
.acrylic-header {
    max-width: 400px;
}

.link-holder {
    max-width: auto;
    margin-left: 0px;
}

.bypass-button {
    position: relative;
    bottom: 0px;
    left: 0px;
}

#copyButton {
    margin-left: 55px;
}

}

@media (max-width: 375px)  {
    .acrylic-header {
        max-width: 350px;
    }

    #copyButton {
        margin-left: 45px;
    }
}

@media (max-width: 325px)  {
    
    .acrylic-header {
        max-width: 300px;
    }

    #copyButton {
        margin-left: 25px;
    }
}