
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    color: #fff;
    font-family:'Montserrat',sans-serif;

    background-color: #050505;

    /* More prominent layered pattern */
    background-image:
        /* neon glow blobs */
        radial-gradient(circle at 15% 20%, rgba(0, 255, 200, 0.18), transparent 45%),
        radial-gradient(circle at 85% 25%, rgba(255, 0, 150, 0.18), transparent 45%),
        radial-gradient(circle at 50% 85%, rgba(0, 120, 255, 0.16), transparent 50%),

        /* diagonal energy lines */
        repeating-linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px,
            transparent 40px
        ),

        /* horizontal grid */
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);

    background-size:
        100% 100%,
        100% 100%,
        100% 100%,
        120px 120px,
        60px 60px,
        60px 60px;

    background-position: center;

}

    /* Navigation */
    
    .top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

body.body-gaming{
    min-height:100vh;
    font-family:'Montserrat',sans-serif;
    color:#fff;
    overflow-x:hidden;

    background:
    linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.65)
    ),
    url('../img/img2.jpg');

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}

.header {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
}


.header-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 15px 30px;    
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    width: 300px;
    height: auto;
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 40px; /* Adjust the value as needed */
}

.desktop-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color .3s ease;
}

.desktop-nav a:hover {
    color: #ff3c3c;
}

/* Hamburger */
.hamburger {
    display: none;
    width: 35px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 20px;
    transition: .35s ease;
}

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

.hamburger span:nth-child(2) {
    top: 12px;
}

.hamburger span:nth-child(3) {
    top: 24px;
}

/* Animate hamburger to X */
.hamburger.active span:nth-child(1) {
    top: 12px;
    transform: rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    top: 12px;
    transform: rotate(-45deg);
}

/* MOBILE MENU LAYER */
.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(10px);

    display: flex;
    flex-direction: column;
    align-items: center;

    max-height: 0;
    overflow: hidden;

    opacity: 0;
    transform: translateY(-20px);

    transition:
        max-height .5s ease,
        opacity .4s ease,
        transform .4s ease;
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    width: 100%;
    text-align: center;
    padding: 18px;

    border-bottom: 1px solid rgba(255,255,255,0.08);

    opacity: 0;
    transform: translateY(-10px);
    transition: all .4s ease;
}

/* OPEN STATE */
.mobile-nav.show {
    max-height: 350px;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.show a {
    opacity: 1;
    transform: translateY(0);
}


    .top-nav {
        position: absolute;
        top: 20px;
        right: 40px;
        z-index: 1000;
    }

    .top-nav a {
        text-decoration: none;
        color: #fff;
        font-weight: 500;
        margin-left: 25px;
        transition: 0.3s;
    }

    .top-nav a:hover {
        color: #ffc107;
    }

    /* Main Section */
    .intro-section {
    
    min-height: 100vh;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    padding: 160px 20px 40px;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo img {
     height: 60px;
    }

    .nav-menu {
        margin-left: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
    }

    .nav-menu ul li a {
    text-decoration: none;
    color: #222;
    font-size: 16px;
    font-weight: 600;
    }

    .nav-menu ul li a:hover {
    color: #0077ff;
    }

    .nav-menu:not(.active) {
        visibility: hidden;
    }

    .nav-menu.active {
        visibility: visible;
    }

    .category-card {
    background:rgba(0,0,0,0.55);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:18px;
    overflow:hidden;
    transition:.4s;
    }

    .category-card:hover {
    transform:translateY(-10px);
    border-color:#d3a648;
    box-shadow:0 0 30px rgba(0,247,255,.35);
    }

    .category-card img {
    width:100%;
    height:350px;
    object-fit:cover;
    }

    .category-title {
    text-align:center;
    padding:20px;
    font-size:1.3rem;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#d3a648;
    }


    .product-card{
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(10px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:18px;
    overflow:hidden;
    transition:.4s;
    height:100%;
    }

    .product-card:hover{
    transform:translateY(-10px);
    border-color:#d3a648;
    box-shadow:0 0 30px rgba(0,247,255,.35);
    }

.product-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    }

.product-content{
    padding:25px;
    text-align:center;
    }

.product-content h5{
    font-size:1rem;
    font-weight:700;
    margin-bottom:20px;
    text-transform:uppercase;
    letter-spacing:1px;
    }

.product-content .btn{
    border-width:2px;
    padding:10px 25px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    border-color: #d3a648;
    }

.product-content .btn:hover{
    transform:translateY(-2px);
    background-color: #d3a648;
    }

.btn-outline-info{color:#d3a648;}
.text-uppercase{font-size: 3rem; font-weight: 900!important; color: #d3a648;}

    .separator {
    width: 3px;
    height: 280px;
    background: rgba(255,255,255,0.25);
    transform: rotate(20deg);
    margin: 0 40px; /* creates space from images */
    }

    .footer {
    /*position: fixed;*/
    bottom: 0;
    left: 0;
    width: 100%;
    /*background: rgba(0,0,0,0.95);
    border-top: 1px solid rgba(255,255,255,0.1);*/
    padding: 12px 0;
    z-index: 1000;
    }

    .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    }

    .copyright {
    color: #bdbdbd;
    font-size: 14px;
    text-align: center;
    width:100%;
    }

.footer-nav {
    display: flex;
    gap: 25px;
    }

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    }

.footer-nav a:hover {
    color: #ffc107;
    }

.footer p {
    margin: 0;
    }

  .hamburger {
    display: none;
    }  


    /* Product*/
    .product-details-section{
    padding:160px 0 20px;
}

.product-image-wrapper{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.15);
    border-radius:20px;
    overflow:hidden;
    backdrop-filter:blur(10px);
}

.product-image-wrapper img{
    width:100%;
    height:500px;
    object-fit:cover;
}

.product-image-wrapper .carousel-item img{
    width:100%;
    height:500px;
    object-fit:cover;
}


.product-category{
    display:inline-block;
    color:#fff;
    text-transform:uppercase;
    font-size:14px;
    letter-spacing:2px;
    margin-bottom:15px;
    font-weight:700;
}

.product-title{
    font-size:3rem;
    font-weight:900;
    margin-bottom:30px;
    text-transform:uppercase;
    color:#d3a648;
}

.section-heading{
    font-size:1.5rem;
    font-weight:800;
    text-transform:uppercase;
    margin-bottom:15px;
    color:#d3a648;
}

.product-description{
    color:#d8d8d8;
    line-height:1.9;
    font-size:16px;
}

.video-placeholder{
    height:420px;
    border-radius:20px;
    border:1px dashed rgba(255,255,255,.3);
    background:rgba(255,255,255,.05);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    backdrop-filter:blur(8px);
}

.play-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    border:2px solid #00f7ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:20px;
}

