html, body {
            background-color: #1e1e1e;
            min-height: 100vh;
            margin: 10px, 10px;
            display: flex;
            flex-direction: column;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 6px 10px;
            color: white;
            position: relative;
            z-index: 10;
        }

        .nav-links {
            display: flex;
            gap: 10px;
        }
   

        .name {
            font-family: Afacad-Bold;
            font-size: 28px; /* Reduced for mobile */
            color: rgba(255, 255, 255, 1);
        }

       .button-navbar {
    font-family: Satoshi-Bold;
    font-size: 18px;
    color: #1e1e1e;
    background-color: #ffffff;
    width: 100px;
    height: 34px;
    display: flex;
    align-items: center;     
    justify-content: center;
    border-radius: 100px;
    padding: 0; 
    font-weight: bold;
}

        .item-main-container {
            display: grid;
            grid-template-columns: 1fr; /* Single column on mobile */
            gap: 0px; /* Combined gap property */
            padding: 20px 10px; /* Reduced padding */
        }

        .item-container {
            background-color: transparent;
            display: flex;
            flex-direction: column;
            color: white;
            overflow: hidden;
            padding-bottom: 0;
        }

        .item-image {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            border-radius: 15px; /* Slightly reduced */
        }

        .item-info {
            display: inline-flex;
            flex-direction: row;
            align-items: end;
            background-color: #1e1e1e;
            transform: translateY(-40px); /* Reduced translate */
            padding-bottom: 15px;
            width: fit-content;
            border-radius: 0 12px 0 0;
        }

        .item-type {
            font-family: 'Silkscreen-Regular';
            font-size: 14px; /* Reduced for mobile */
            margin-left: 4px;
            padding-bottom: 3px;
            padding-left: 6px;
            padding-right: 15px;
            opacity: 0.7;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .item-title {
            font-family: 'Satoshi-Bold';
            font-size: 18px; /* Reduced for mobile */
            margin-top: 8px; /* Reduced margin */
            margin-left: 4px;
        }

        .title-container {
            display: flex;
            flex-direction: column; /* Stack items vertically on mobile */
            align-items: flex-start;
            padding: 0 10px;
            margin-bottom: 20px; /* Added margin for spacing */
        }

        .footer-container {
            display: flex;
            flex-direction: column; /* Stack items vertically on mobile */
            align-items: flex-end;
            padding: 0 10px;
            gap: 10px;
        }


        .discover {
            font-family: Satoshi-Bold;
            font-size: 30px; 
            color: white;
            margin: 0;
            line-height: 1.2;
            margin-top: 16px;
        }

        .main-content {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .next {
            width: 100%;
            display: flex;
            align-items: center;
            font-family: SilkScreen-Regular;
            font-size: 20px; /* Reduced for mobile */
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
            margin-bottom: 30px;
            justify-content: center;
        }


.item-info :before {
  content: "";
  position: absolute;
  top: -40px;
  left: -1px;
  height: 40px;
  width: 40px;
  border-bottom-left-radius: 50%;

}

.item-info :before {
   box-shadow: 0 14px 0 0 #1e1e1e;
}

.item-info :after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: 7px;
  height: 40px;
  width: 40px;
  border-bottom-left-radius: 50%;
}

.item-info :after{
   box-shadow: 0 20px 0 0 #1e1e1e;
}


        /* Media queries for larger screens */
        @media (min-width: 768px) {
            .name {
                font-size: 42px;
            }
            
            
            
            .item-main-container {
                grid-template-columns: repeat(2, 1fr);
                column-gap: 32px;
                row-gap: 0px;
                padding: 40px 20px;
            }
            
            .item-info {
                transform: translateY(-50px);
                padding-bottom: 20px;
            }
            
            .item-type {
                font-size: 16px;
            }
            
            .item-title {
                font-size: 24px;
                margin-top: 12px;
            }
            
            .title-container {
                flex-direction: row;
                align-items: flex-end;
                padding: 0 20px;
                justify-content: space-between;
            }
            
            .discover {
                font-size: 75px;
            }
            
            .next {
                font-size: 32px;
                margin-bottom: 30px;
            }

             .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            color: white;
            position: relative;
            z-index: 10;
        }

            




        .item-info :before {
        content: "";
        position: absolute;
        top: -40px;
        left: 0;
        height: 40px;
        width: 40px;
        border-bottom-left-radius: 50%;

        }

        .item-info :before {
        box-shadow: 0 20px 0 0 #1e1e1e;
        }

        .item-info :after {
        content: "";
        position: absolute;
        right: -40px;
        bottom: 14px;
        height: 40px;
        width: 40px;
        border-bottom-left-radius: 50%;
        }

        .item-info :after{
        box-shadow: 0 20px 0 0 #1e1e1e;
        }

        }

        /* Font faces */
        @font-face {
            font-family: SilkScreen-Regular;
            src: url(./Assets/Font/Silkscreen/Silkscreen-Regular.ttf);
        }

        @font-face {
            font-family: Satoshi-Bold;
            src: url(./Assets/Font/Satoshi/Satoshi-Bold.otf);
        }

        @font-face {
            font-family: Satoshi-Medium;
            src: url(./Assets/Font/Satoshi/Satoshi-Medium.otf);
        }

        @font-face {
            font-family: Satoshi-Light;
            src: url(./Assets/Font/Satoshi/Satoshi-Light.otf);
        }

        @font-face {
            font-family: Afacad-Bold;
            src: url(./Assets/Font/Afacad/Afacad-Bold.ttf);
        }



    a {
    text-decoration: none;
}