@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&display=swap');
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, sans-serif;
  background:#07111f;
  color:#fff;
}

.site-header{
  width:100%;
  background:#0d1626;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
}

.navbar{
  max-width:1360px;
  margin:auto;
  padding:20px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:32px;
  font-weight:800;
  letter-spacing:1px;
}

.navbar ul{
  list-style:none;
  display:flex;
  gap:34px;
}

.navbar a{
  color:#fff;
  text-decoration:none;
  font-size:20px;
  font-weight:700;
}

.navbar a:hover{
  color:#ef2020;
}

.menu-btn{
  display:none;
  background:none;
  border:none;
  color:white;
  font-size:30px;
}

.hero{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:140px 20px 90px;
  background:
    linear-gradient(90deg, rgba(7,12,25,0.95), rgba(145,20,24,0.9)),
    radial-gradient(circle at right, rgba(255,0,0,0.25), transparent 45%);
}

.hero-content{
  max-width:1000px;
}

.badge{
  display:inline-block;
  padding:14px 34px;
  border-radius:50px;
  background:rgba(255,255,255,0.15);
  margin-bottom:45px;
  font-size:24px;
}

.hero h1{
  font-size:62px;
  line-height:1.1;
  margin-bottom:28px;
  font-weight:800;
}

.hero p{
  font-size:24px;
}

.hero-actions{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  margin-top:36px;
}

.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding:20px 34px;
  border-radius:9px;
  font-size:20px;
  font-weight:800;
  text-decoration:none;
  border:2px solid transparent;
  min-width:260px;
  margin:0;
  transition:0.25s ease;
}

.btn:hover{
  transform:translateY(-3px);
}

.primary{
  background:#ef2020;
  color:#fff;
}

.light{
  background:#fff;
  color:#0f172a;
}

.secondary{
  background:transparent;
  color:#fff;
  border-color:#fff;
}

.section{
  padding:80px 40px;
  text-align:center;
}

.section h2{
  font-size:42px;
  margin-bottom:35px;
}

.cards{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}

.card{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:14px;
  padding:35px 25px;
}

.card span{
  display:inline-flex;
  width:60px;
  height:60px;
  border-radius:50%;
  background:#ef2020;
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-weight:800;
  margin-bottom:18px;
}

.card h3{
  font-size:25px;
  margin-bottom:14px;
}

.card p{
  color:#d1d5db;
  line-height:1.6;
  font-size:18px;
}

.text-link{
  display:inline-block;
  margin-top:16px;
  color:#ef2020;
  font-weight:800;
  text-decoration:none;
}

.dark-section{
  background:#06101d;
}

.table-wrap{
  max-width:900px;
  margin:auto;
  overflow-x:auto;
}

table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  color:#111827;
  border-radius:10px;
  overflow:hidden;
}

th,td{
  padding:18px;
  border-bottom:1px solid #ddd;
  font-size:18px;
}

th{
  background:#ef2020;
  color:#fff;
}

.note{
  margin-top:18px;
  color:#d1d5db;
}

.form-section{
  background:#0d1626;
}

.new-account-box{
  max-width:650px;
  margin:0 auto 28px;
  background:rgba(255,255,255,0.06);
  border-radius:14px;
  padding:25px;
}

.new-account-box h3{
  font-size:26px;
  margin-bottom:10px;
}

.new-account-box p{
  color:#d1d5db;
  margin-bottom:18px;
  font-size:18px;
}

.register-form{
  max-width:600px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:14px;
  text-align:left;
}

.register-form label{
  font-weight:700;
}

.register-form input{
  padding:16px;
  border:none;
  border-radius:8px;
  font-size:17px;
}

.full{
  width:100%;
  cursor:pointer;
}

.contact-section{
  background:#07111f;
}

.contact-section p{
  font-size:20px;
  margin:10px 0;
}

