:root {
            --bg: #0d0d0d;
            --panel: #111111;
            --card: #1a1a1a;
            --accent: #ff7a00;
            /* orange */
            --muted: #cfcfcf;
            --white: #ffffff;
            --glass: rgba(255, 255, 255, 0.03);
        }

        * {
            box-sizing: border-box
        }
        html, body {
    overflow-x: hidden;
}

h1{
    color: #ff7a00;
}
        body {
            margin: 0;
            font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
            background: linear-gradient(180deg, var(--bg), #070707);
            color: var(--muted);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            line-height: 1.5;
        }

        /* HEADER */
        header {
            position: sticky;
            top: 0;
            z-index: 120;
            backdrop-filter: blur(6px);
            background: linear-gradient(90deg, rgba(17, 17, 17, 0.88), rgba(10, 10, 10, 0.7));
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 28px;
            border-bottom: 1px solid rgba(255, 122, 0, 0.06);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--white);
            font-weight: 700;
            letter-spacing: 0.6px;
            font-size: 20px;
        }

        .logo img {
            width: 200px;
            height: 46px;
            object-fit: cover;
            border-radius: 8px;
            /* background: var(--accent); */
            padding: 6px;
        }

        nav {
            display: flex;
            gap: 18px;
            align-items: center
        }

        nav a {
            color: var(--muted);
            text-decoration: none;
            padding: 8px 10px;
            border-radius: 8px;
            font-weight: 500
        }

        nav a:hover {
            color: var(--white);
            background: rgba(255, 255, 255, 0.02)
        }

        .cta {
            background: linear-gradient(90deg, var(--accent), #ff9a3a);
            color: #111;
            padding: 8px 14px;
            border-radius: 10px;
            font-weight: 700;
            text-decoration: none;
        }

        /* mobile */
        .burger {
            display: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px
        }

        .burger span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--white);
            margin: 4px 0;
            border-radius: 2px
        }

        @media (max-width:860px) {
            nav {
                display: none;
                position: absolute;
                top: 68px;
                right: 16px;
                background: var(--panel);
                padding: 12px;
                border-radius: 10px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
                min-width: 180px;
                flex-direction: column
            }

            nav.show {
                display: flex
            }

            .burger {
                display: block
            }
        }

        /* banner */
        .banner {
            display: flex;
            justify-content: center;
            padding: 26px;
        }

        .banner img {
            width: 100%;
            max-width: 1200px;
            height: 500px;
            /* important */
            display: block;

            border-radius: 12px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.03);
        }

        /* hero */
        .hero {
            text-align: center;
            padding: 48px 20px;
        }

        .hero h1 {
            color: var(--accent);
            font-size: 36px;
            margin: 6px 0 12px;
            letter-spacing: 0.2px;
        }

        .hero p {
            max-width: 900px;
            margin: 0 auto;
            color: var(--muted);
            font-size: 17px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
            padding: 18px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.02);
        }

        /* sections */

        .card.features {
  background: #0f0f0f;
  border-radius: 18px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  height: 100%;
  transition: 0.4s;
}

.card.features:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(0,255,255,0.15);
}

.card.features img {
  width: 100%;
  height: 160px;              /* 👈 sab images same height */
  object-fit: contain;        /* 👈 image poori visible */
  margin-bottom: 18px;
  border-radius: 12px;
  background: #111;
  padding: 10px;
}
.card.features h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}

