
    :root {
        --primary-color: black;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, Helvetica, sans-serif;
    }

    body {
        display: flex;
        flex-direction: column;
        background: rgb(233, 233, 233);
        align-items: center;
    }

    .wrap {
        max-width: 550px;
        width: 100%;
        background: white;

    }

    header {
        width: 100%;
    }

    .navigation_div,
    .logo_div {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navigation_div {
        background-color: var(--primary-color);
        width: 100%;
        padding: 10px;
    }

    .hidden_menu {
        display: none;
    }



    .brand_name {
        font-size: 1.4rem;
        margin-left: 10px;
        color: white;
        font-weight: 600;
        border-bottom: 2px solid var(--primary-color);
    }

    .active_menu {
        background: rgb(226, 226, 226);
        border-bottom: 2px solid var(--primary-color);
    }

    .menu_icon {
        font-size: 1.4rem;
        margin-right: 10px;
        color: white;
        font-weight: 600;
    }

    .navigation_ul {
        display: flex;
        justify-content: space-between;
        align-items: center;
        list-style: none;

        background-color: rgb(255, 255, 255);
        border-bottom: 1px solid rgb(226, 226, 226);

    }

    .hidden_navigation_ul {
        list-style: none;
        background-color: rgb(255, 255, 255);

    }

    .navigation_items {

        height: 100%;
        padding: 6px 4px;

    }

    .hidden_navigation_items {

        height: 100%;
        padding: 10px;
    }

    .navigation_items:hover {

        background: rgb(226, 226, 226);
        border-bottom: 2px solid var(--primary-color);
    }

    .hidden_navigation_items:hover {

        background: rgb(226, 226, 226);
        border-bottom: 2px solid var(--primary-color);
    }


    .navigation_items a {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--primary-color);
        text-decoration: none;

    }

    .hidden_navigation_items a {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--primary-color);
        text-decoration: none;
    }

    .hidden {
        display: block;
    }

    .show {
        display: none;
    }


    .main {
      
    }

    .top_yono_games {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
    }

    .top_yono_games_1 {
        margin-top: 2px;
    }

    .top_yono_game_image {
        width: 100px;
        height: 100px;
    }

    .top_yono_game_heading {
        margin-top: 6px;
    }

    .reating_p {
        font-size: .8rem;
        color: rgb(255, 66, 32);
        margin-top: 5px;
    }

    .app_Verified {
        color: green;
        margin-top: 5px;
        font-size: 0.8rem;
    }

    .Download_button {
        margin: 10px 0px;
        font-weight: 600;
        padding: 8px 15px;
        background: var(--primary-color);
        color: white;
        border: none;
        border-radius: 4px;
    }

    .slider-container {
        width: 100%;
        /* Fixed width for sliding */
       
        overflow: hidden;
        border: 2px solid #444;
        border-radius: 10px;
        position: relative;
    }

    .slider-track {
        display: flex;
        width: fit-content;
        transition: transform 1s ease-in-out;
    }

    .slider-image {
        width: 550px;
        /* Same as container width */
        height: 120px;
        object-fit: cover;
    }


    /* game list  */

    .content {
        max-width: 1200px;
        margin: 0 auto;
        background: white;
    }

    .section-title {
        text-align: center;
        font-size: 1.2em;
        margin-bottom: 20px;
        color: #333;
    }

    .game-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .game-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
        margin-bottom: -1px;
        border-bottom: 1px solid rgb(221, 221, 221);


    }

    .game-item img {
        width: 60px;
        height: 60px;
        border-radius: 10px;
        margin-left: 5px;
    }

    .game-info {
        flex: 1;
        margin-left: 10px;
    }

    .game-info h3 {
        font-size: 1em;
        margin: 0;
    }

    .game-info p {
        margin: 5px 0 0;
        font-size: 0.9em;
        color: #555;
    }

    .download-btn {
        background-image: linear-gradient(147deg, #ff9933 0%, #008000 100%);
        cursor: pointer;
        color: white;
        border: none;
        padding: 9px 15px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 0.9em;
    }

    .download-btn:hover {
        background-color: darkred;
        padding: 8px 13px;
    }


    /* footer */
    .footer-warning {
        background-color: yellow;
        color: red;
        text-align: center;
        padding: 10px;
        font-size: 0.9em;
    }

    .footer {
        background-color: var(--primary-color);
        color: white;
        text-align: center;
        padding: 20px;
        margin-top: 20px;
    }

    .footer .social-icons {
        margin: 10px 0;
    }

    .footer .social-icons a {
        margin: 0 10px;
        text-decoration: none;
        color: white;
        font-size: 1.2em;
    }

    .footer .links {
        margin: 10px 0;
    }

    .footer .links a {
        margin: 5 10px;
        text-decoration: none;
        color: white;
        font-size: 0.9em;
        padding: 6px 20px;
        border-radius: 5px;
    }

    .footer p {
        margin-top: 10px;
        font-size: 1.8em;
    }

    #ontnar_div {
        width: 400px;
        background-color: white;
    }

    .about_game_item {
        display: none;
    }

    .minimum_withdrawl {
        color: rgb(17 88 10);
    }

    .bonus {
        color: #970000;
    }

    @media only screen and (max-width: 500px) {

        .menu_icon,
        .brand_name {
            font-size: 1.2rem;
        }

        .navigation_items a {
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary-color);
            text-decoration: none;

        }
    }

    @media only screen and (max-width: 450px) {



        .navigation_items a {
            font-size: .8rem;
            font-weight: 600;
            color: var(--primary-color);
            text-decoration: none;
            padding: 8px;

        }

        .hidden_navigation_items a {
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary-color);
            text-decoration: none;

        }

        .top_yono_game_image {
            width: 90px;
            height: 90px;
        }

        .top_yono_game_heading {
            font-size: 1rem;
        }

        .app_Verified {
            color: green;
            margin-top: 5px;
            font-size: 0.6rem;

        }



        .game-item img {
            width: 50px;
            height: 50px;
            margin-left: 5px;
        }


    }

    @media only screen and (max-width: 400px) {



        .navigation_items a {
            font-size: .7rem;
            font-weight: 600;
            color: var(--primary-color);
            text-decoration: none;
            padding: 6px;

        }

        .top_yono_game_image {
            width: 80px;
            height: 80px;
        }

        .reating_p {
            font-size: .7rem;

        }

        .game-item {
            font-size: 0.8rem;
        }

    }

    @media only screen and (max-width: 350px) {

        .menu_icon,
        .brand_name {
            font-size: 1rem;
            font-weight: 700;
        }

        .navigation_items a {
            font-size: 0.5rem;
            font-weight: 600;
            color: var(--primary-color);
            text-decoration: none;

        }

        .top_yono_game_image {
            width: 70px;
            height: 70px;
        }

        .top_yono_game_heading {
            font-size: .8rem;
        }

        .app_Verified {
            color: green;
            margin-top: 5px;
            font-size: 0.5rem;
        }

        .Download_button {

            padding: 6px 10px;
            font-size: .7rem;

        }

        .game-item img {
            width: 45px;
            height: 45px;
            margin-left: 2px;
        }

        .game-item {
            padding: 4px;
        }
    }

    @media only screen and (max-width: 300px) {

        .menu_icon,
        .brand_name {
            font-size: .8rem;
            font-weight: 800;

        }

        .menu_icon {
            margin-left: 5px;
        }

        .brand_name {
            margin-right: 5px;
        }

        .navigation_div {
            padding: 5px;
        }

        .navigation_items a {
            font-size: .5rem;
            font-weight: 600;
            color: var(--primary-color);
            text-decoration: none;

        }

        .top_yono_game_image {
            width: 60px;
            height: 60px;
        }

        .game-item img {
            width: 40px;
            height: 40px;
            margin-left: 2px;
        }
    }
    
    .hero{
        background: white;
        display: none;
    }
    .yono_game_list{
        display: none;
    }

    details {
      background: #fff;
      padding: 15px;
      border-radius: 8px;
      margin: 10px 0;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    summary {
      font-weight: bold;
      cursor: pointer;
      color: #0077cc;
    }
    summary:hover {
      text-decoration: underline;
    }
    pre {
      background-color: #2d2d2d;
      color: #f8f8f2;
      padding: 15px;
      border-radius: 8px;
      overflow-x: auto;
    }
    section {
      max-width: 800px;
      margin: 0 auto;
    }
    
    
    .social-sidebar a{
       font-size: 1.4rem;
       color: white;
       margin-left: 10px;
        
    }
    
        .social-sidebar {
      border-top:1px solid white;
      padding: 10px;
        
    }
    
    .hero{
        display:block;
    }
    
    .features_IND_rummy,.about_IND_rummy {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 20px;
  background-color: #f8f9fa;
}

.features_IND_rummy_heading {
  font-size: 28px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 10px;
}

.features_intro {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.features_box {
  background-color: #ffffff;
  border: 2px solid #00b894;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.features_list {
  list-style-type: none;
  padding-left: 0;
}

.features_list li {
  font-size: 16px;
  margin: 10px 0;
  padding-left: 10px;
  color: #2d3436;
  position: relative;
  line-height: 1.6;
}
