/* ==========================================================================
   Come Dream11 App Global Styling System - Premium & Responsive
   ========================================================================== */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans", sans-serif;
  color: #1a1a2e;
  line-height: 1.7;
  overflow-x: hidden;
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header & Sticky Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e7eb;
}

.sm6afe-hw {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  position: relative;
  gap: 12px;
}

.sm6afe-hw > a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  min-width: 0;
}

.sm6afe-hw > a img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
}

.sm6afe-hw > a span {
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #2563eb;
}

#nav {
  display: none;
}

#nav a {
  text-decoration: none;
  color: #6b7280;
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.2s ease;
  font-weight: 600;
}

#nav a:hover, #nav a.active {
  color: #2563eb;
}

#nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

#mbt {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 4px;
  cursor: pointer;
}

#mbt span {
  display: block;
  width: 22px;
  height: 2px;
  background: #2563eb;
  border-radius: 2px;
  transition: 0.25s;
}

#mbt.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#mbt.active span:nth-child(2) {
  opacity: 0;
}

#mbt.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 768px) {
  .sm6afe-hw {
    height: 64px;
    padding: 0 24px;
  }
  .sm6afe-hw > a img {
    height: 34px;
  }
  .sm6afe-hw > a span {
    font-size: 18px;
  }
  #nav {
    display: flex;
    gap: 20px;
  }
  #nav a {
    border: 0;
    color: #6b7280;
    padding: 4px 0;
  }
  #mbt {
    display: none;
  }
}

/* Layout Main System */
main {
  flex: 1;
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}

main > section, main > article, main > aside {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 16px;
}

main > section:nth-child(even) {
  background: #f9fafb;
}

main > section h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: #1a1a2e;
}

@media (min-width: 768px) {
  main > section, main > article, main > aside {
    padding: 56px 24px;
  }
  main > section h2 {
    font-size: 24px;
  }
}

/* Breadcrumb */
.sm6afe-bread {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 16px;
  font-size: 13px;
  color: #9ca3af;
}

.sm6afe-bread a {
  color: #2563eb;
  text-decoration: none;
}

.sm6afe-bread a:hover {
  text-decoration: underline;
}

.sm6afe-bread span {
  color: #6b7280;
}

/* Hero Carousel Section */
section[data-s="hero"] {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.sm6afe-carousel {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  touch-action: pan-y pinch-zoom;
}

.sm6afe-carousel-track {
  position: relative;
  overflow: hidden;
}

.sm6afe-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.sm6afe-carousel-slide:first-child {
  position: relative;
}

.sm6afe-carousel-slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.sm6afe-carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.sm6afe-carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  pointer-events: auto;
}