.custom-accordion .accordion-item{
    background:rgba(0,0,0,.55);
    border:1px solid rgba(255,255,255,.15);
    margin-bottom:15px;
    border-radius:12px;
    overflow:hidden;
}

.custom-accordion .accordion-button{
    background:transparent;
    color:#fff;
    font-weight:700;
    text-transform:uppercase;
    box-shadow:none;
}

.custom-accordion .accordion-button:not(.collapsed){
    background:rgba(0,247,255,.12);
    color:#00f7ff;
}

.custom-accordion .accordion-body{
    background:transparent;
    color:#d8d8d8;
    line-height:1.8;
}

.custom-accordion ul{
    padding-left:20px;
}

.custom-accordion .accordion-button:not(.collapsed){
    background: rgba(211, 166, 72, 1);
    color: #fff;
}

.custom-accordion .accordion-button{
    background: rgba(211, 166, 72, 1);
}

.carousel-control-prev,
.carousel-control-next{
    width:60px;
    height:60px;
    top:50%;
    transform:translateY(-50%);
    background:rgba(0,0,0,0.7);
    border:2px solid rgba(255,255,255,0.4);
    border-radius:50%;
    opacity:1;
    transition:.3s;
}

.carousel-control-prev{
    left:20px;
}

.carousel-control-next{
    right:20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover{
    background:#d3a648;
    box-shadow:0 0 25px rgba(0,247,255,.9);
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width:2rem;
    height:2rem;
    filter:brightness(0) invert(1);
}

    @media (max-width: 991px) {
    .separator {
        display: none;
    }
    }

    @media (max-width: 768px) {
        .header-logo {
         width: 220px;

        }

        .hamburger {
        display: block;
        }

        .header-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000; /* Solid black layer */
        flex-direction: column;
        align-items: center;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: all 0.4s ease;
    }

    .header-nav.active {
        max-height: 350px;
        padding: 20px 0;
    }

    .header-nav a {
        width: 100%;
        text-align: center;
        padding: 18px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .header-nav:not(.active) a {
        opacity: 0;
    }

    .header-nav.active a {
        opacity: 1;
        transition: opacity 0.3s ease 0.15s;
    }

        .top-nav {
            position: static;
            text-align: center;
            padding: 20px 0;
        }

        .top-nav a {
            display: inline-block;
            margin: 8px 10px;
        }

        .logo {
            max-width: 180px;
            margin-bottom: 30px;
        }

        .category-card img {
            height: 200px;
        }

        .footer {
        position: relative;
        }

        .footer-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        }


        .top-header{
        padding:15px 20px;
    }

    .header-content{
        padding: 15px 20px;
    }

    .header-nav{
        gap:18px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .category-card img{
        height:220px;
    }
    

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        margin-left: 0;
    }

    .desktop-nav {
        display: none;
    }

    .intro-section {
        padding: 120px 20px 30px;
    }

    .product-title{
        font-size:2rem;
    }

    .product-image-wrapper img{
        height:320px;
    }

    .video-placeholder{
        height:250px;
    }

    .product-image-wrapper .carousel-item img{
        height:320px;
    }


    }