:root{
  --bg:#0f1115;
  --surface:#11141c;
  --card:#202532;
  --card2:#11141c;
  --text:#f5f5f5;
  --muted:#d1d5db;
  --border:rgba(255,255,255,.12);
  --shadow:rgba(0,0,0,.35);

  --accent:#7dd3fc;
  --accent2:#f5b400;
}

body.light{
  --bg:#f4f5f7;
  --surface:#ffffff;
  --card:#ffffff;
  --card2:#edf0f5;
  --text:#141414;
  --muted:#555;
  --border:rgba(0,0,0,.12);
  --shadow:rgba(0,0,0,.12);

  --accent:#2563eb;
  --accent2:#d99a00;
}

*{box-sizing:border-box;}

html,body{
  overflow-x:hidden;
  width:100%;
  margin:0;
  padding:0;
}

body{
  background:var(--bg);
  color:var(--text);
  font-family:Arial,sans-serif;
}

h1,h2,h3{
  font-family:'Oswald',sans-serif;
  letter-spacing:.5px;
  text-transform:uppercase;
}

.header{text-align:center;}

.logo{
  max-width:66%;
  max-height:250px;
  margin-top:20px;
}

.theme-toggle{
  position:fixed;
  top:10px;
  right:10px;
  z-index:9999;
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid var(--border);
  background:var(--surface);
  color:var(--text);
  font-weight:900;
  cursor:pointer;
  box-shadow:0 10px 24px var(--shadow);
}

.quick-action-buttons{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  width:100%;
  max-width:950px;
  margin:25px auto;
}

.quick-btn{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  background:
    linear-gradient(145deg,rgba(255,255,255,.08),rgba(255,255,255,0)),
    linear-gradient(180deg,var(--card),var(--card2));
  color:var(--text);
  text-decoration:none;
  border-radius:18px;
  padding:20px 14px;
  min-height:118px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-align:center;
  font-weight:900;
  font-size:13px;
  line-height:1.15;
  text-transform:uppercase;
  letter-spacing:.4px;
  border:1px solid var(--border);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 14px 30px var(--shadow);
  transition:.25s ease;
}

.quick-btn::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:linear-gradient(120deg,transparent,rgba(125,211,252,.28),transparent);
  transform:translateX(-120%);
  transition:.5s ease;
  z-index:-1;
}

.quick-btn::after{
  content:"";
  position:absolute;
  width:70px;
  height:70px;
  border-radius:50%;
  background:rgba(125,211,252,.18);
  top:-25px;
  right:-25px;
  z-index:-1;
}

.quick-btn:hover{
  transform:translateY(-4px);
  border-color:var(--accent);
  box-shadow:0 18px 40px rgba(125,211,252,.18);
}

.quick-btn:hover::before{
  transform:translateX(120%);
}

.quick-icon{
  color:var(--accent);
  font-size:36px;
  line-height:1;
  filter:drop-shadow(0 4px 8px rgba(0,0,0,.35));
}

.small{
  padding:2px;
  min-height:30px;
}

.app-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.78);
  backdrop-filter:blur(8px);
  z-index:99999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
}
body.light .app-overlay{
  background:rgba(255,255,255,.78);
}
.app-overlay.active{
  display:flex;
}

.overlay-box{
  position:relative;
  width:min(100%,1000px);
  max-height:90vh;
  overflow-y:auto;
  background:var(--surface);
  color:var(--text);
  border-radius:22px;
  border:1px solid var(--border);
  box-shadow:0 30px 80px var(--shadow);
  padding:30px;
}

.overlay-close{
  position:sticky;
  top:0;
  margin-left:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:999999;
  width:46px;
  height:46px;
  border:none;
  border-radius:50%;
  background:var(--accent2);
  color:#111;
  font-size:22px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 10px 24px var(--shadow);
}

#overlayContent{
  margin-top:20px;
}