.sm6afe-dot {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.sm6afe-dot.active {
  background: #fff;
  width: 36px;
}

.sm6afe-hero-tagline {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  padding: 12px 16px 0;
  line-height: 1.4;
}

@media (max-width: 600px) {
  main > section, main > article, main > aside {
    padding: 18px 12px;
  }
  section[data-s="hero"] {
    padding: 12px 12px 4px;
  }
  section[data-s="hero"] img, .sm6afe-carousel {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  section[data-s="hero"] img, .sm6afe-carousel img {
    height: auto;
    object-fit: contain;
  }
  .sm6afe-hero-tagline {
    font-size: 16px;
    padding: 10px 12px 0;
    line-height: 1.35;
  }
}

/* Call-to-Action Grid & Buttons */
section[data-s="cta-buttons"], section[data-s="cta"] {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sm6afe-cta-dl, .sm6afe-cta-login, .sm6afe-cta-reg {
  display: block;
  padding: 18px 24px;
  color: #fff !important;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.sm6afe-cta-dl {
  background: linear-gradient(135deg, #FF6B6B, #EE5A24);
}

.sm6afe-cta-login {
  background: linear-gradient(135deg, #a29bfe, #6c5ce7);
}

.sm6afe-cta-reg {
  background: linear-gradient(135deg, #00b894, #00cec9);
}

.sm6afe-cta-dl:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(255, 107, 107, 0.4);
  filter: brightness(1.1);
}

.sm6afe-cta-login:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(162, 155, 254, 0.4);
  filter: brightness(1.1);
}

.sm6afe-cta-reg:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(0, 184, 148, 0.4);
  filter: brightness(1.1);
}

.sm6afe-cta-bottom {
  display: block;
  max-width: 400px;
  margin: 10px auto 0;
  padding: 16px;
  border-radius: 50px;
  font-size: 17px;
}

@media (max-width: 600px) {
  section[data-s="cta-buttons"] {
    padding: 12px 12px 10px;
    gap: 10px;
  }
  .sm6afe-cta-dl, .sm6afe-cta-login, .sm6afe-cta-reg {
    padding: 14px 20px;
    font-size: 16px;
  }
}

/* App Info Spec Page */
.sm6afe-air {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  justify-content: center;
}

.sm6afe-air strong {
  font-size: 28px;
  line-height: 1;
  color: #f59e0b;
}

.sf, .sh {
  color: #f59e0b;
}

.se {
  color: #d1d5db;
}

.sm6afe-adesc {
  color: #4b5563;
  margin-bottom: 16px;
  text-align: left;
}

.sm6afe-adesc a {
  color: #2563eb;
  text-decoration: underline;
}

.sm6afe-af {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 16px 0;
  justify-content: center;
}

.sm6afe-af li, .sm6afe-tp, .sm6afe-tc {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 13px;
}

.sm6afe-af li {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}

.sm6afe-ameta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  margin-top: 12px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.sm6afe-ameta dt {
  font-weight: 700;
  color: #1a1a2e;
  text-align: right;
}

.sm6afe-ameta dd {
  color: #6b7280;
  text-align: left;
}

/* Screenshots Preview */
.sm6afe-pg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
}

.sm6afe-pg figure {
  margin: 0;
}

.sm6afe-pg img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
}

.sm6afe-pg figcaption {
  font-size: 10px;
  color: #9ca3af;
  text-align: center;
  margin-top: 3px;
  line-height: 1.3;
}

/* Details and FAQ */
section[data-s="faq"] details {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 10px;
  background: #fff;
  transition: border-color 0.3s;
}

section[data-s="faq"] details:hover {
  border-color: #2563eb;
}

section[data-s="faq"] summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  position: relative;
  padding-right: 24px;
  color: #1a1a2e;
}

section[data-s="faq"] summary::-webkit-details-marker {
  display: none;
}

section[data-s="faq"] summary::after {
  content: "⌄";
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 0.2s;
  color: #2563eb;
  font-size: 16px;
  line-height: 1;
}

section[data-s="faq"] details[open] summary::after {
  transform: rotate(180deg);
}

section[data-s="faq"] p {
  margin-top: 10px;
  color: #4b5563;
  line-height: 1.6;
}

/* Reviews Panel */
.sm6afe-rc {
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  transition: border-color .3s;
  text-align: left;
}

.sm6afe-rc:hover {
  border-color: #2563eb;
}

.sm6afe-rc + .sm6afe-rc {
  margin-top: 12px;
}

.sm6afe-rh {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.sm6afe-rc h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #1a1a2e;
  font-weight: 700;
}

.sm6afe-rc p {
  color: #4b5563;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.sm6afe-tp {
  background: #ecfdf5;
  color: #059669;
  margin: 4px 6px 0 0;
  border: 1px solid #a7f3d0;
}

.sm6afe-tc {
  background: #fff7ed;
  color: #ea580c;
  margin: 4px 6px 0 0;
  border: 1px solid #fed7aa;
}

/* Release Logs Timeline */
.sm6afe-rl-timeline {
  border-left: 3px solid #2563eb;
  padding-left: 20px;
  margin-top: 16px;
  text-align: left;
}

.sm6afe-rl-entry {
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
}

.sm6afe-rl-entry::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2563eb;
  border: 2px solid #fff;
}

