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


.card {
    border: 1px solid #212121;
    border-radius: 8px;
    padding: 20px;
    background-color: #212121;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.card-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFF;
}

.section {
    border-top: 1px solid #ddd;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.section img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
}

.section-content {
    flex-grow: 1;
    margin-left: 20px;
}

.executor-title {
    font-size: 20px;
    font-weight: bold;
}

.details {
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 10px;
    font-size: 14px;
}

.details-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.details-column span {
    margin-bottom: 5px;
}

.details-column .detail-title {
    font-weight: bold;
}

.details-column .detail-value {
    margin-left: 0px;
    color: #ffffff;
}

.download-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    width: 100px;
    margin-left: 20px;
}

.download-btn:hover {
    background-color: #0056b3;
}

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

@media (max-width: 375px)  {
    .section-content {
        margin-left: 26px;
    }

}

@media (max-width: 425px) {
    .section img {
        margin-left: 30%;
    }

    .download-btn {
        width: 100%;
    }
}