.card.features p {
  font-size: 15px;
  color: #bbb;
  line-height: 1.6;
}
.section-title {
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}

        
        .markets {
            background: var(--glass);
            padding: 18px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.02)
        }

        .markets ul {
            margin: 8px 0 0;
            padding-left: 18px;
            color: var(--muted)
        }

        .markets li {
            margin: 8px 0
        }


        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 14px;
            margin-top: 12px
        }

        .step {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.005));
            border-radius: 10px;
            padding: 16px;
            border: 1px solid rgba(255, 255, 255, 0.02);
            text-align: left;
        }

        .step h4 {
            margin: 0 0 8px;
            color: var(--white);
            font-size: 15px
        }

        .step p {
            margin: 0;
            color: var(--muted);
            font-size: 14px
        }


        footer {
            padding: 26px 18px;
            text-align: center;
            color: #9e9e9e;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.02)
        }


        @media (max-width:520px) {
            .hero h1 {
                font-size: 28px
            }

            .banner img {
                height: 260px
            }

            .logo img {
                width: 120px;
                height: 40px
            }
        }


        /* games css */
        .games-section {
                max-width: 1200px;
                margin: auto;
                text-align: center;
                background: #111;
                color: #fff;
                font-family: 'Segoe UI', sans-serif;
                padding: 40px 20px;
            }

            .section-title {
                font-size: 28px;
                margin: 25px 0 15px;
                color: #ff7a00;
                font-weight: 700;
            }

            /* CARDS WRAPPER */
            .cards {
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                gap: 25px;
            }

            /* SINGLE CARD */
            .game-card {
                width: 320px;
                background: #1a1a1a;
                border-radius: 12px;
                transition: 0.3s;
                text-align: center;
                padding: 15px;
            }

            .game-card img {
                width: 100%;
                height: 200px;
                object-fit: cover;
                border-radius: 10px;
                margin-bottom: 10px;
            }

            .game-card h3 {
                font-size: 20px;
                color: #fff;
                margin: 8px 0;
            }

            .game-card p {
                color: #cfcfcf;
                font-size: 15px;
                line-height: 1.5;
                margin: 5px 0;
            }

            .game-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
            }

            /* SLOT LIST */
            .slot-list {
                display: flex;
                justify-content: center;
                gap: 15px;
                flex-wrap: wrap;
                margin-top: 15px;
            }

            .slot-item {
                background: #1a1a1a;
                padding: 10px 20px;
                border-radius: 10px;
                font-size: 17px;
                transition: 0.3s;
            }

            .slot-item:hover {
                transform: translateY(-5px);
            }

            /*  */
             /* Center Utility */
            .center {
                text-align: center;
            }

            .center-text {
                text-align: center;
            }

            /* Section Layout */
            .section {
                max-width: 1200px;
                margin: auto;
                font-family: "Segoe UI", sans-serif;
                color: #fff;
            }

            .bg-dark {
                background: #111;
            }

            .section-content {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 25px;
            }

            /* Section Heading */
            .section-heading {
                font-size: 38px;
                color: #ff7a00;
                /* margin-bottom: 35px; */
                font-weight: bold;
            }

            /* Image Styling */
            .section-img {
                width: 100%;
                max-width: 420px;
                border-radius: 12px;
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            }

            /* FAQ Styling */
            .faq-accordion {
                max-width: 800px;
                margin: auto;
            }

            .faq-item {
                background: #1a1a1a;
                margin-bottom: 15px;
                border-radius: 12px;
                overflow: hidden;
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
                text-align: left;
            }

            .faq-question {
                width: 100%;
                padding: 18px 20px;
                background: #222;
                color: #fff;
                border: none;
                font-size: 18px;
                cursor: pointer;
                transition: 0.3s;
                text-align: left;
            }

            .faq-question:hover {
                background: #ff7a00;
                color: #000;
            }

            .faq-answer {
                max-height: 0;
                overflow: hidden;
                background: #111;
                transition: max-height 0.4s ease, padding 0.3s ease;
                padding: 0 20px;
            }

            .faq-answer p {
                color: #cfcfcf;
                margin: 15px 0;
            }

            .faq-item.active .faq-answer {
                max-height: 300px;
                padding: 15px 20px;
            }


            /* footer */

           .footer { 
  color: #aaa;
  padding: 70px 0 30px;
}

.footer-content {
  row-gap: 40px;
}

/* Logo */
.footer-logo {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Section Titles */
.footer-section h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
}

/* Text */
.footer-section p {
  font-size: 14px;
  line-height: 1.7;
}

/* Links */
.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #00ffd5;
  padding-left: 5px;
}
.footer-section.social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* left aligned */
}

/* heading spacing */
.footer-section.social h4 {
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .footer-section.social {
    align-items: center;
    text-align: center;
  }
}
/* Social Icons */
.social-icons {
  display: flex;
  flex-direction: row;   /* 👈 MUST */
  align-items: center;
  gap: 15px;             /* icons ke beech space */
  margin-top: 15px;
}

/* icon box */
.social-icon {
  width: 45px;
  height: 45px;
  background: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: 0.3s;
}

/* icon color */
.social-icon i {
  color: #fff;
}