.sm6afe-rl-entry.latest::before {
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.sm6afe-rl-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.sm6afe-rl-head strong {
  font-size: 15px;
  color: #2563eb;
}

.sm6afe-rl-head time {
  font-size: 13px;
  color: #9ca3af;
}

.sm6afe-rl-badge {
  font-size: 11px;
  background: #10b981;
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
}

.sm6afe-rl-entry h3 {
  font-size: 15px;
  margin-bottom: 6px;
  color: #1a1a2e;
  font-weight: 700;
}

.sm6afe-rl-entry ul {
  list-style: disc;
  padding-left: 18px;
  margin-top: 4px;
}

.sm6afe-rl-entry li {
  font-size: 14px;
  color: #4b5563;
  margin: 3px 0;
}

/* About Company Profile Card */
.sm6afe-about-card {
  padding: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-top: 16px;
  text-align: left;
}

.sm6afe-about-card h3 {
  font-size: 18px;
  color: #1a1a2e;
  margin-bottom: 8px;
  font-weight: 700;
}

.sm6afe-about-slogan {
  color: #6b7280;
  margin-bottom: 12px;
  font-style: italic;
}

.sm6afe-about-card p {
  color: #4b5563;
  margin-bottom: 8px;
  font-size: 14px;
}

.sm6afe-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.sm6afe-cert {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
  font-weight: 600;
}

.sm6afe-milestones {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
}

.sm6afe-milestones h4 {
  font-size: 15px;
  margin-bottom: 8px;
  color: #1a1a2e;
  font-weight: 700;
}

.sm6afe-milestones > div {
  padding: 4px 0;
  font-size: 14px;
  color: #4b5563;
}

.sm6afe-milestones strong {
  color: #2563eb;
  margin-right: 4px;
}

/* Discussion and Comments */
section[data-s="discussion"] {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 16px;
}

.sm6afe-disc-form {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.sm6afe-disc-form .sm6afe-av {
  flex-shrink: 0;
}

img.sm6afe-disc-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  background: #f3f4f6;
  object-fit: cover;
}

img.sm6afe-disc-av-sm {
  width: 28px;
  height: 28px;
}

.sm6afe-disc-form textarea {
  flex: 1;
  min-height: 56px;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  line-height: 1.5;
  background: #f9fafb;
  color: #374151;
}

.sm6afe-disc-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  background: #fff;
}

.sm6afe-disc-send {
  padding: 10px 18px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s;
  align-self: flex-start;
}

.sm6afe-disc-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.sm6afe-disc-post {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 12px;
  transition: border-color .3s;
  text-align: left;
}

.sm6afe-disc-post:hover {
  border-color: #bfdbfe;
}

.sm6afe-disc-head {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.sm6afe-disc-meta {
  flex: 1;
  min-width: 0;
}

.sm6afe-disc-name {
  display: block;
  font-weight: 700;
  color: #1a1a2e;
  font-size: 14px;
}

.sm6afe-disc-time {
  font-size: 12px;
  color: #9ca3af;
}

.sm6afe-disc-body {
  color: #374151;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
  word-wrap: break-word;
}

.sm6afe-disc-actions {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: #9ca3af;
}

.sm6afe-disc-like, .sm6afe-disc-reply-btn {
  background: none;
  border: 0;
  color: #9ca3af;
  font-size: 13px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.sm6afe-disc-like:hover, .sm6afe-disc-reply-btn:hover {
  background: #f3f4f6;
  color: #2563eb;
}

.sm6afe-disc-replies {
  margin-top: 10px;
  padding-left: 14px;
  border-left: 2px solid #e5e7eb;
}

.sm6afe-disc-reply {
  background: #f9fafb;
  border-radius: 8px;
  padding: 10px;
  margin-top: 8px;
}

.sm6afe-disc-more {
  text-align: center;
  padding: 12px 0;
  color: #2563eb;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: 0;
  width: 100%;
  border-radius: 8px;
  transition: background .2s;
}

.sm6afe-disc-more:hover {
  background: #eff6ff;
}

/* Redirect overlay popup */
.sm6afe-ro-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}

.sm6afe-ro-overlay.active {
  display: flex;
}

.sm6afe-ro-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  max-width: 320px;
  width: 90%;
  animation: smRoIn 0.35s ease;
}