.coupon{
  position:relative;
  margin:28px 0;
  padding:30px;
  border-radius:24px;
  overflow:hidden;
  background:
    linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,0)),
    linear-gradient(180deg,var(--card),var(--card2));
  border:1px solid rgba(125,211,252,.22);
  box-shadow:
    0 20px 50px var(--shadow),
    inset 0 1px 0 rgba(255,255,255,.05);
  color:var(--muted);
  line-height:1.7;
}

.coupon::before{
  content:"SPECIAL";
  position:absolute;
  top:18px;
  right:-44px;
  transform:rotate(35deg);
   background:var(--accent2);
  color:#111;
  padding:8px 50px;
  font-size:11px;
  font-weight:900;
  letter-spacing:2px;
  box-shadow:0 6px 16px rgba(0,0,0,.25);
}

.coupon h1,
.coupon h2,
.coupon h3{
  margin:0 0 18px;
  padding-right:90px;
  color:var(--text);
  font-family:'Oswald',sans-serif;
  text-transform:uppercase;
  line-height:1.1;
}

.coupon h1{font-size:38px;}
.coupon h2{font-size:30px;}
.coupon h3{font-size:24px;}

.coupon h1 span,
.coupon h2 span,
.coupon h3 span{
  color:var(--accent) !important;
  font-weight:900;
}

.coupon p{margin:14px 0;}

.coupon a{
  display:inline-block;
  margin-top:14px;
  color:var(--accent);
  font-weight:900;
  text-decoration:none;
  transition:.2s ease;
}

.coupon a:hover{
  transform:translateY(-2px);
  color:var(--text);
}

.coupon .expire{
  margin-top:22px;
  padding-top:16px;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1px;
}

.coupon strike{opacity:.5;}

#overlayContent hr{
  border:none;
  height:1px;
  background:var(--border);
  margin:45px 0;
}

@media(max-width:700px){
  .quick-action-buttons{
    grid-template-columns:1fr 1fr;
    gap:12px;
    width:calc(100% - 24px);
    margin:20px auto;
    padding:0;
  }

  .quick-btn{
    width:100%;
    min-width:0;
    padding:18px 10px;
  }

  .logo{
    max-width:90%;
  }

  .coupon{
    padding:22px 16px;
  }

  .coupon h1{font-size:28px;}
  .coupon h2{font-size:24px;}
  .coupon h3{font-size:21px;}
}

/*IMAGES*/
.gallery-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(260px,1fr));

    gap:18px;

    margin:25px 0;

}


.gallery-card{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    background:var(--surface);

    border:1px solid var(--border);

    box-shadow:
        0 14px 30px var(--shadow);

    transition:.25s ease;

}


.gallery-card:hover{

    transform:
        translateY(-4px);

    border-color:var(--accent);

    box-shadow:
        0 18px 40px rgba(125,211,252,.18);

}


.gallery-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    display:block;

    transition:.35s ease;

}


.gallery-card:hover img{

    transform:scale(1.04);

}


@media(max-width:700px){

    .gallery-card img{

        height:200px;

    }

}
/*IMPAGE OVERLAY*/

.image-overlay{

    position:fixed;

    inset:0;

    background:
        rgba(0,0,0,.92);

    backdrop-filter:blur(8px);

    z-index:999999;

    display:none;

    align-items:center;
    justify-content:center;

    padding:30px;

}


.image-overlay.active{

    display:flex;

}


#overlayImage{

    max-width:95vw;
    max-height:92vh;

    border-radius:20px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.55);

}


.image-close{

    position:fixed;

    top:18px;
    right:18px;

    width:52px;
    height:52px;

    border:none;

    border-radius:50%;

    background:var(--accent2);

    color:#111;

    font-size:24px;
    font-weight:900;

    cursor:pointer;

    z-index:9999999;

    box-shadow:
        0 10px 24px rgba(0,0,0,.35);

}


.image-close:hover{

    transform:scale(1.08);

}