footer{
  background:#020617;
  text-align:center;
  padding:25px;
  color:#d1d5db;
}

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

  .navbar ul{
    display:none;
    position:absolute;
    top:75px;
    left:0;
    width:100%;
    background:#0d1626;
    flex-direction:column;
    padding:20px;
    text-align:center;
  }

  .navbar ul.active{
    display:flex;
  }

  .hero h1{
    font-size:42px;
  }

  .hero p{
    font-size:19px;
  }

  .badge{
    font-size:18px;
  }

  .hero-actions{
    flex-direction:column;
  }

  .btn{
    width:100%;
    max-width:340px;
    font-size:18px;
    min-width:unset;
  }

  .cards{
    grid-template-columns:1fr;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&display=swap');

.hero h1{
    font-family:'Poppins', sans-serif;
    font-size:72px;
    font-weight:700;
    line-height:1.1;
    letter-spacing:-2px;
    color:#ffffff;
    margin-bottom:25px;
}

.hero p{
    font-family:'Poppins', sans-serif;
    font-size:28px;
    font-weight:500;
    color:#f5f5f5;
}

/* ===== Competition Page Styles ===== */
.competition-page{
  padding-top:90px;
  background:#001112;
  min-height:100vh;
  color:#fff;
}

.competition-hero{
  text-align:center;
  padding:70px 20px 35px;
  background:linear-gradient(90deg,#07111f,#7f1418);
}

.live-badge{
  display:inline-block;
  background:#4b9660;
  padding:6px 18px;
  border-radius:30px;
  font-size:13px;
  font-weight:800;
  margin-bottom:25px;
}

.competition-hero h1{
  max-width:900px;
  margin:0 auto 18px;
  font-size:42px;
  line-height:1.2;
  color:#fff;
}

.competition-hero p{
  color:#f3f4f6;
  font-size:18px;
  margin-bottom:25px;
}

.competition-leaderboard{
  text-align:center;
  padding:45px 20px 20px;
}

.competition-leaderboard h2{
  color:#ff3b22;
  margin-bottom:25px;
}

.winner-row{
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:22px;
  flex-wrap:wrap;
}

.winner-card{
  width:140px;
  text-align:center;
}

.winner-img{
  width:92px;
  height:92px;
  margin:0 auto 10px;
  border-radius:50%;
  border:5px solid #ff7a00;
  background:#fff;
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:42px;
  box-shadow:0 0 20px rgba(255,80,0,0.7);
}

.winner-card h3{
  font-size:12px;
  color:#ffc400;
}

.winner-card p{
  font-size:10px;
  color:#fff;
}

.rank-search{
  max-width:540px;
  margin:20px auto 40px;
  text-align:center;
  padding:0 15px;
}

.rank-search input{
  width:100%;
  height:46px;
  border:3px solid #1d28ff;
  border-radius:4px;
  text-align:center;
  font-size:18px;
  font-weight:700;
  margin-bottom:18px;
}

.rank-search button{
  background:none;
  border:none;
  color:#fff;
  font-size:18px;
  font-weight:800;
  cursor:pointer;
  margin-bottom:22px;
}

.rank-search p{
  color:#ffc400;
  font-size:15px;
  font-weight:600;
}

.rank-result{
  width:100%;
  margin:0 auto 45px;
  padding:0 12px;
}

.rank-table-wrap{
  width:100%;
  overflow-x:auto;
}

.rank-table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  color:#111;
  min-width:760px;
}

.rank-table th{
  background:#d9eef7;
  padding:18px;
  font-size:18px;
  text-align:left;
}

.rank-table td{
  padding:18px;
  font-size:18px;
  border-top:1px solid #ddd;
}

.not-found{
  max-width:540px;
  margin:auto;
  background:#200b0b;
  border:2px solid #ff2525;
  border-radius:10px;
  padding:25px;
  text-align:center;
}

.not-found h3{
  color:#ff2a2a;
  margin-bottom:10px;
}

.competition-info{
  max-width:700px;
  margin:0 auto 28px;
  border:2px solid #ff1d1d;
  border-radius:12px;
  padding:30px;
  text-align:center;
  box-shadow:0 0 25px rgba(255,0,0,0.3);
}

.competition-info h2{
  color:#ff3b22;
  font-size:23px;
  margin-bottom:16px;
}

.competition-info p{
  font-size:14px;
  margin-bottom:18px;
}

.competition-info ul{
  list-style:none;
  text-align:left;
  max-width:520px;
  margin:20px auto;
  line-height:2;
  font-size:15px;
}

.join-btn{
  display:inline-block;
  background:#ff2a2a;
  color:#fff;
  text-decoration:none;
  padding:13px 28px;
  border-radius:30px;
  font-weight:800;
  box-shadow:0 0 15px rgba(255,0,0,0.5);
}

.partner{
  margin-top:15px;
  color:#ddd;
  font-size:13px;
}

.prize-box{
  max-width:700px;
  margin:0 auto 35px;
  background:#e71313;
  border-radius:12px;
  padding:30px;
  text-align:center;
}

.prize-box h2{
  font-size:23px;
  color:#ffcc00;
  margin-bottom:18px;
}

.prize-box div{
  background:rgba(255,255,255,0.12);
  margin:12px auto;
  padding:14px;
  border-radius:6px;
  max-width:580px;
  font-weight:700;
}

.participants-box{
  background:#fff;
  color:#111;
  text-align:center;
  padding:18px;
  margin:0 0 30px;
}

.participants-box h3{
  font-size:17px;
  font-weight:500;
}

.countdown-box{
  text-align:center;
  padding-bottom:45px;
}

.countdown-box h3{
  color:#00e7ff;
  font-size:20px;
  margin-bottom:6px;
}

#timer{
  font-size:26px;
  font-weight:800;
  letter-spacing:2px;
}

@media(max-width:768px){
  .competition-hero h1{
    font-size:30px;
  }

  .winner-row{
    gap:10px;
  }

  .winner-card{
    width:100px;
  }

  .winner-img{
    width:78px;
    height:78px;
    font-size:34px;
  }

  .competition-info,
  .prize-box{
    margin-left:12px;
    margin-right:12px;
    padding:22px 16px;
  }

  .rank-table th,
  .rank-table td{
    font-size:15px;
    padding:14px;
  }
}


/* ===== Modern Competition Page V2 ===== */
.modern-competition{
  background:#050814;
  color:#fff;
  min-height:100vh;
  padding-top:82px;
  overflow:hidden;
}

.mc-container{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
}

.mc-hero{
  position:relative;
  padding:85px 0 70px;
  background:
    radial-gradient(circle at 15% 20%, rgba(239,32,32,.28), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(255,68,68,.24), transparent 35%),
    linear-gradient(135deg,#080b16 0%,#180913 45%,#861317 100%);
}

.mc-bg-glow{
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size:44px 44px;
  mask-image:linear-gradient(to bottom, black, transparent);
  opacity:.5;
}

.mc-hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.4fr .8fr;
  gap:34px;
  align-items:center;
}

.mc-live{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(74,222,128,.14);
  color:#86efac;
  border:1px solid rgba(134,239,172,.35);
  font-size:13px;
  font-weight:800;
  letter-spacing:.6px;
  margin-bottom:24px;
}

.mc-hero h1{
  font-size:clamp(42px, 6vw, 76px);
  line-height:1.02;
  letter-spacing:-3px;
  font-weight:800;
  max-width:850px;
  margin-bottom:22px;
}

.mc-subtitle{
  color:#e5e7eb;
  font-size:22px;
  line-height:1.6;
  max-width:760px;
  margin-bottom:34px;
}

.mc-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:36px;
}

.mc-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:220px;
  padding:16px 26px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
  transition:.25s ease;
  border:1px solid transparent;
}

.mc-btn:hover{
  transform:translateY(-3px);
}

.mc-primary{
  background:#ef2020;
  color:#fff;
  box-shadow:0 18px 40px rgba(239,32,32,.28);
}

.mc-outline{
  color:#fff;
  border-color:rgba(255,255,255,.45);
  background:rgba(255,255,255,.06);
  backdrop-filter:blur(10px);
}

.mc-stats{
  display:grid;
  grid-template-columns:repeat(2, minmax(180px, 1fr));
  gap:16px;
  max-width:620px;
}

.mc-stats div,
.mc-hero-card,
.mc-search-card,
.mc-info-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 24px 70px rgba(0,0,0,.28);
  backdrop-filter:blur(14px);
}

.mc-stats div{
  border-radius:18px;
  padding:20px;
}

.mc-stats strong{
  display:block;
  font-size:28px;
  color:#fff;
  margin-bottom:4px;
}

.mc-stats span{
  color:#cbd5e1;
  font-size:14px;
}

.mc-hero-card{
  border-radius:26px;
  padding:28px;
}

.mc-hero-card h3{
  font-size:28px;
  margin-bottom:22px;
}

.mc-prize-mini{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px;
  border-radius:16px;
  background:rgba(255,255,255,.07);
  margin-bottom:12px;
}

.mc-prize-mini span{
  font-size:30px;
}

.mc-prize-mini p{
  font-weight:700;
}