@keyframes smRoIn {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.sm6afe-ro-ring {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}

.sm6afe-ro-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.sm6afe-ro-ring #smRoArc {
  transition: stroke-dashoffset 0.3s linear;
}

.sm6afe-ro-ring span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 800;
  color: #1a1a2e;
}

#smRoText {
  color: #4b5563;
  font-size: 15px;
  margin: 0 0 18px;
  line-height: 1.5;
}

#smRoSkip {
  display: inline-block;
  padding: 10px 36px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

#smRoSkip:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Footer Section */
footer {
  padding: 20px 16px;
  text-align: center;
  color: #9ca3af;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
  margin-top: auto;
  width: 100%;
}

.footer-legal-links {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer-legal-links a {
  color: #6b7280;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal-links a:hover {
  color: #2563eb;
}

.footer-age {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 4px;
}

/* ==========================================================================
   Navigation Subpages Specific Styling
   ========================================================================== */

/* Login / Register Tab Forms */
.form-container {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  max-width: 450px;
  margin: 40px auto;
}

.form-tabs {
  display: flex;
  border-bottom: 2px solid #f3f4f6;
  margin-bottom: 24px;
}

.form-tab {
  flex: 1;
  text-align: center;
  padding: 12px;
  font-weight: 700;
  cursor: pointer;
  color: #9ca3af;
  transition: color 0.3s, border-color 0.3s;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}

.form-tab.active {
  color: #2563eb;
  border-bottom-color: #2563eb;
}

.form-panel {
  display: none;
}

.form-panel.active {
  display: block;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: #1a1a2e;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f9fafb;
  font-size: 15px;
  transition: border-color 0.3s, background-color 0.3s;
  color: #1a1a2e;
}

.form-group input:focus {
  outline: none;
  border-color: #2563eb;
  background: #fff;
}

.form-group.password-group {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 38px;
  cursor: pointer;
  color: #6b7280;
  user-select: none;
}

.form-btn {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
}

.form-btn-login {
  background: linear-gradient(135deg, #a29bfe, #6c5ce7);
  box-shadow: 0 4px 14px rgba(108, 92, 231, 0.3);
}

.form-btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

.form-btn-reg {
  background: linear-gradient(135deg, #00b894, #00cec9);
  box-shadow: 0 4px 14px rgba(0, 184, 148, 0.3);
}

.form-btn-reg:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 184, 148, 0.4);
}

.form-footer-link {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  color: #6b7280;
}

.form-footer-link a {
  color: #2563eb;
  font-weight: 600;
}

.form-footer-link a:hover {
  text-decoration: underline;
}

/* Legal & Policy Pages Layout */
.sm6afe-legal-content {
  line-height: 1.8;
  color: #374151;
  text-align: left;
}

.sm6afe-legal-content h2 {
  font-size: 20px;
  margin: 24px 0 10px;
  color: #1a1a2e;
  font-weight: 700;
}

.sm6afe-legal-content h3 {
  font-size: 17px;
  margin: 18px 0 8px;
  color: #1a1a2e;
  font-weight: 700;
}

.sm6afe-legal-content p {
  margin-bottom: 12px;
}

.sm6afe-legal-content ul, .sm6afe-legal-content ol {
  margin: 8px 0 12px 20px;
}

.sm6afe-legal-content li {
  margin: 4px 0;
}

/* Location Subpage Map & Grid */
.sm6afe-map-wrap {
  margin: 20px auto;
  max-width: 100%;
}

.sm6afe-map-wrap iframe {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.sm6afe-loc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.sm6afe-loc-card {
  padding: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: border-color 0.3s;
  text-align: left;
}

.sm6afe-loc-card:hover {
  border-color: #2563eb;
}

.sm6afe-loc-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: #1a1a2e;
  font-weight: 700;
}

.sm6afe-loc-card p {
  font-size: 14px;
  line-height: 1.6;
  margin: 4px 0;
  color: #6b7280;
}

@media(max-width: 767px) {
  .sm6afe-loc-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact/Feedback Support Form */
.support-form {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  margin-top: 24px;
  text-align: left;
}

.support-form h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a2e;
}

.support-form .form-group textarea {
  width: 100%;
  min-height: 100px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f9fafb;
  font-size: 15px;
  font-family: inherit;
  color: #1a1a2e;
  resize: vertical;
}

.support-form .form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  background: #fff;
}

