body{
    background-color: black;
    
}
.navmode {
    background-image: linear-gradient(to right, #1a1a1a, #333333, #1a1a1a);
    height: 50px;
    border-radius: 25px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}
.search-results {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    background-color: #333;
    color: #f5a623;
    border-radius: 10px;
    text-align: center;
    display: none; /* Hide by default */
}

.search-results.visible {
    display: block;
}

.not-found {
    color: #f5a623;
    font-size: 1.5rem;
    font-weight: bold;
}

.search-results ul {
    list-style-type: none;
    padding: 0;
}

.search-results ul li {
    padding: 10px;
    background-color: #444;
    margin: 5px 0;
    border-radius: 5px;
    text-align: left;
}

.search-results ul li h3 {
    margin: 0;
    font-size: 1.25rem;
}

.search-results ul li p {
    margin: 0;
    color: #ddd;
}

.search-results {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    background-color: #333;
    color: #f5a623;
    border-radius: 10px;
    text-align: center;
    display: none; /* Hide by default */
}

.search-results.visible {
    display: block;
}

.not-found {
    color: #f5a623;
    font-size: 1.5rem;
    font-weight: bold;
}


.logomode {
    align-items: start;
    width: 90px;
    height: 90px;
    margin-top: 10px;
    transition: transform 0.3s ease;
}

.logomode:hover {
    transform: scale(1.5);
}

.logonamemode {
    font-size: 2.5rem;
    color: #f5a623;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-left: -60px;
    margin-top: 39px;
    display: flex;
    align-items: center;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.marqueemode {
    margin-top: 0;
    font-size: 1.2rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    text-align: center;
}

.menumode {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menubottonmode {
    padding: 8px 15px;
    background-image: linear-gradient(to right, #444444, #222222);
    color: #f5a623;
    font-size: 1rem;
    font-weight: bold;
    border: 2px solid #f5a623;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menubottonmode:hover {
    color: #fff;
    background-image: linear-gradient(to right, #f5a623, #d87e12);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.menubottonmode1 {
    padding: 8px 15px;
    background-image: linear-gradient(to right, #444444, #222222);
    color: #f5a623;
    font-size: 1rem;
    font-weight: bold;
    border: 2px solid #f5a623;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menubottonmode1:hover {
    color: #fff;
    background-image: linear-gradient(to right, #f5a623, #d87e12);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

/* body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
} */

.hero-section {
    height: 100vh;
    background-image: url('a6.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    border-radius: 25px;
}

.hero-content h1 {
    font-size: 4rem;
    margin: 0;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.5rem;
    margin-top: 20px;
    opacity: 0.8;
}

.luxury-content {
    padding: 100px 20px;
    background-color: #f7f7f7;
}

.content-block {
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
}

.content-block h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #444;
}
/* mobile */
/* General styles for the nav bar */
.navmode {
    background-image: linear-gradient(to right, #1a1a1a, #333333, #1a1a1a);
    height: auto;
    border-radius: 25px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column; /* Stack items vertically on mobile */
    align-items: center;
    padding: 0 20px;
    position: relative;
}

/* Logo and hamburger icon */
.logomode {
    width: 90px;
    height: 90px;
    margin-top: 10px;
    transition: transform 0.3s ease;
}

.logomode:hover {
    transform: scale(1.5);
}

.company-info {
    text-align: center;
}

.logonamemode {
    font-size: 2.5rem;
    color: #f5a623;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.marqueemode {
    margin-top: 0;
    font-size: 1.2rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* Menu styles */
.menumode, .mobile-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.menumode a, .mobile-menu a {
    padding: 8px 15px;
    background-image: linear-gradient(to right, #444444, #222222);
    color: #f5a623;
    font-size: 1rem;
    font-weight: bold;
    border: 2px solid #f5a623;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menumode a:hover, .mobile-menu a:hover {
    color: #fff;
    background-image: linear-gradient(to right, #f5a623, #d87e12);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

/* Hide mobile menu by default */
.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #1a1a1a;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 80px; /* Adjust based on nav height */
    left: 0;
}

/* Show hamburger button on mobile */
.hamburger {
    display: none;
    font-size: 2rem;
    color: #f5a623;
    cursor: pointer;
    padding: 15px;
}

/* Mobile styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .menumode {
        display: none;
    }
    
    .mobile-menu.active {
        display: flex;
    }
}

/* Desktop styles */
@media (min-width: 769px) {
    .mobile-menu {
        display: none;
    }
}

/* mobile */

.content-block p {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.8;
}

.parallax-section {
    height: 80vh;
    background-image: url('cod.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.parallax-content h2 {
    font-size: 3rem;
    margin: 0;
    font-weight: 700;
}

.parallax-content p {
    font-size: 1.25rem;
    margin-top: 20px;
    opacity: 0.9;
}

.gallery-section {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    background-color: #eee;
}

.gallery-item {
    width: 30%;
    margin: 20px 0;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}
.platform-section {
    padding: 100px 20px;
    background-color: #222;
    color: white;
    text-align: center;
}

.platform-section h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    color: #f5a623;
    font-weight: 700;
}

.platform-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.platform-btn {
    background: linear-gradient(45deg, #3a3a3a, #1a1a1a);
    border: 2px solid #f5a623;
    color: #f5a623;
    font-size: 1.25rem;
    padding: 15px 30px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    width: 250px;
}

.platform-btn:hover {
    background: linear-gradient(45deg, #f5a623, #d87e12);
    color: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.platform-btn:active {
    transform: translateY(0);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}


footer {
    background-color: rgb(72, 72, 72);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    border-radius: 25px;
  }
  
  .footer .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .footer .footer-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  
  .footer .footer-col {
    flex: 5;
    min-width: 250px;
    margin: 20px 0;
  }
  
  .footer .footer-col h4 {
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
  }
  
  .footer .footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background: #e91e63;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
  }
  
  .footer .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer .footer-col ul li {
    margin-bottom: 10px;
  }
  
  .footer .footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #bbb;
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
  }
  .footer .footer-col ul li a:hover {
    color: #fff;
    padding-left: 10px;
  }
  .footer .footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background: rgba(44, 44, 44, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.5s ease;
  }
  .footer .footer-col .social-links a:hover {
    color: #24262b;
    background: #fff;
  }
  
  .game-section {
    padding: 50px 20px;
    text-align: center;
}

.game-section h2 {
    font-size: 2.5rem;
    color: #f5a623;
    margin-bottom: 40px;
    text-shadow: 2px 2px 5px #000;
}

.game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.game-card {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    color: #f5a623;
}

.game-card:hover {
    transform: translateY(-10px);
}

.game-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.game-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 5px #000;
}

.game-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #ddd;
}
html{
    scroll-behavior: smooth;
}  
body {
    background-color: black;
}

.navmode {
    background-image: linear-gradient(to right, #1a1a1a, #333333, #1a1a1a);
    border-radius: 25px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

/* Top Line: Logo, Company Name, and Marquee */
.top-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.logomode {
    width: 90px;
    height: 90px;
    transition: transform 0.3s ease;
}

.logomode:hover {
    transform: scale(1.5);
}

.company-info {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.logonamemode {
    font-size: 2.5rem;
    color: #f5a623;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.marqueemode {
    font-size: 1.2rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* Bottom Line: Menu and Search Bar */
.bottom-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.menumode {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-bar input {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #f5a623;
    background: #333;
    color: #f5a623;
}

.search-bar button {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    background: #f5a623;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s ease;
}

.search-bar button:hover {
    background: #d87e12;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #1a1a1a;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 80px; /* Adjust based on nav height */
    left: 0;
}

.hamburger {
    display: none;
    font-size: 2rem;
    color: #f5a623;
    cursor: pointer;
    padding: 15px;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .menumode {
        display: none;
    }
    
    .mobile-menu.active {
        display: flex;
    }
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none;
    }
}













































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

body {
    font-family: Arial, sans-serif;
    position: relative;
}

/* Navigation Bar Styles */
nav {
    background-color: #333;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Top Line (Logo, Company Name, and Marquee) */
.top-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logomode {
    width: 50px;
    height: 50px;
}

.company-info {
    text-align: center;
}

.logonamemode {
    color: white;
}

.marqueemode h3 {
    color: yellow;
}

/* Bottom Line (Menu and Search Bar) */
.bottom-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Horizontal Button Menu */
.menumode {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.menubottonmode, .menubottonmode1 {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    background-color: #007BFF;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

.menubottonmode1 {
    background-image: linear-gradient(rgb(0, 0, 90), rgb(38, 32, 0), black);
    border-radius: 5px;
}

/* Search Bar outside Nav */
.search-bar {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#search-input {
    width: 50%;
    padding: 10px;
    font-size: 1rem;
    border: 2px solid #ccc;
    border-radius: 5px;
}

#search-button {
    padding: 10px;
    margin-left: 10px;
    background-color: #007BFF;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

#search-button:hover {
    background-color: #0056b3;
}

/* Overlay Style */
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 500;
}

.active {
    display: block;
}

/* Mobile Menu Styles (not part of request but included for completeness) */
.mobile-menu {
    display: none;
}