/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Aladin", system-ui;
}

/* Body Styling */
body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: black;
}

/* Custom Vertical Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: black; /* Background for scrollbar track */
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ffcc00, #ff8800, #ff2200);
    border-radius: 6px;
    box-shadow: 0 0 6px #ff8800;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff8800, #ff2200);
    box-shadow: 0 0 15px #ff2200;
}

/* Left Side Scrollbar Position */
body {
    overflow-y: scroll; /* Enables scrolling */
    direction: rtl; /* Moves scrollbar to the left */
}

* {
    direction: ltr; /* Ensures content remains left-to-right */
}

.w-full {
    width: 100%;
}

.ml-auto {
    margin-left: auto;
}

.mr-auto {
    margin-right: auto;
}

/* Navbar Styling */
.navbar {
    width: 100%;
    background: linear-gradient(90deg, #ff0000, #ff8800, #ffcc00);
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 50px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(255, 102, 0, 0.5);
}

/* Logo */
.logo {
    object-fit: contain;
}

/* Navbar Links */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-links li {
    position: relative;
}

/* Navbar Links */
.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.nav-links a:hover {
    background: black;
    color: yellow;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(255, 217, 0, 0.952);
    z-index: 1000;
    min-width: 200px;
    overflow: auto;
    max-height: 280px;
}

/* Glow Effect on Dropdown */
.dropdown-menu a {
    color: white;
    padding: 8px 15px;
    display: block;
    border-radius: 0;
    text-decoration: none;
    transition: 0.3s eas;
}

.dropdown-menu a:hover {
    background: #ffcc00;
    color: black;
    box-shadow: 0 0 10px #ff8800;
}

/* Show Dropdown on Click */
.show {
    display: block !important;
}

/* Mobile Menu */
.menu-toggle {
    cursor: pointer;
    display: none;
    color: black;
    transition: 0.3s ease;
    width: 28px;
    height: 28px;
}

.menu-toggle .close_icon {
    display: none;
}

/* Banner Styling */
.banner {
    width: 100vw;
    height: calc(100vh - 76px);
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 76px; /* Navbar ke height jitna space de taaki overlap na ho */
    background-image: url("/pics/Header-Gamer-1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-bottom: 5px solid #ff2200;
}

/* Banner Text */
.banner-content {
    margin-top: 120px;
    color: white;
    width: 50%; /* Width kam kardi taake text break hojaye */
    text-align: center;
    text-shadow: 0 0 10px #ff8800, 0 0 20px #ff8800, 0 0 30px rgb(68, 18, 2);
}

/* Images Container */

.images_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.images_container .image {
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    height: 400px;
    width: 100%;
}

.mt-10 {
    margin-top: 40px;
}

.banner_images_container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.banner_images_container .image {
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    max-width: 600px;
    height: 240px;
    width: 100%;
}

.banner_images_container .image.even {
    margin-right: auto;
}

.banner_images_container .image.odd {
    margin-left: auto;
}

/* Heading Styling */
.animated-heading {
    font-size: 3rem;
    font-weight: bold;
    opacity: 0;
    animation: waveFade 4s ease-in-out infinite;
    line-height: 1.2;
}

/* Phrase Styling */
.animated-phrase {
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 10px;
    color: #ffcc00;
    animation: waveFade 4s ease-in-out infinite;
}

/* Keyframe Animation */
@keyframes waveFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    25% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); /* Light floating effect */
    }
    75% {
        transform: translateY(0);
    }
    100% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* About Us */

/* About Us Section */
.about-section {
    margin: 0;
    width: 100%;
    padding: 80px 5%;
    background: linear-gradient(180deg, #ffcc00, black, black, #ff8800,
    black, black, #ffcc00);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image Styling */
.about-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid orange;
    box-shadow: 0 0 20px orange;
    object-fit: cover;
}

/* 🔥 Container Border Animation 🔥 */
.about-container {
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
    padding: 50px;
    border-radius: 15px;
    border: 5px solid red;
    box-shadow: 0 0 20px rgb(255, 0, 0);
    animation: borderGlow 2s infinite alternate; /* Border animation */
}

/* 🔥 Image Border Animation 🔥 */
.about-image img {
    width: 400px;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid red;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    transition: transform 0.3s ease-in-out;
    animation: borderGlow 2s infinite alternate; /* Image border animation */
}

/* 🔥 Hover Effect for Image 🔥 */
.about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 136, 0, 0.9);
}

/* 🔥 Animated Border Glow 🔥 */
@keyframes borderGlow {
    0% {
        border-color: red;
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
    }
    50% {
        border-color: yellow;
        box-shadow: 0 0 20px rgba(255, 255, 0, 0.8);
    }
    100% {
        border-color: red;
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
    }
}