.mc-hero-card small{
  display:block;
  margin-top:18px;
  color:#facc15;
  font-weight:700;
}

.mc-section{
  padding:70px 0;
}

.mc-title{
  text-align:center;
  margin-bottom:34px;
}

.mc-title span{
  display:inline-block;
  color:#ef4444;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:10px;
}

.mc-title h2{
  font-size:clamp(32px,4vw,48px);
  line-height:1.1;
  font-weight:800;
}

.mc-title p{
  color:#cbd5e1;
  font-size:18px;
  margin-top:10px;
}

.mc-prize-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.mc-prize-card{
  text-align:center;
  padding:34px 24px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 20px 60px rgba(0,0,0,.26);
  position:relative;
  overflow:hidden;
}

.mc-prize-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top, rgba(239,32,32,.24), transparent 45%);
}

.mc-prize-card > *{
  position:relative;
  z-index:2;
}

.mc-icon{
  width:88px;
  height:88px;
  margin:0 auto 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:24px;
  background:#ef2020;
  font-size:42px;
  box-shadow:0 18px 35px rgba(239,32,32,.28);
}

.mc-prize-card h3{
  font-size:24px;
  margin-bottom:8px;
}

.mc-prize-card p{
  color:#e5e7eb;
  font-size:18px;
  font-weight:700;
}

.mc-search-section{
  background:linear-gradient(180deg, #050814, #07111f);
}

.mc-search-card{
  border-radius:28px;
  padding:38px;
}

.mc-search-form{
  display:flex;
  gap:14px;
  max-width:760px;
  margin:0 auto;
}

.mc-search-form input{
  flex:1;
  border:none;
  outline:none;
  border-radius:14px;
  padding:18px 20px;
  font-size:18px;
  font-weight:700;
  background:#fff;
  color:#111827;
}

.mc-search-form button{
  border:none;
  border-radius:14px;
  padding:18px 28px;
  background:#ef2020;
  color:#fff;
  font-weight:800;
  cursor:pointer;
  font-size:17px;
}

.mc-update{
  text-align:center;
  color:#facc15;
  margin-top:18px;
  font-weight:700;
}

.mc-result{
  margin-top:28px;
}

.mc-result-card{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.mc-result-card div{
  padding:22px;
  border-radius:18px;
  background:#fff;
  color:#111827;
}

.mc-result-card span{
  display:block;
  color:#64748b;
  font-size:13px;
  font-weight:700;
  margin-bottom:8px;
}

.mc-result-card strong{
  font-size:22px;
  color:#111827;
}

.mc-not-found{
  max-width:600px;
  margin:0 auto;
  text-align:center;
  padding:26px;
  border-radius:18px;
  border:1px solid rgba(239,32,32,.55);
  background:rgba(239,32,32,.12);
}

.mc-not-found h3{
  color:#ff5252;
  margin-bottom:8px;
}

.mc-info-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
}

.mc-info-card{
  border-radius:28px;
  padding:34px;
}

.mc-info-card.red{
  background:linear-gradient(135deg, rgba(239,32,32,.28), rgba(255,255,255,.07));
}

.mc-info-card h2{
  font-size:34px;
  margin-bottom:18px;
}

.mc-info-card ul{
  list-style:none;
  margin-bottom:24px;
}

.mc-info-card li{
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.12);
  color:#e5e7eb;
  font-weight:600;
}

.mc-info-card li::before{
  content:"⭐";
  margin-right:10px;
}

.mc-info-card p{
  color:#e5e7eb;
  line-height:1.7;
  font-size:18px;
}

.mc-note{
  margin-top:24px;
  padding:16px;
  border-radius:14px;
  background:rgba(0,0,0,.22);
  color:#facc15;
  font-weight:800;
}

@media(max-width:900px){
  .mc-hero-grid,
  .mc-info-grid,
  .mc-prize-grid,
  .mc-result-card{
    grid-template-columns:1fr;
  }

  .mc-search-form{
    flex-direction:column;
  }

  .mc-hero h1{
    letter-spacing:-2px;
  }
}

@media(max-width:600px){
  .modern-competition{
    padding-top:76px;
  }

  .mc-hero{
    padding:55px 0 45px;
  }

  .mc-subtitle{
    font-size:18px;
  }

  .mc-actions,
  .mc-stats{
    grid-template-columns:1fr;
  }

  .mc-btn{
    width:100%;
  }

  .mc-search-card,
  .mc-info-card,
  .mc-hero-card{
    padding:24px;
  }
}

.mc-icon img{
  width:100%;
  height:100%;
  object-fit:contain;
}


/* ===== FINAL RIGHT-SIDE STYLE GLOW WINNERS ===== */

.glowing-winners{
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:38px;
  flex-wrap:wrap;
  margin-top:40px;
}

.glowing-winners .winner-card{
  width:210px;
  text-align:center;
}

.glowing-winners .winner-img{
  width:150px;
  height:150px;
  margin:0 auto 16px;
  border-radius:50%;
  position:relative;
  overflow:visible;
  background:#050814;

  padding:0px;

  box-shadow:
    0 0 8px rgba(255,170,0,.28),
    0 0 18px rgba(255,120,0,.16);

  animation:rightSideSoftGlow 3s ease-in-out infinite;
}

.glowing-winners .winner-img::before{
 display:none;
}

.glowing-winners .winner-img::after{
  display:none;
}

.glowing-winners .winner-img img{
  position:relative;
  z-index:2;
  width:calc(100% - 20px);
  height:calc(100% - 20px);
  margin:10px;
  object-fit:contain;
  border-radius:50%;
  background:#fff;
  padding:12px;
}

.glowing-winners .winner-card h3{
  margin-top:14px;
  color:#ffd500;
  font-size:17px;
  font-weight:800;
  line-height:1.25;
  text-shadow:
    0 0 6px rgba(255,213,0,.55),
    0 0 14px rgba(255,180,0,.35);
}

.glowing-winners .winner-id{
  margin-top:10px;
  color:#ffffff;
  font-size:15px;
  font-weight:500;
}

.glowing-winners .place{
  display:block;
  margin-top:2px;
  color:#fff;
  font-size:15px;
  font-weight:600;
  background:transparent !important;
  padding:0;
}

@keyframes rightSideRotateGlow{
  100%{
    transform:rotate(360deg);
  }
}

