* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    overflow-x: hidden;
}


/*............HEADER ............. */
 

.hdr-top-header {
    background: linear-gradient(134deg, rgb(6, 5, 87), rgb(0, 209, 253));
    padding: 8px 15px;
    color: white;
}

.hdr-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
}

/* Logo */
.hdr-logo img {
    max-height: 50px;
}

/* Desktop Auth */
.hdr-auth-desktop {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hdr-input {
    border: none;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 14px;
    width: 150px;
}

/* Buttons */
.hdr-btn {
    border: none;
    border-radius: 4px;
    padding: 6px 15px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: white;
}

.hdr-btn-login {
    background: red;
    
}

.hdr-btn-register {
    background: red;
}

/* Mobile */
.hdr-mobile {
    display: none;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.hdr-mobile-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hdr-hamburger {
    font-size: 24px;
    background: none;
    border: none;
    color: white;
}

.hdr-mobile-right {
    display: flex;
    gap: 8px;
}

.hdr-btn-mobile {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    color: white;
}

.hdr-btn-demo {
    background: linear-gradient(rgb(243, 35, 34), rgb(192, 28, 3));
}

.hdr-btn-login-m {
    background: #243A48;
}

/* ================= MOBILE SLIDE MENU ================= */

.hdr-mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    transition: 0.3s ease-in-out;
    box-shadow: 4px 0 15px rgba(0,0,0,0.2);
}

.hdr-mobile-menu.active {
    left: 0;
}

/* Header */
.hdr-mobile-menu-header {
    background: linear-gradient(134deg, #061057, #00d1fd);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hdr-menu-close {
    background: transparent;
    border: 2px solid white;
    color: white;
    font-size: 18px;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    cursor: pointer;
}

/* Menu List */
.hdr-mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hdr-mobile-menu-list li {
    border-bottom: 1px solid #ddd;
}

.hdr-mobile-menu-list a {
    display: block;
    padding: 14px 16px;
    font-size: 18px;
    color: red;
    text-decoration: none;
    font-weight: 500;
}

.hdr-mobile-menu-list a:hover {
    background: #f5f5f5;
}


/* Responsive */
@media (max-width: 991px) {

    .hdr-auth-desktop,
    .hdr-logo {
        display: none !important;
    }

    .hdr-mobile {
        display: flex;
    }

    .hdr-container {
        height: auto;
        padding: 5px 0;
    }
}


/* ===== NAVBAR ===== */
.nav-bar {
    height: 50px;
    background: #08a4f3;
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.nav-bar a {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 16px;
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.nav-bar a:hover,
.nav-bar a.active {
    background: #52c4ff;
}

 

/* ===== SPORTS CARDS ===== */
.sport-card {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 6px;
}

.big-card {
    height: 390px;
}

.sport-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.2s;
}

.sport-card:hover img {
    transform: scale(1.15);
}

/* Overlay */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-overlay h3 {
    margin: 0;
    font-size: 18px;
}

/* Play Button */
.play-btn {
    background: #fff;
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.play-btn:hover {
    background: #08a4f3;
    color: #fff;
}



/* ===== GAME GRID ===......................== */
.game-card {
    position: relative;
    width: 100%;
    height: 230px;
    border-radius: 6px;
    overflow: hidden;
    background: #000;
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
    background-size: cover;
}

.game-card:hover img {
    transform: scale(1.09);
}

/* Bottom bar */
.game-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    color: #fff;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.game-footer span {
    font-size: 15px;
    font-weight: 700;
}

.game-footer a {
    background: #fff;
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.game-footer a:hover {
    background: #08a4f3;
    color: #fff;
}


/* ===== ABOUT SECTION ...............................................................===== */
.about-title {
    font-size: 34px;
    font-weight: 1000;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 14px;
}

.about-image {
    background: #8b0000;
    border-radius: 16px;
    padding: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}

/* ===== LASER BUTTON ===== */
.laser-btn {
    background: #e11c1c;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
}

.laser-btn:hover {
    background: #c91313;
    color: #fff;
}

/* new curcle............................................................. */
/* ===== QUICK STATS ===== */
.stat-circle {
    width: 180px;
    height: 220px;
    border: 3px solid #e11c1c;
    border-radius: 50%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-circle h3 {
    color: #e11c1c;
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 8px;
}

.stat-circle p {
    margin: 0;
    font-size: 15px;
    color: #444;
}

/* new part ................................. */



/* ===== BENEFITS LIST ===== */
.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    position: relative;
    padding-left: 38px;
    margin-bottom: 15px;
    font-size: 16px;
}

.benefits-list li::before {
    content: "➤";
    position: absolute;
    left: 0;
    top: 0;
    background: #e11c1c;
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    text-align: center;
    line-height: 26px;
    font-size: 14px;
}

/* ===== BUTTONS ===== */
.btn-register {
    background: #16a34a;
    color: #fff;
    padding: 14px 22px;
    font-weight: 700;
    border-radius: 6px;
}

.btn-login {
    background: #ef3030;
    color: #fff;
    padding: 14px 22px;
    font-weight: 700;
    border-radius: 6px;
}




/* new,.,.,.,.,.,.,.,.,.,.,.,.,.,.,.,.,.,.,.,.,.,.,.,.,. */
.services-section {
    background: #f5f5f5;
}

/* Card */
.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    height: 100%;
}

/* Image */
.service-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* Content */
.service-content {
    padding: 25px 20px;
}

.service-content h4 {
    font-weight: 800;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 14px;
    margin-bottom: 15px;
}

/* List */
.service-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.service-content ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.service-content ul li::before {
    content: "✓ ";
    font-weight: bold;
}


/* Button */
.service-btn {
    display: inline-block;
    background: #e11c1c;
    color: #fff;
    padding: 12px 22px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
}

.service-btn:hover {
    background: #c41616;
    color: #fff;
}


/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablet & Mobile Devices */
@media (max-width: 991px) {

    /* Top Header Stacking */
    .top-header {
        height: auto;
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }

    .login-area {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .login-area input {
        width: 48%;
        /* Split inputs 50/50 approx */
        margin-right: 0;
    }

    .btn {
        flex: 1;
        text-align: center;
        margin-left: 0;
    }

    /* Navbar - Horizontal Scroll */
    .nav-bar {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
        /* Space for scrollbar if any */
    }

    .nav-bar::-webkit-scrollbar {
        height: 4px;
    }

    .nav-bar::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
    }

    /* Adjust Card Heights */
    .sport-card {
        height: 200px;
    }

    .big-card {
        height: 250px;
    }
}

/* Mobile Devices Only */
@media (max-width: 576px) {

    /* Login Inputs Full Width */
    .login-area input {
        width: 100%;
    }

    .btn {
        width: 48%;
        /* Buttons side by side */
        flex: none;
    }

    /* Adjust Game Cards */
    .game-card {
        height: 180px;
    }

    /* About Section Text */
    .about-title {
        font-size: 24px;
    }

    /* Stats Circles Grid */
    .stat-circle {
        width: 140px;
        height: 140px;
    }

    .stat-circle h3 {
        font-size: 18px;
    }

    .stat-circle p {
        font-size: 12px;
    }

    /* Services Images */
    .service-img {
        height: 200px;
    }
}

/* new///////////////////////////////////////////////////////////////// */
/* ================= WHY LASER247 ================= */
/* Card overall size reduced */
.why-card {
    background: linear-gradient(180deg, #073c6a, #045c8c);
    border-radius: 8px;
    padding: 20px 20px;
    /* reduced padding */
    height: 100%;
    color: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

/* icon + heading inline */
.icon-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

/* icon size reduced */
.why-icon-img {
    width: 42px;
    /* smaller icon */
    height: auto;
    flex-shrink: 0;
}

/* heading size reduced */
.why-card h4 {
    font-size: 16px;
    font-weight: 800;
    margin: 0;
}

/* paragraph smaller */
.why-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* list spacing reduced */
.why-card ul {
    padding-left: 16px;
    margin-bottom: 0;
}

.why-card ul li {
    font-size: 13.5px;
    margin-bottom: 6px;
}

.why-laser247 {
    background: linear-gradient(90deg, #063a63 0%, #2babdd 100%);
}


.why-card {
    background: linear-gradient(180deg, #2b7abe 0%, #062b4d 100%);
    border-radius: 10px;
    padding: 22px;
    height: 100%;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}


/* new/./././././././././././././//./././././././././././././././././././././ */
.steps-section {
    background: #ffffff;
}

.step-card {
    background: #fff;
    border-radius: 6px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    position: relative;
}

.step-badge {
    background: #e01e0a;
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.step-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    line-height: 1.6;
}

.step-card ul {
    padding-left: 18px;
}

.step-card ul li {
    margin-bottom: 6px;
}


/* new ()()()))()(()())())()()()()()()()()()()()()()(()()()()()()()()()()()()()()() */
.popular-games {
    background: #fff;
}

.game-card2 {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-card2 h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

.game-card2 p {
    font-size: 15px;
    margin-bottom: 10px;
}

.game-card2 .btn {
    align-self: flex-start;
    padding: 8px 22px;
    border-radius: 6px;
    font-weight: 600;
}

/* new scrol fav. game img,,,,,,,........................................ */
.favorite-sports {
    background: linear-gradient(135deg, #028ecf, #003b6f);
    padding: 60px 0;
}

.fav-sport-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    padding: 18px 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: 0.3s ease;
}

.fav-sport-card img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    margin-bottom: 8px;
}



.fav-sport-card p {
    font-weight: 600;
    margin: 0;
}

.btn-sport-card {
    background: #e01c0f;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
}

/* new /m/m/m/m/m/m/m/m/m/m/m/m/m/m/m/m/m/m/m/m/m/m/m/m//m/mm//m/m/m/m/m//m*/
.bonus-section {
    background: #f8f9fa;
}

.bonus-card {
    background: #fff;
    height: 100%;
    padding: 25px 22px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.bonus-tag {
    background: #e21d13;
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
    text-align: center;
}

.bonus-card h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.bonus-card p {
    margin-bottom: 10px;
}

.bonus-card ul {
    padding-left: 18px;
    flex-grow: 1;
}

.bonus-card ul li {
    margin-bottom: 8px;
    list-style: "✓ ";
}

.bonus-btn {
    background: #e21d13;
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
}

.bonus-btn:hover {
    background: #c41710;
    color: #fff;
}

/* new part /n/n/n//n/n// */
.laser-id-section {
    background: #f8f9fa;
}

.laser-id-section img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.laser-id-section h4 {
    border-bottom: 2px solid #e21d13;
    padding-bottom: 8px;
}

.laser-id-section ul {
    padding-left: 20px;
}

.laser-id-section ul li {
    margin-bottom: 8px;
    list-style: disc;
}

.onlybtn{
    text-align: center;
}


/* new c/c/c/c/c/c/c//c/c/c/c/c/c/c/c/c/c/c/c/c/c/c/c//c/c/c//cc///c//c */
/* App Download Section */
.app-download-section {
    background: #fff;
}

.app-title {
    font-size: 32px;
    font-weight: 700;
}

.app-title span {
    color: #e11c1c;
}

.rating {
    font-size: 16px;
    margin-bottom: 10px;
}

.app-info {
    padding-left: 18px;
}

.app-info li {
    margin-bottom: 5px;
}

.features-list {
    padding-left: 18px;
}

.features-list li {
    margin-bottom: 6px;
    list-style: "✓ ";
    color: #000;
}

.download-buttons .btn {
    padding: 10px 18px;
    font-weight: 600;
    margin-right: 10px;
    border-radius: 6px;
    
}

.btn-android {
    background: #e11c1c;
    color: #fff;
    
}

.btn-android:hover {
    background: #b91515;
    color: #fff;
}

.btn-iphone {
    background: #d90c0c;
    color: #fff;
}

.btn-iphone:hover {
    background: #c3300f;
    color: #fff;
}

.app-image-box {
    background: #7a0000;
    padding: 20px;
    border-radius: 12px;
}


/* new section ................................................................. */
.bet-steps-section h2 {
    font-weight: 700;
}

.bet-steps-section h2 span {
    color: red;
}

/* Card */
.bet-card {
    position: relative;
    height: 100%;
    padding: 40px 25px 70px;
    border: 3px solid red;
    border-radius: 18px;
    background: linear-gradient(to bottom, #fff, #f15a4a);
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Icon */
.bet-icon {
    font-size: 40px;
    color: red;
    margin-bottom: 15px;
}

/* Title */
.bet-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    text-decoration: underline;
}

/* Text */
.bet-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* Step Number */
.step-no {
    position: absolute;
    right: 20px;
    bottom: 15px;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
}


 
/* Recent Blog Section....................................................................... */
.recent-blog-section h2 {
    font-weight: 700;
}

/* Blog Card */
.blog-card {
    border: 1px solid #ddd;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    background: #fff;
    transition: 0.3s;
}

.blog-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

/* Image */
.blog-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
}

/* Content */
.blog-content {
    padding: 20px;
}

.blog-content h5 {
    color: #e11c1c;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-date {
    color: #999;
    font-size: 14px;
}


/* newewewew */

.testimonial-card{
  border:1px solid #e3e3e3;
  border-radius:8px;
}

.avatar{
  width:40px;
  height:40px;
  background:#dcdcdc;
  border-radius:50%;
}

 
/* new  .,/,.,/.....................,...,,,,,,,,,,,,,, */
 
.responsible-gaming{
  background:#fff;
}

.rg-card{
  background:#ffffff;
  padding:25px;
  border-radius:12px;
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
}

.rg-card ul li{
  margin-bottom:12px;
  font-size:15px;
}

.warning-list li{
  color:#000;
}
 

/* new section .................................... */
 
.winning-section{
  background:#fff;
}

.offer-text{
  font-size:16px;
}

.bonus-list{
  max-width:500px;
}

.bonus-item{
  display:flex;
  align-items:center;
  font-size:17px;
  margin-bottom:16px;
}

.check{
  background:#19b400;
  color:#fff;
  font-weight:bold;
  width:24px;
  height:24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-right:12px;
  border-radius:2px;
}
 

/* new.................................... */
 
.exchange-links{
  font-size:14px;
  font-weight:500;
}

.license-box{
  max-width:900px;
  border:1px solid #ccc;
  border-radius:15px;
  padding:25px;
  gap:25px;
}

.logo-box{
  width:200px;
  border-right:1px solid #ddd;
  padding-right:20px;
}

.license-text{
  flex:1;
  font-size:14px;
}

.small-text{
  font-size:13px;
}
 

/* new footer............................................. */
 
.footer-links a{
  color:#000 !important;     
  text-decoration:none !important;   
}

.footer-links a.red{
  color:#e60000 !important;  
}  

.footer-links a:hover{
  color:#0ba6be !important;
  text-decoration:none !important;
}


/* end footer */


 .footer-bar {
      background-color: #000;
      color: #fff;
      padding: 20px 15px;
      text-align: center;
      font-size: 1rem;
    }

    .footer-bar .highlight {
      color: #ff2b2b;
      font-weight: 600;
    }





.whatsapp-float-text{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:rgb(9, 5, 5);
    padding:12px 18px;
    border-radius:30px;
    text-decoration:none;
    font-size:16px;
    display:flex;
    align-items:center;
    gap:10px;
    box-shadow:2px 2px 6px rgba(0,0,0,0.3);
}

.whatsapp-float-text i{
    font-size:28px;
}

.whatsapp-float-text:hover{
    background:#149b4a;
    color:white;
}