/* 🔥 Heading Glow Effect 🔥 */
.about-title {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff8800;
    animation: textGlow 2s infinite alternate;
}

/* 🔥 Animated Text Glow 🔥 */
@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff8800;
    }
    50% {
        text-shadow: 0 0 15px #ff8800, 0 0 30px #ffcc00;
    }
    100% {
        text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff8800;
    }
}

/* Outer Side */
/* Showcase Section */
.Showcase-section {
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(180deg, #ffcc00, black, black, #ff8800,
    black, black, #ffcc00);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Inner Side*/
/* Showcase Container */
.Showcase-container {
    background-color: black;
    display: flex;
    flex-direction: column; /* Yeh line text aur images ko ek column mein layegi */
    align-items: center; /* Yeh title aur text ko center karegi */
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    gap: 5px;
    padding: 50px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 0 20px rgb(255, 0, 0);
    border: 5px solid;
    animation: borderAnimation 2s infinite linear; /* Animation apply ki */
}

/* 🔥 Border Animation 🔥 */
@keyframes borderAnimation {
    0% {
        border-color: red;
        box-shadow: 0 0 20px red;
    }
    50% {
        border-color: orange;
        box-shadow: 0 0 25px orange;
    }
    100% {
        border-color: red;
        box-shadow: 0 0 20px red;
    }
}

.Showcase-title {
    display: block;
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff8800;
}

.Showcase-text {
    display: block;
    text-align: center; /* Yeh line text ko center karegi */
    font-size: 1.3rem;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.6;
    color: #ffcc00;
    max-width: 80%; /* Text ko thoda limited width dene ke liye */
}

.first {
    margin: 30px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    width: 400px;
    height: 400px;
}

.second {
    margin: 30px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    width: 400px;
    height: 400px;
}

.third {
    margin: 30px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    width: 400px;
    height: 400px;
}

.forth {
    margin: 30px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    width: 400px;
    height: 400px;
}

/* Banner Section */
.first-banner {
    margin: 30px;
    margin-right: 470px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    width: 600px;
    height: 240px;
    margin-left: 203px;
}

.second-banner {
    margin: 30px;
    margin-left: 470px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    width: 600px;
    height: 240px;
    margin-right: 209px;
}

.third-banner {
    margin: 30px;
    margin-right: 470px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    width: 600px;
    height: 240px;
    margin-left: 203px;
}

.forth-banner {
    margin: 30px;
    margin-left: 470px;
    object-fit: fill;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    width: 600px;
    height: 240px;
    margin-right: 209px;
}

/* Model Section */
.even-Model {
    margin-right: auto;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    max-width: 600px;
    width: 100%;
    height: 390px;
}

.odd-Model {
    margin-left: auto;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    max-width: 500px;
    width: 100%;
    height: 390px;
}

.third-Model {
    margin: 30px;
    margin-right: 470px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    width: 600px;
    height: 350px;
    margin-left: 203px;
}

.forth-Model {
    margin: 30px;
    margin-left: 470px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    width: 500px;
    height: 390px;
    margin-right: 105px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-900 {
    max-width: 900px;
}

/* Same PFP-Banner Section */
.upper-theme {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.first-P {
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    max-width: 30%;
    height: 258px;
    width: 100%;
}

.first-B {
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    max-width: 65%;
    height: 258px;
    width: 100%;
}

.second-P {
    margin: 32px;
    object-fit: fill;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    width: 258px;
    height: 258px;
}

.second-B {
    margin: 32px;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    width: 542px;
    height: 258px;
    object-fit: cover;
}

.third-P {
    margin: 32px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    width: 258px;
    height: 258px;
}

.third-B {
    margin: 32px;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    width: 542px;
    height: 258px;
}

.forth-P {
    margin: 32px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    width: 258px;
    height: 258px;
}

.forth-B {
    margin: 32px;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    width: 542px;
    height: 258px;
}

/* BOOK COVER */
.first-book {
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    max-width: 600px;
    width: 100%;
    height: 450px;
    margin-left: auto;
}

.second-book {
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    max-width: 600px;
    width: 100%;
    height: 450px;
    margin-right: auto;
}

/* CARDS */
.card {
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    max-width: 350px;
    height: 450px;
}

.videos_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

/* ANIMATED PFP/BANNER */
.first-video {
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    max-width: 30%;
    height: 258px;
}

.first-video-b {
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    max-width: 65%;
    height: 258px;
}

.second-video {
    margin: 32px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    width: 258px;
    height: 258px;
}

.second-video-b {
    margin: 32px;
    object-fit: fill;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    width: 542px;
    height: 258px;
}

/* VTUBER */
.video-v {
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    max-width: 390px;
    width: 100%;
    height: 300px;
}

.odd-video-v {
    border-radius: 20px;
    object-fit: cover;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    width: 390px;
    height: 300px;
}

.third-video-v {
    margin: 32px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    width: 390px;
    height: 300px;
}

.forth-video-v {
    margin: 32px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    width: 390px;
    height: 300px;
}

/* Wallpaper Section */
.even-wall {
    margin-right: auto;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    max-width: 600px;
    height: 400px;
    width: 100%;
}

.odd-wall {
    margin-left: auto;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    max-width: 650px;
    width: 100%;
    height: 400px;
}

/* OVERLAY */
.video-v-O {
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    height: 300px;
}

/* Footer Styling */
.footer {
    width: 100%;
    background: black;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff8800;
    box-shadow: 0 -5px 15px rgba(255, 0, 0, 0.8);
    position: relative;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 20px;
}

.Emote-sheet {
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
}

.flex-wrap {
    flex-wrap: wrap;
}

.panel {
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    height: 140px;
}

.pack {
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    max-width: 550px;
    height: 400px;
}

.second-pack {
    object-fit: fill;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    max-width: 550px;
    height: 400px;
}

.third-pack {
    margin: 30px;
    object-fit: fill;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    width: 550px;
    height: 400px;
    margin-right: 345px;
}

.forth-pack {
    margin: 30px;
    object-fit: fill;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    width: 550px;
    height: 400px;
    margin-left: 345px;
}

.first-pixel {
    margin: 30px;
    object-fit: contain;
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    animation: borderGlow 2s infinite alternate;
    width: 400px;
    height: 400px;
}

/* 🔥 Keyframes for Border Animation 🔥 */
@keyframes borderGlow {
    0% {
        border-color: red;
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
    }
    50% {
        border-color: #ffcc00;
        box-shadow: 0 0 20px rgba(255, 217, 0, 0.8);
    }
    100% {
        border-color: red;
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
    }
}


.Emote-middle {
    border-radius: 20px;
    border: 5px solid orange;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.8);
    object-fit: cover;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 11;
        position: fixed;
        top: 24px;
        right: 16px;
    }

    #hamburger:checked ~ .menu-toggle {
        top: 12px;
        right: 16px;
        transform: none;
    }

    #hamburger:checked ~ .menu-toggle .menu_icon {
        display: none;
    }

    #hamburger:checked ~ .menu-toggle .close_icon {
        display: inline-block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, #ff0000, #ff8800, #ffcc00);
        width: 250px;
        flex-direction: column;
        align-items: start;
        padding: 50px 16px 16px 16px;
        z-index: 10;
        box-shadow: 0 0 10px #ff8800;
        transition: 0.3s ease;
        transform: translateX(100%);
    }

    #hamburger:checked ~ .nav-links {
        transform: translateX(0);
    }

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

    .nav-links li a {
        justify-content: space-between;
    }

    .navbar {
        padding: 8px 16px;
    }

    .Showcase-text {
        max-width: 100%;
    }

    .pack {
        max-width: 70%;
        height: 180px;
    }

    .second-video, .first-video, .first-video-b, .second-video-b, .video-v, .video-v-O {
        height: 150px;
    }

    .images_container {
        gap: 24px;
    }

    .images_container .image {
        height: 200px;
    }

    .banner_images_container .image {
        max-width: 70%;
        height: 150px;
    }

    .card {
        height: 300px;
    }

    .first-P, .first-B, .even-wall, .odd-wall, .odd-Model, .even-Model {
        height: 150px;
    }

    .banner-content {
        width: 70%;
        top: 15%;
    }

    .animated-heading {
        font-size: 1.8rem;
    }

    .animated-phrase {
        font-size: 1rem;
    }

    .Showcase-container {
        grid-template-columns: repeat(1, 1fr); /* 1 column on mobile */
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        max-width: 100%;
    }
}

@media (max-width: 440px) {
    .banner {
        height: 80vh;
    }

    .images_container .image {
        height: auto;
    }

    .images_container {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .banner_images_container {
        gap: 16px;
    }

    .banner_images_container .image {
        max-width: 70%;
        height: 80px;
        border-radius: 14px;
    }

    .Showcase-container, .about-container {
        padding: 24px;
    }

    .first-P, .first-B, .even-wall, .odd-wall, .odd-Model, .even-Model {
        height: auto;
    }

    .upper-theme {
        gap: 16px;
    }

    .mt-10 {
        margin-top: 16px;
    }

    .second-video, .first-video, .first-video-b, .second-video-b {
        height: 90px;
    }

    .card, .pack, .panel, .first-book, .second-book, .video-v, .video-v-O {
        height: auto;
    }

    .about-image img {
        max-width: 100%;
        width: 100%;
    }
}