.support-btn {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}

.support-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.4);
}

/* Alert Notification Banner */
.alert-banner {
  padding: 12px 16px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 8px;
  color: #065f46;
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

/* Horizontal scrollable screenshot carousel for subpages */
.sm6afe-ss {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin: 0 -16px;
  padding: 4px 16px 12px;
}

.sm6afe-ss img {
  height: 280px;
  width: auto;
  flex-shrink: 0;
  border-radius: 12px;
  scroll-snap-align: start;
  background: #f3f4f6;
  object-fit: contain;
  border: 1px solid #e5e7eb;
  transition: border-color .3s, box-shadow .3s;
}

.sm6afe-ss img:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
}

.sm6afe-ss::-webkit-scrollbar {
  height: 6px;
}

.sm6afe-ss::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.sm6afe-ss::-webkit-scrollbar-track {
  background: #f1f5f9;
}

@media(min-width: 768px) {
  .sm6afe-ss {
    margin: 0 -24px;
    padding: 4px 24px 12px;
    gap: 16px;
  }
  .sm6afe-ss img {
    height: 400px;
  }
}

/* Access Grid Layout for 3 columns */
.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0 30px;
}

.access-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.access-card:hover {
  transform: translateY(-4px);
  border-color: #2563eb;
  box-shadow: 0 12px 24px rgba(37,99,235,0.08);
}

.access-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.access-card p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 20px;
}

.access-btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 700;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  color: #fff !important;
  font-size: 15px;
  cursor: pointer;
}

.access-btn-oficial {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}
.access-btn-app {
  background: linear-gradient(135deg, #FF6B6B, #EE5A24);
}
.access-btn-alt {
  background: linear-gradient(135deg, #00b894, #00cec9);
}

.access-btn:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .access-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Responsible Gaming Warning Banner */
.responsible-banner {
  background: #fef2f2;
  border: 2px dashed #f87171;
  border-radius: 14px;
  padding: 24px;
  margin: 30px auto;
  text-align: left;
}

.responsible-banner h3 {
  color: #991b1b;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.responsible-banner ul {
  padding-left: 20px;
  margin-top: 8px;
  color: #7f1d1d;
  font-size: 14px;
}

.responsible-banner li {
  margin-bottom: 6px;
}

.badge-18 {
  background-color: #991b1b;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}



/* Come Dream11 App content helpers */
.sm6afe-spec {
  display: grid;
  grid-template-columns: minmax(120px, 0.8fr) 1.2fr;
  gap: 10px 14px;
  text-align: left;
  margin: 20px 0;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}
.sm6afe-spec dt { font-weight: 700; color: #1f2937; }
.sm6afe-spec dd { color: #4b5563; }
.sm6afe-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}
.sm6afe-table th, .sm6afe-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
}
.sm6afe-table th { background: #f3f4f6; color: #111827; }
.login-wrap {
  max-width: 460px;
  margin: 20px auto 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
}
.login-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.login-tabs button {
  flex: 1;
  padding: 10px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #f9fafb;
  color: #374151;
  font-weight: 700;
  cursor: pointer;
}
.login-tabs button.active { background: #2563eb; color: #fff; border-color: #2563eb; }
.login-panel { display: none; }
.login-panel.active { display: block; }
.login-panel form { display: grid; gap: 12px; }
.login-panel input[type="email"], .login-panel input[type="tel"], .login-panel input[type="text"], .login-panel input[type="password"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 15px;
}
.password-wrap { position: relative; }
.password-wrap .password-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #2563eb;
  font-weight: 700;
  cursor: pointer;
}
.password-wrap input { padding-right: 58px !important; }
@media (max-width: 520px) {
  .sm6afe-spec { grid-template-columns: 1fr; }
  .sm6afe-table { font-size: 13px; }
  .sm6afe-table th, .sm6afe-table td { padding: 8px; }
}