/* hover colors */
.social-icon.whatsapp:hover {
  background: #25d366;
}

.social-icon.facebook:hover {
  background: #1877f2;
}

.social-icon:hover {
  transform: translateY(-4px);
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 14px;
}

/* Fixed WhatsApp */
.whatsapp-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
  z-index: 999;
}

.whatsapp-fixed img {
  width: 28px;
}

            /* about section */
          
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(90deg, #ff7a00, #ff9a3a);
    color: #111;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-btn .btn-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.about-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 122, 0, 0.4);
}

.about-btn:hover .btn-icon {
    transform: translateX(5px);
}


/* blog section css start */
.blog-section {
  background: #0d0d0d;
  padding: 80px 0;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
}

.section-header p {
  color: #aaa;
  font-size: 16px;
}

/* Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card */
.blog-card {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.blog-card:hover {
  transform: translateY(-10px);
}

/* Image */
.blog-img {
  position: relative;
}

.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Category Badge */
.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #00ffd5, #007bff);
  color: #000;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
}

/* Content */
.blog-content {
  padding: 25px;
}

.blog-content h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
}

.blog-content p {
  color: #bdbdbd;
  font-size: 14px;
  line-height: 1.6;
}

/* Read More */
.read-more {
  display: inline-block;
  margin-top: 15px;
  color: #00ffd5;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.read-more:hover {
  color: #fff;
}

/* blog section css end */


/* blog detail page css */
.blog-detail {
  padding: 80px 0;

  color: #fff;
}

.blog-detail-header {
  max-width: 800px;
  margin: auto;
  text-align: center;
  margin-bottom: 40px;
}

.blog-tag {
  display: inline-block;
  background: #38bdf8;
  color: #020617;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.blog-detail-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.blog-meta {
  color: #94a3b8;
}

.blog-detail-img img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 40px;
}

.blog-detail-content {
  max-width: 850px;
  margin: auto;
  line-height: 1.8;
}

.blog-detail-content h3 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.blog-detail-content p,
.blog-detail-content li {
  color: #cbd5f5;
}


/* contact css */
.dark-contact {
  background: #0d0d0d;
}

.form-area {
  background: #111;
}

.contact-img {
  background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c') center/cover no-repeat;
  min-height: 450px;
}

.img-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,.85), rgba(0,0,0,.6));
}

.dark-input {
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  border-radius: 10px;
  padding: 12px;
}

.dark-input::placeholder {
  color: #aaa;
}

.dark-input:focus {
  background: #1a1a1a;
  color: #fff;
  border-color: #fff;
  box-shadow: none;
}

.btn {
  border-radius: 10px;
}

/* about section css */
.about-section{
  background: radial-gradient(circle at top, #111 0%, #000 60%);
  padding: 80px 6%;
  color: #ddd;
}.about-heading{
  color: #ff8c00;
  font-size: 26px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title{
  margin-top: 60px;
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: 700;
  color: #ff8c00;
}
.about-hero{
  max-width: 850px;
  margin-bottom: 50px;
}

.about-hero h2{
  font-size: 36px;
  color: #fff;
  margin-bottom: 15px;
}

.about-hero p{
  font-size: 16px;
  line-height: 1.7;
  color: #bbb;
}
.mission-area{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.mission-card{
  background: #111;
  border-radius: 18px;
  overflow: hidden;
}

.mission-img{
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.mission-text h3{
  font-size: 26px;
  color: #fff;
  margin-bottom: 10px;
}

.mission-text p{
  color: #bbb;
  line-height: 1.7;
}
.features-area{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
  gap: 25px;
}

.feature-card{
  background: #0f0f0f;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: .4s;
  border: 1px solid rgba(255,255,255,.06);
}

.feature-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(255,140,0,.25);
}

.feature-img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.feature-card h3{
  font-size: 17px;
  color: #fff;
}
.values-cards{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 18px;
}

.values-cards .card{
  background: linear-gradient(145deg,#111,#000);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  font-weight: 600;
  color: #ff8c00;
  border: 1px solid rgba(255,140,0,.25);
}
.join-text{
  max-width: 850px;
  color: #bbb;
  font-size: 16px;
  line-height: 1.7;
}
@media(max-width:768px){
  .mission-area{
    grid-template-columns: 1fr;
  }

  .about-hero h2{
    font-size: 28px;
  }
}
