body {
    font-family: "Rubik", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0d0d0d;
    overflow-x: hidden;
  }

  ::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-thumb {
    background-color: #ffffff;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background-color: #000000; 
}

::-webkit-scrollbar-thumb:hover {
    background-color: #ffffff;
}
  
  .content {
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }
  
  h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  p {
    font-size: 1.5rem;
  }
  

  .header {
    backdrop-filter: blur(10px);
    background-color: #212121;
    background-size: cover; 
    background-position: center; 
    border-radius: 6px;
    position: absolute; 
    left: 8px;
    top: 5px;
    width: 99%;  
    height: 57px;
    z-index: 1000;
}


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

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    position: absolute;
    right: 10px; 
    bottom: 3px;
}


.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;
    height: 30px;
    display: none;
    position: absolute;
    right: 10px;
    top: 14px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 4px;
    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(10, 10, 10, 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);
}

.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;
    }

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

main {
    padding: 7rem 2rem;
}

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

}

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

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

.title {
    position: relative;
    bottom: 50px;
    left: 120px;
    color: #ffffff;
    font-size: 43px;
    
}

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

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

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

.bypass-button:hover {
    cursor: pointer;
}

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


.content-holder {
    height: 70vh; 
    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: #212121;
    transition: border 150ms cubic-bezier(0.4,0,0.2,1);
}

#loadingCard {
    display: none;
    flex-direction: column; 
    padding: 20px;
    border: 1px solid #212121;
    width: 100%;
    max-width: 520px;
    color: #ffffff;
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    border-radius: 10px;
    margin-top: 10px;
    font-size: 18px;
    background-color: #212121;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal; 
    word-break: break-all;
}

#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: #ffffff;
    font-family: "Rubik", sans-serif;
    font-weight: 700;
}

#copyButton {
    background-color: #212121;
    color: #ffffff;
    width: 100px;
    height: 35px;
    border-radius: 5px;
    font-family: "Rubik", sans-serif;
    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);
    cursor: pointer;
}

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

#redirectButton {
    background-color: #212121;
    color: #ffffff;
    width: 100px;
    height: 35px;
    border-radius: 5px;
    font-family: "Rubik", sans-serif;
    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);
    cursor: pointer;
}

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

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

@media (max-width: 425px)  {
    .link-holder {
        max-width: auto;
        margin-left: 0px;
    }
    
    .bypass-button {
        position: relative;
        bottom: 0px;
        left: 0px;
    }
    
    #copyButton {
        margin-left: 55px;
    }
    
    }
    
    @media (max-width: 375px)  {
        #copyButton {
            margin-left: 45px;
        }
    }
    
    @media (max-width: 325px)  {
        #copyButton {
            margin-left: 25px;
        }
    }

.footer {
    color: #FFF;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}