* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #0b0b0b;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: auto;
}

/* =========================
   SLOTGROUPS HEADER
========================= */

.sg-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #0f1115;
    border-bottom: 1px solid #1e2230;
}

.sg-container {
    max-width: 1100px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.sg-logo a {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    
}

.sg-logo img {
    width: 60px;
    height: 60px;
      border-radius:35px;
    object-fit: contain;
}

.sg-logo span {
    font-size: 25px;
    font-weight: 700;
    color: #e6e9f0; /* premium white */
}

/* Nav */
.sg-nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

.sg-nav a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    position: relative;
}

/* Hover underline effect */
.sg-nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -6px;
    background: #6c79ff; /* accent color (NOT gold) */
    transition: 0.3s;
}

.sg-nav a:hover::after {
    width: 100%;
}

/* Mobile toggle */
.sg-menu-toggle {
    display: none;
    font-size: 26px;
    color: #cfd3ff;
    cursor: pointer;
}

/* Main wrapper */
.sg-main {
    min-height: 100vh;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .sg-nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0f1115;
        display: none;
        border-bottom: 1px solid #1e2230;
    }

    .sg-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .sg-nav li {
        border-top: 1px solid #1e2230;
    }

    .sg-nav a {
        display: block;
        padding: 14px 20px;
    }

    .sg-menu-toggle {
        display: block;
    }

    .sg-nav.active {
        display: block;
    }
}




/* =========================
   HERO SECTION
========================= */

.sg-hero {
    position: relative;
    min-height: 90vh;
    background: url("https://img.freepik.com/free-photo/view-slot-machines-casino_23-2151007823.jpg?semt=ais_hybrid&w=740&q=80") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

/* Dark overlay for readability */
.sg-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 20, 0.45);
}

.sg-hero-content {
    position: relative;
    max-width: 800px;
    margin: auto;
    text-align: center;
    color: #ffffff;
}

.sg-hero-content h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #e9ecff;
}

.sg-hero-content p {
    font-size: 18px;
    color: #cfd3ff;
    margin-bottom: 30px;
}

/* Buttons */
.sg-hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 26px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

/* Accent (NO gold) */
.btn-primary {
    background: #6c79ff;
    color: #ffffff;
}

.btn-primary:hover {
    background: #5a66e0;
}

.btn-secondary {
    border: 1px solid #6c79ff;
    color: #cfd3ff;
}

.btn-secondary:hover {
    background: #6c79ff;
    color: #fff;
}

/* =========================
   RESPONSIVE HERO
========================= */

@media (max-width: 992px) {
    .sg-hero-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .sg-hero {
        min-height: 80vh;
    }

    .sg-hero-content h1 {
        font-size: 32px;
    }

    .sg-hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .sg-hero-content h1 {
        font-size: 26px;
    }
}


/* =========================
   SLOTS SECTION
========================= */

.sg-slots {
    background: #0b0d14;
    padding: 70px 20px;
}

.sg-slots-wrap {
    display: flex;
    flex-direction: column; /* as requested */
    gap: 50px;
}