@keyframes rightSideSoftGlow{
  0%{
    box-shadow:
      0 0 18px rgba(255,170,0,.45),
      0 0 34px rgba(255,120,0,.28);
  }

  50%{
    box-shadow:
      0 0 26px rgba(255,210,0,.65),
      0 0 48px rgba(255,120,0,.38);
  }

  100%{
    box-shadow:
      0 0 18px rgba(255,170,0,.45),
      0 0 34px rgba(255,120,0,.28);
  }
}

@media(max-width:768px){
  .glowing-winners{
    gap:24px;
  }

  .glowing-winners .winner-card{
    width:180px;
  }

  .glowing-winners .winner-img{
    width:130px;
    height:130px;
  }

  .glowing-winners .winner-card h3{
    font-size:15px;
  }

  .glowing-winners .winner-id,
  .glowing-winners .place{
    font-size:14px;
  }
}

.top-prize-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:20px;
}

.top-prize-item{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  border-radius:18px;
  padding:14px;
  text-align:center;
}

.top-prize-item img{
  width:80px;
  height:80px;
  object-fit:contain;
  background:#fff;
  border-radius:50%;
  padding:10px;
  margin-bottom:10px;
}

.top-prize-item strong{
  display:block;
  color:#ffd500;
  font-size:14px;
}

.top-prize-item span{
  display:block;
  color:#fff;
  font-size:12px;
  margin-top:5px;
}

@media(max-width:768px){
  .top-prize-grid{
    grid-template-columns:1fr;
  }
}

/* ===== TOP PRIZES HERO IMAGE UPDATE ===== */
.mc-right{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
}

.top-prizes-banner{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
}

.top-prizes-banner img{
  width:100%;
  max-width:850px;
  height:auto;
  display:block;
  border-radius:28px;
  box-shadow:0 30px 80px rgba(0,0,0,.45);
  transform:scale(1.12);
}

@media(max-width:1100px){
  .top-prizes-banner img{
    max-width:100%;
    transform:none;
  }
}

.winner-volume{
  margin-top:6px;
  color:#ffb300;
  font-size:15px;
  font-weight:700;
}

/* ===== FINAL PREMIUM LEADERBOARD ===== */

.glowing-winners{
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:42px;
  flex-wrap:wrap;
  margin-top:40px;
}

.glowing-winners .winner-card{
  width:220px;
  text-align:center;
}

.glowing-winners .winner-img{
  width:150px;
  height:150px;
  margin:0 auto 18px;
  border-radius:50%;
  position:relative;
  overflow:visible;
  background:#fff;

  box-shadow:
    0 0 10px rgba(255,170,0,.42),
    0 0 24px rgba(255,120,0,.22);

  animation:outerGlow 3s ease-in-out infinite;
}

.glowing-winners .winner-img::before{
  content:"";
  position:absolute;
  inset:3px;
  border-radius:50%;

  border:5px solid #ff8800;

  z-index:2;
  pointer-events:none;
}

.glowing-winners .winner-img img{
  width:100%;
  height:100%;
  object-fit:contain;
  background:#fff;
  border-radius:50%;
  padding:16px;
}

.glowing-winners .winner-card h3{
  color:#ffd500;
  font-size:18px;
  font-weight:800;
  line-height:1.3;
}

.glowing-winners .winner-id{
  margin-top:10px;
  color:#ffffff;
  font-size:15px;
  font-weight:500;
}

.winner-volume{
  display:inline-block;
  margin-top:10px;
  padding:6px 14px;
  border-radius:30px;

  background:rgba(255,179,0,.12);
  border:1px solid rgba(255,179,0,.28);

  color:#ffcc33;
  font-size:13px;
  font-weight:800;
}

.glowing-winners .place{
  display:block;
  margin-top:12px;
  color:#fff;
  font-size:16px;
  font-weight:700;
}

@keyframes outerGlow{

  0%{
    box-shadow:
      0 0 10px rgba(255,170,0,.42),
      0 0 24px rgba(255,120,0,.22);
  }

  50%{
    box-shadow:
      0 0 18px rgba(255,210,0,.55),
      0 0 34px rgba(255,120,0,.30);
  }

  100%{
    box-shadow:
      0 0 10px rgba(255,170,0,.42),
      0 0 24px rgba(255,120,0,.22);
  }
}

@media(max-width:768px){

  .glowing-winners{
    gap:28px;
  }

  .glowing-winners .winner-card{
    width:180px;
  }

  .glowing-winners .winner-img{
    width:130px;
    height:130px;
  }

  .glowing-winners .winner-card h3{
    font-size:16px;
  }

}

.glowing-winners{
  align-items:stretch;
}

.glowing-winners .winner-card{
  width:230px;
  min-height:330px;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.glowing-winners .winner-card h3{
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-family:'Poppins', sans-serif;
  font-size:17px;
  font-weight:800;
  line-height:1.25;
}

.glowing-winners .winner-id{
  min-height:24px;
  font-size:15px;
}

.winner-volume{
  margin-top:10px;
  padding:8px 18px;
  min-width:125px;
  border-radius:30px;
  background:rgba(255,179,0,.16);
  border:1px solid rgba(255,179,0,.55);
  color:#ffcc33;
  font-family:'Poppins', sans-serif;
  font-size:15px;
  font-weight:800;
  text-align:center;
}

.glowing-winners .place{
  margin-top:12px;
  font-family:'Poppins', sans-serif;
  font-size:16px;
  font-weight:800;
}

.winner-volume{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  margin-top:12px;

  min-width:160px;
  height:52px;

  padding:0 24px;

  border-radius:999px;

  background:linear-gradient(
    135deg,
    rgba(255,190,0,.18),
    rgba(255,120,0,.12)
  );

  border:1px solid rgba(255,190,0,.55);

  color:#ffe082;

  font-family:'Montserrat', sans-serif;

  font-size:22px;
  font-weight:900;
  letter-spacing:.4px;

  text-align:center;

  box-shadow:
    0 0 14px rgba(255,180,0,.14);

  backdrop-filter:blur(10px);
}

.winner-volume{
  font-size:22px !important;
  font-weight:900 !important;
}

/* ===== FULL SITE MOBILE RESPONSIVE FIX ===== */

@media(max-width:768px){

  body{
    overflow-x:hidden;
  }

  .navbar{
    padding:16px 20px;
  }

  .logo{
    font-size:26px;
  }

  .hero{
    min-height:auto;
    padding:130px 20px 70px;
  }

  .hero h1{
    font-size:42px !important;
    line-height:1.12;
  }

  .hero p{
    font-size:18px !important;
  }

  .badge{
    font-size:16px;
    padding:10px 20px;
  }

  .hero-actions{
    flex-direction:column;
  }

  .btn,
  .mc-btn{
    width:100%;
    max-width:340px;
    min-width:unset;
  }

  .section{
    padding:60px 20px;
  }

  .cards,
  .mc-hero-grid,
  .mc-info-grid,
  .mc-result-card{
    grid-template-columns:1fr;
  }

  .mc-hero{
    padding:55px 0;
  }

  .mc-hero h1{
    font-size:40px;
    line-height:1.12;
  }

  .mc-subtitle{
    font-size:18px;
  }

  .mc-stats{
    grid-template-columns:1fr;
  }

  .top-prizes-banner img{
    transform:none;
    max-width:100%;
  }

  .mc-title h2{
    font-size:38px;
  }

  .glowing-winners{
    flex-direction:column;
    align-items:center;
    gap:35px;
  }

  .glowing-winners .winner-card{
    width:100%;
    max-width:280px;
    min-height:auto;
  }

  .mc-search-form{
    flex-direction:column;
  }

  .mc-search-form input,
  .mc-search-form button{
    width:100%;
  }

  table{
    min-width:720px;
  }

}

@media(max-width:768px){

  .glowing-winners{
    flex-direction:row !important;
    flex-wrap:nowrap !important;
    justify-content:center;
    align-items:flex-start;
    gap:12px;
    overflow-x:auto;
    padding:10px 8px 25px;
  }

  .glowing-winners .winner-card{
    width:32%;
    min-width:115px;
    max-width:130px;
    min-height:auto;
  }

  .glowing-winners .winner-img{
    width:95px;
    height:95px;
    margin-bottom:12px;
  }

  .glowing-winners .winner-img img{
    padding:10px;
  }

  .glowing-winners .winner-card h3{
    font-size:13px !important;
    line-height:1.2;
    min-height:38px;
  }

  .glowing-winners .winner-id{
    font-size:12px;
    line-height:1.2;
  }

  .winner-volume{
    min-width:auto;
    height:auto;
    padding:6px 8px;
    font-size:12px !important;
  }

  .glowing-winners .place{
    font-size:13px;
    margin-top:8px;
  }
}

/* ===== MOBILE STYLE RANK TABLE ===== */

.modern-rank-list{
  max-width:1000px;
  margin:50px auto 0;
}

.modern-rank-head,
.modern-rank-item{
  display:grid;
  grid-template-columns:90px 1fr 220px;
  align-items:center;
}

.modern-rank-head{
  padding:0 0 18px;
  color:#8b949e;
  font-size:15px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.modern-rank-item{
  padding:22px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.rank-number{
  width:46px;
  height:46px;

  border-radius:50%;

  background:#111827;
  border:1px solid rgba(255,255,255,.12);

  display:flex;
  align-items:center;
  justify-content:center;

  color:#fff;
  font-weight:800;
  font-size:18px;
}

.rank-user strong{
  display:block;
  color:#fff;
  font-size:20px;
  font-weight:700;
}

.rank-user span{
  display:block;
  margin-top:4px;
  color:#8b949e;
  font-size:14px;
}

.rank-volume{
  color:#fff;
  font-size:22px;
  font-weight:800;
  text-align:right;
}

@media(max-width:768px){

  .modern-rank-head,
  .modern-rank-item{
    grid-template-columns:60px 1fr 120px;
    gap:10px;
  }

  .rank-number{
    width:40px;
    height:40px;
    font-size:16px;
  }

  .rank-user strong{
    font-size:16px;
  }

  .rank-user span{
    font-size:12px;
  }

  .rank-volume{
    font-size:16px;
  }

}

.modern-rank-item{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;

  padding:22px 0 !important;

  border-bottom:1px solid rgba(255,255,255,.06);
}

.rank-number{
  flex:0 0 70px;
}

.rank-user{
  flex:1;
  
  color:#fff;
  font-size:18px !important;
  font-weight:800;

  line-height:1.3;
}

.rank-volume{
  flex:0 0 180px;

  text-align:right;

  color:#ffd54a;

  font-size:20px !important;
  font-weight:900;
}

@media(max-width:768px){

  .modern-rank-item{
    gap:10px;
  }

  .rank-number{
    flex:0 0 44px;
  }

  .rank-user{
    font-size:13px !important;
  }

  .rank-volume{
    flex:0 0 90px;
    font-size:13px !important;
  }

}

.pagination{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:35px;
}

.pagination a{
  width:42px;
  height:42px;
  border-radius:10px;
  background:rgba(255,255,255,.08);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:800;
}

.pagination a.active{
  background:#ffb300;
  color:#111;
}

.rank-pagination{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin-top:45px;
}

.rank-pagination a,
.rank-pagination span{
  width:36px;
  height:36px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#9ca3af;
  text-decoration:none;
  font-size:15px;
  font-weight:700;
}
.rank-pagination a.active{
  background:#3b3b3b;
  color:#fff;
}

.rank-pagination .page-arrow{
  font-size:24px;
  color:#6b7280;
}

.rank-pagination .page-dots{
  width:auto;
}

@media(max-width:768px){

  .rank-pagination{
    gap:14px;
    margin-top:30px;
  }

  .rank-pagination a,
  .rank-pagination span{
    width:38px;
    height:38px;
    font-size:16px;
    border-radius:10px;
  }

  .rank-pagination .page-arrow{
    font-size:28px;
  }

}
@media(max-width:768px){

  .rank-pagination{
    gap:10px;
  }

  .rank-pagination a,
  .rank-pagination span{
    width:32px;
    height:32px;
    font-size:14px;
    border-radius:8px;
  }

  .rank-pagination .page-arrow{
    font-size:22px;
  }

}

.winner-id{
  font-family:'Montserrat',sans-serif;
  font-size:60px;
  font-weight:700;
  color:#ffffff;
  letter-spacing:.5px;
}

.rank-user,
.rank-volume,
.rank-number{
  font-family:'Montserrat',sans-serif;
}
.rank-user{
  font-size:20px;
  font-weight:800;
  letter-spacing:.3px;
}

.rank-volume{
  font-size:20px;
  font-weight:900;
}

.winner-id{
  font-family:'Montserrat',sans-serif !important;
  font-size:20px !important;
  font-weight:100 !important;
  color:#fff !important;
  letter-spacing:.5px;
}
@media(max-width:768px){

  .winner-id{
    font-size:16px !important;
    font-weight:800 !important;
    line-height:1.3;
  }

}
.rank-user{
  font-family:'Montserrat',sans-serif !important;
  font-size:18px !important;
  font-weight:100 !important;
  color:#fff !important;
}

.rank-volume,
.winner-volume{
  font-family:'Montserrat',sans-serif !important;
}

.rank-volume,
.winner-volume{
  font-family:'Montserrat',sans-serif !important;
  font-weight:200 !important;
  letter-spacing:.3px;
}

.mc-submit-btn,
button[type="submit"]{

  width:100% !important;

  height:68px !important;

  margin:0 auto !important;

  padding:0 !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  text-align:center !important;

  box-sizing:border-box !important;
}

@media(max-width:768px){

  .rebate-table{
    width:100%;
    overflow-x:auto;
  }

  .rebate-table table{
    width:100% !important;
    border-collapse:collapse !important;
  }

  .rebate-table thead{
    display:table-header-group !important;
  }

  .rebate-table tbody{
    display:table-row-group !important;
  }

  .rebate-table tr{
    display:table-row !important;
  }

  .rebate-table th,
  .rebate-table td{
    display:table-cell !important;

    width:50% !important;

    font-size:14px !important;

    padding:16px 10px !important;

    text-align:center !important;

    white-space:normal !important;
  }

}
@media(max-width:768px){

  .table-wrap{
    overflow-x:auto;
    width:100%;
  }

  .table-wrap table{
    width:100% !important;
    min-width:100% !important;
    table-layout:fixed;
  }

  .table-wrap th,
  .table-wrap td{
    width:50% !important;
    font-size:14px !important;
    padding:16px 8px !important;
    text-align:center !important;
    display:table-cell !important;
  }

  .table-wrap tr{
    display:table-row !important;
  }

}

.success-page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#07111f,#7f1418);
  color:#fff;
  font-family:'Poppins', sans-serif;
}

.success-card{
  width:min(90%,520px);
  text-align:center;
  padding:45px 30px;
  border-radius:24px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.success-icon{
  font-size:64px;
  margin-bottom:18px;
}

.success-card h1{
  font-size:34px;
  margin-bottom:12px;
}

.success-card p{
  color:#e5e7eb;
  margin-bottom:28px;
}

.site-footer{
  text-align:center;
  padding:35px 20px;
  margin-top:60px;

  background:#050814;

  border-top:1px solid rgba(255,255,255,.08);

  color:#9ca3af;
}

.site-footer p{
  margin-bottom:8px;
  color:#fff;
  font-weight:700;
}

.site-footer small{
  font-size:13px;
  line-height:1.6;
}

.site-footer{
  text-align:center;
  padding:35px 20px;
  margin-top:60px;
  background:#050814;
  border-top:1px solid rgba(255,255,255,.08);
  color:#9ca3af;
}

.site-footer p{
  margin-bottom:8px;
  color:#fff;
  font-weight:700;
}

.site-footer small{
  font-size:13px;
  line-height:1.6;
}

/* ===== CONTACT PAGE ===== */

.contact-hero{
  position:relative;

  min-height:100vh;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:140px 20px 80px;

  background:
    radial-gradient(circle at top left, rgba(239,32,32,.28), transparent 30%),
    linear-gradient(135deg,#050814,#7f1418);

  overflow:hidden;
}

.contact-glow{
  position:absolute;
  width:500px;
  height:500px;

  background:rgba(239,32,32,.18);

  filter:blur(120px);

  border-radius:50%;

  top:-120px;
  right:-120px;
}

.contact-container{
  position:relative;
  z-index:2;

  width:min(100%,900px);

  text-align:center;
}

.contact-badge{
  display:inline-block;

  padding:10px 20px;

  border-radius:999px;

  background:rgba(255,255,255,.08);

  border:1px solid rgba(255,255,255,.12);

  font-size:13px;
  font-weight:800;

  letter-spacing:1px;

  margin-bottom:26px;
}

.contact-container h1{
  font-size:68px;
  line-height:1.05;
  margin-bottom:20px;

  font-family:'Montserrat',sans-serif;
  font-weight:800;
}

.contact-container p{
  max-width:700px;
  margin:0 auto 45px;

  color:#d1d5db;

  font-size:22px;
  line-height:1.7;
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);

  gap:24px;
}

.contact-card{
  padding:38px 30px;

  border-radius:28px;

  background:rgba(255,255,255,.08);

  border:1px solid rgba(255,255,255,.14);

  backdrop-filter:blur(14px);

  box-shadow:0 25px 80px rgba(0,0,0,.28);
}

.contact-icon{
  font-size:58px;
  margin-bottom:18px;
}

.contact-card h3{
  font-size:28px;
  margin-bottom:16px;
}

.contact-card a{
  color:#58a6ff;
  font-size:22px;
  font-weight:700;
  text-decoration:none;
}

.contact-card a:hover{
  text-decoration:underline;
}

@media(max-width:768px){

  .contact-container h1{
    font-size:42px;
  }

  .contact-container p{
    font-size:18px;
  }

  .contact-grid{
    grid-template-columns:1fr;
  }

}

/* ===== SHOP + PRODUCT PAGE ===== */

.shop-page,.product-page{
background:#f7f8fb;
color:#111827;
min-height:100vh;
padding-top:90px
}

.shop-hero{
text-align:center;
padding:90px 20px 50px;
background:linear-gradient(135deg,#07111f,#7f1418);
color:#fff
}

.shop-badge{
display:inline-block;
padding:9px 18px;
border-radius:999px;
background:rgba(255,255,255,.12);
border:1px solid rgba(255,255,255,.18);
font-size:13px;
font-weight:800;
letter-spacing:1px;
margin-bottom:18px
}

.shop-hero h1{
font-size:56px;
font-weight:800;
margin-bottom:14px
}

.shop-hero p{
color:#e5e7eb;
font-size:20px
}

.shop-grid-wrap{
max-width:1180px;
margin:0 auto;
padding:55px 20px
}

.shop-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:28px
}

.shop-card{
background:#fff;
border-radius:22px;
overflow:hidden;
box-shadow:0 18px 50px rgba(15,23,42,.10);
border:1px solid rgba(15,23,42,.08);
transition:.25s ease
}

.shop-card:hover{
transform:translateY(-6px);
box-shadow:0 28px 70px rgba(15,23,42,.16)
}

.shop-image{
height:260px;
display:flex;
align-items:center;
justify-content:center;
background:#f1f5f9
}

.shop-image img{
max-width:88%;
max-height:88%;
object-fit:contain
}

.shop-card-body{
padding:24px
}

.shop-category{
color:#ef2020;
font-size:13px;
font-weight:800;
text-transform:uppercase
}

.shop-card h2{
font-size:25px;
margin:10px 0
}

.shop-card h2 a{
color:#111827;
text-decoration:none
}

.shop-card p{
color:#64748b;
line-height:1.6;
margin-bottom:16px
}

.shop-price{
display:flex;
gap:10px;
align-items:center;
margin-bottom:20px
}

.shop-price strong{
font-size:26px;
color:#ef2020
}

.shop-btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:15px 24px;
border-radius:12px;
background:#ef2020;
color:#fff;
font-weight:800;
text-decoration:none
}

@media(max-width:900px){

.shop-grid{
grid-template-columns:1fr
}

.shop-hero h1{
font-size:42px
}

}

.shop-card{
  display:flex;
  flex-direction:column;
}

.shop-card-body{
  flex:1;
  display:flex;
  flex-direction:column;
}

.shop-price{
  margin-top:auto;
}

.shop-btn{
  align-self:flex-start;
}

/* ===== PRODUCT PAGE ===== */

.product-page{
  background:#f7f8fb;
  color:#111827;
  min-height:100vh;
  padding-top:100px;
}

.product-wrap{
  max-width:1180px;
  margin:0 auto;
  padding:60px 20px;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.product-image-box{
  background:#fff;
  border-radius:24px;
  padding:40px;

  box-shadow:0 20px 60px rgba(15,23,42,.10);

  text-align:center;
}

.product-image-box img{
  width:100%;
  max-width:420px;
  object-fit:contain;
}

.breadcrumb{
  margin-bottom:20px;
  color:#64748b;
}

.breadcrumb a{
  color:#ef2020;
  text-decoration:none;
  font-weight:700;
}

.product-info h1{
  font-size:52px;
  margin-bottom:18px;
}

.product-price{
  display:flex;
  gap:14px;
  align-items:center;
  margin-bottom:22px;
}

.product-price del{
  color:#94a3b8;
  font-size:24px;
}

.product-price strong{
  color:#ef2020;
  font-size:38px;
}

.product-short{
  font-size:18px;
  color:#475569;
  line-height:1.7;
  margin-bottom:28px;
}

.product-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:16px 28px;

  background:#ef2020;
  color:#fff;

  border-radius:14px;

  font-weight:800;
  text-decoration:none;

  margin-bottom:28px;
}

.product-meta{
  line-height:1.9;
  color:#475569;
}

/* tabs */

.product-tabs{
  max-width:1180px;
  margin:0 auto 80px;

  background:#fff;

  padding:35px;

  border-radius:24px;

  box-shadow:0 20px 60px rgba(15,23,42,.08);
}

.tab-buttons{
  display:flex;
  gap:30px;

  border-bottom:1px solid #e5e7eb;

  margin-bottom:25px;
}

.tab-btn{
  background:none;
  border:none;

  padding:14px 0;

  font-size:18px;
  font-weight:800;

  cursor:pointer;
}

.tab-btn.active{
  color:#ef2020;
  border-bottom:3px solid #ef2020;
}

.tab-content{
  display:none;
  line-height:1.9;
}

.tab-content.active{
  display:block;
}

.review-card{
  padding:18px;
  border:1px solid #e5e7eb;
  border-radius:14px;
  margin-bottom:15px;
}

.review-card strong{
  color:#f59e0b;
}

@media(max-width:900px){

.product-wrap{
  grid-template-columns:1fr;
}

.product-info h1{
  font-size:40px;
}

}

@media(max-width:600px){

.product-page{
  padding-top:80px;
}

.product-wrap{
  padding:30px 16px;
}

.product-tabs{
  margin:0 16px 50px;
  padding:24px;
}

}

/* HERO GAP FIX */

.hero{
  padding-bottom:40px !important;
  min-height:auto !important;
}

.section{
  padding-top:40px !important;
}

.xm-mini-logo{
  width:55px;
  height:auto;
  margin-bottom:18px;
  filter:drop-shadow(0 0 10px rgba(255,255,255,.15));
}

.hero-partner-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:14px 32px;
  border-radius:50px;
  background:rgba(255,255,255,0.15);
  margin-bottom:45px;
}

.hero-partner-badge span{
  font-size:24px;
  color:#fff;
}

.xm-mini-logo{
  width:45px;
  height:auto;
  margin:0;
}
.shop-rating{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:10px;
}

.shop-rating .stars{
  color:#facc15;
  letter-spacing:2px;
}

.rating-text{
  font-weight:700;
}

.reviews{
  color:#64748b;
}

.sold-count{
  color:#64748b;
  margin-bottom:14px;
}

.shop-price{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:4px;
  margin-bottom:22px;
}

.shop-price del{
  color:#94a3b8;
  font-size:18px;
  text-decoration:line-through;
}

.shop-price strong{
  color:#ef2020;
  font-size:42px;
  font-weight:900;
  line-height:1;
}

.shop-price{margin:14px 0 10px}
.sold-count{margin-bottom:10px}
.shop-rating{margin-bottom:22px}

.shop-price strong{
  color:#ef2020;
  font-size:38px;
  font-weight:800;
  line-height:1;

  font-family:'Inter',sans-serif;
  letter-spacing:-1px;
}

.currency{
  font-size:20px;
  font-weight:700;
  margin-right:6px;
  opacity:.9;
}

.shop-price{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:6px;
  margin-bottom:14px;
}

.shop-price del{
  color:#94a3b8;
  font-size:18px;
  text-decoration:line-through;

  font-family:'Inter',sans-serif;
}

.shop-price strong{
  color:#ef2020;
  font-size:44px;
  font-weight:900;
  line-height:1;

  font-family:'Inter',sans-serif;
  letter-spacing:-2px;
}

.currency{
  font-size:20px;
  font-weight:700;
  margin-right:6px;
  opacity:.95;
}

.currency-old{
  font-size:14px;
  margin-right:4px;
}

.shop-price-inline{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
  flex-wrap:wrap;
}

.shop-price-inline strong{
  color:#111827;
  font-size:34px;
  font-weight:800;
  line-height:1;

  font-family:'Inter',sans-serif;
}

.shop-price-inline .currency{
  font-size:18px;
  margin-right:4px;
  opacity:.9;
}

.shop-price-inline del{
  color:#9ca3af;
  font-size:16px;
  text-decoration:line-through;
}

.sold-inline{
  color:#6b7280;
  font-size:14px;
}

.shop-card{
  display:flex;
  flex-direction:column;
}

.shop-card-body{
  display:flex;
  flex-direction:column;
  height:100%;
}

.shop-btn{
  margin-top:auto;
}
/* PRODUCT PAGE WOOCOMMERCE STYLE */

.product-page{
  background:#fff !important;
  color:#1f2937 !important;
  padding-top:100px !important;
}

.product-wrap{
  max-width:1220px !important;
  display:grid !important;
  grid-template-columns:1fr .9fr !important;
  gap:55px !important;
  align-items:flex-start !important;
}

.product-image-box{
  background:#f7f7f7 !important;
  border-radius:0 !important;
  box-shadow:none !important;
  padding:0 !important;
  position:relative;
}

.product-image-box img{
  width:100% !important;
  max-width:100% !important;
  max-height:none !important;
}

.product-info h1{
  font-size:34px !important;
  font-weight:500 !important;
  margin-bottom:18px !important;
}

.product-price{
  margin-bottom:12px !important;
}

.product-price del{
  font-size:26px !important;
  color:#9ca3af !important;
}

.product-price strong{
  font-size:34px !important;
  color:#111827 !important;
}

.product-short{
  font-size:17px !important;
  line-height:1.7 !important;
  color:#1f2937 !important;
}

.product-short p,
.product-short{
  white-space:normal !important;
}

.product-short::before{
  content:"";
}

.product-btn{
  background:#0069d9 !important;
  border-radius:0 !important;
  padding:14px 32px !important;
  margin-top:14px !important;
}

.product-meta{
  border-top:1px solid #e5e7eb;
  padding-top:18px;
  margin-top:20px;
}

.product-tabs{
  background:#fff !important;
  box-shadow:none !important;
  border-radius:0 !important;
  border-top:1px solid #d1d5db;
}
.product-features{
  margin:22px 0;
}

.product-features p{
  font-size:17px;
  line-height:1.9;
  margin-bottom:4px;
  color:#374151;
}

.product-btn{
  background:#0d6efd !important;
  color:#fff !important;
  padding:14px 34px !important;
  border-radius:0 !important;
  font-size:18px !important;
  font-weight:700 !important;
  display:inline-block;
}

.product-btn:hover{
  opacity:.9;
}

.product-features{
  margin:18px 0 26px;
}

.product-features p{
  display:block;
  width:100%;
  margin:0 0 7px;
  font-size:16px;
  line-height:1.45;
  color:#111827;
}

.review-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:24px;
    margin-bottom:20px;
}