/* Heading */
.sg-section-head {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.sg-section-head h2 {
    font-size: 34px;
    margin-bottom: 10px;
    color: #e9ecff;
}

.sg-section-head p {
    color: #b7bbff;
    font-size: 16px;
}

/* Grid */
.sg-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.sg-slot-card {
    background: #14172a;
    border-radius: 10px;
    overflow: hidden;
    padding-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sg-slot-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.sg-slot-card h3 {
    margin: 15px 15px 8px;
    color: #e9ecff;
    font-size: 18px;
}

.sg-slot-card p {
    margin: 0 15px;
    color: #b7bbff;
    font-size: 14px;
    line-height: 1.5;
}

.sg-slot-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Button */
.sg-section-btn {
    text-align: center;
}

.sg-section-btn .btn-primary {
    padding: 14px 34px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .sg-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sg-slots-grid {
        grid-template-columns: 1fr;
    }

    .sg-section-head h2 {
        font-size: 26px;
    }
}



/* =========================
   CASINO REVIEWS SECTION
========================= */

.sg-reviews {
    background: #0f111c;
    padding: 70px 20px;
}

.sg-reviews-wrap {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Grid */
.sg-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.sg-review-card {
    background: #15183a;
    border-radius: 10px;
    overflow: hidden;
    padding-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sg-review-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.sg-review-card h3 {
    margin: 15px 15px 8px;
    font-size: 18px;
    color: #e9ecff;
}

.sg-review-card p {
    margin: 0 15px;
    font-size: 14px;
    color: #b7bbff;
    line-height: 1.5;
}

.sg-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .sg-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sg-reviews-grid {
        grid-template-columns: 1fr;
    }
}



/* =========================
   BONUSES SECTION
========================= */

.sg-bonuses {
    background: #0b0d14;
    padding: 80px 20px;
}

.sg-bonuses-wrap {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Bonus Row */
.sg-bonus-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.sg-bonus-row.reverse {
    flex-direction: row-reverse;
}

/* Text */
.sg-bonus-text {
    flex: 1;
}

.sg-bonus-text h3 {
    font-size: 26px;
    color: #e9ecff;
    margin-bottom: 12px;
}

.sg-bonus-text p {
    color: #b7bbff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Image */
.sg-bonus-image {
    flex: 1;
}

.sg-bonus-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .sg-bonus-row,
    .sg-bonus-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .sg-bonus-text h3 {
        font-size: 22px;
    }
}



/* =========================
   FOOTER (FINAL FIXED)
========================= */

.sg-footer {
    background: linear-gradient(180deg, #0b0d14, #070812);
    padding: 70px 20px 25px;
    color: #b7bbff;
}

/* Grid */
.sg-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    align-items: flex-start; /* IMPORTANT FIX */
}

/* Columns */
.sg-footer-col {
    display: flex;
    flex-direction: column;
}

/* Headings */
.sg-footer-col h4 {
    font-size: 22px;
    margin: 0 0 18px;
    color: #e9ecff;
}

/* Paragraphs */
.sg-footer-col p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* =========================
   LINKS
========================= */

.sg-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sg-footer-col ul li {
    margin-bottom: 10px;
}

.sg-footer-col ul a {
    text-decoration: none;
    color: #b7bbff;
    font-size: 15px;
    transition: color 0.3s;
}

.sg-footer-col ul a:hover {
    color: #6c79ff;
}

/* =========================
   ICONS
========================= */

.sg-footer-icons {
    display: flex;
    gap: 14px;
    margin-top: 22px;
}

.sg-footer-icons span {
    width: 42px;
    height: 42px;
    background: #14172a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

/* =========================
   EMAIL
========================= */

.sg-footer-email {
    margin-top: 12px;
}

.sg-footer-email a {
    color: #6c79ff;
    text-decoration: none;
    font-weight: 500;
}

/* =========================
   BOTTOM BAR
========================= */

.sg-footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #1e2230;
    font-size: 14px;
    color: #8e93cc;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .sg-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .sg-footer-icons {
        justify-content: center;
    }
}



/* =========================
   Footer (Casino vibe)
========================= */
.site-footer{
  margin-top: 40px;
  border-top: 1px solid var(--stroke);
  background:
    radial-gradient(900px 420px at 20% 0%, rgba(124,58,237,0.10), transparent 60%),
    radial-gradient(900px 420px at 80% 10%, rgba(34,211,238,0.08), transparent 60%),
    rgba(0,0,0,0.15);
}

.footer-top{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px;
  padding: 34px 0 22px;
}

.footer-col{
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-brand{ padding: 16px; }

.footer-logo{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer-logo img{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  box-shadow:
    0 0 0 2px rgba(124,58,237,0.16),
    0 0 20px rgba(34,211,238,0.10);
}
.footer-logo span{
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.4px;
  background: linear-gradient(90deg, var(--neon2), var(--neon1), var(--neon3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-text{
  margin: 0 0 12px;
  color: rgba(255,255,255,0.74);
  line-height: 1.6;
}

.footer-contact{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
}
.footer-label{ color: rgba(255,255,255,0.70); }
.footer-email{
  color: rgba(255,255,255,0.88);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.footer-email:hover{
  border-color: rgba(34,211,238,0.22);
  box-shadow: 0 0 18px rgba(34,211,238,0.08);
}

.footer-title{
  margin: 0 0 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.90);
  letter-spacing: 0.4px;
}

.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li{ margin: 8px 0; }
.footer-links a{
  color: rgba(255,255,255,0.74);
  padding: 6px 8px;
  border-radius: 10px;
  display: inline-flex;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.footer-links a:hover{
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
  transform: translateY(-1px);
}

.footer-note{
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}
.footer-note p{
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  font-size: 13px;
}

.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 0 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.62);
  font-size: 13px;
}
.footer-mini{
  margin: 0;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.footer-mini a{
  color: rgba(255,255,255,0.70);
}
.footer-mini a:hover{ color: rgba(255,255,255,0.92); }

@media (max-width: 1000px){
  .footer-top{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px){
  .footer-top{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
}