.review-stars{
    color:#fbbf24;
    font-size:20px;
    margin-bottom:12px;
    letter-spacing:2px;
}

.review-text{
    font-size:17px;
    color:#111827;
    line-height:1.7;
    margin-bottom:14px;
}

.review-author{
    font-size:16px;
    font-weight:600;
    color:#374151;
}
.review-stars,
.stars{
    background:linear-gradient(
      90deg,
      #FFD700,
      #FFC107,
      #FFEA70
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    font-size:18px;
    letter-spacing:2px;
    font-weight:800;

    filter:drop-shadow(0 0 3px rgba(255,215,0,.4));
}

.manual-review-form{
    margin-top:35px;
    padding:25px;
    border:1px solid #e5e7eb;
    border-radius:18px;
    background:#fff;
}

.manual-review-form h3{
    margin-bottom:18px;
}

.manual-review-form input,
.manual-review-form select,
.manual-review-form textarea{
    width:100%;
    padding:14px;
    margin-bottom:14px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
}

.manual-review-form textarea{
    min-height:120px;
    resize:vertical;
}

.manual-review-form button{
    background:#ef2020;
    color:#fff;
    border:none;
    padding:14px 24px;
    border-radius:10px;
    font-weight:800;
    cursor:pointer;
}

@media(max-width:900px){

  .product-wrap{
    display:flex !important;
    flex-direction:column !important;
  }

  .product-image-box{
    display:block !important;
    order:1 !important;
    width:100% !important;
    margin-bottom:25px !important;
  }

  .product-info{
    order:2 !important;
  }

  .product-image-box img{
    display:block !important;
    width:100% !important;
    max-width:360px !important;
    margin:0 auto !important;
    height:auto !important;
  }

}
.shop-page{
  padding-top:80px !important;
}

.shop-hero{
  margin-top:0 !important;
}

.site-header{
  border-bottom:none !important;
}

@media(max-width:768px){

  .shop-page{
    padding-top:72px !important;
  }

  .shop-hero{
    padding-top:45px !important;
    margin-top:0 !important;
  }

  .site-header{
    height:72px !important;
    border-bottom:none !important;
  }

  .navbar{
    height:72px !important;
    padding-top:0 !important;
    padding-bottom:0 !important;
  }

}
@media(max-width:768px){

  .site-header{
    width:100% !important;
    max-width:100% !important;
    overflow:hidden !important;
  }

  .navbar{
    width:100% !important;
    max-width:100% !important;
    padding:16px 20px !important;
  }

  .navbar ul{
    position:fixed !important;
    top:72px !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
    padding:25px 0 !important;
    background:#0d1626 !important;
    z-index:9999 !important;
  }

  .navbar ul li{
    width:100% !important;
    text-align:center !important;
  }

}
@media(max-width:768px){

  .mc-hero-grid{
    display:flex !important;
    flex-direction:column !important;
  }

  .mc-actions{
    order:1 !important;
  }

  .mc-right{
    order:2 !important;
    margin-top:20px !important;
  }

}
@media(max-width:768px){

  .mc-right{
    margin:20px 0;
  }

}

@media(max-width:768px){

  .mc-hero-grid{
    display:flex !important;
    flex-direction:column !important;
  }

  .mc-hero-left{
    display:flex !important;
    flex-direction:column !important;
  }

  .mc-right{
    order:2 !important;
    margin:20px 0 !important;
  }

  .mc-actions{
    order:3 !important;
  }

  .mc-stats{
    order:4 !important;
  }

}
@media(max-width:768px){

  .mc-hero-grid{
    display:flex !important;
    flex-direction:column !important;
  }

  .mc-right{
    width:100% !important;
    margin:25px 0 !important;
  }

  .mc-hero-left{
    display:flex !important;
    flex-direction:column !important;
  }

  .mc-hero-left .mc-actions{
    order:3 !important;
  }

  .mc-hero-left .mc-stats{
    order:4 !important;
  }

  .mc-right{
    order:2 !important;
  }

}