/* ============================================================
   GUARD GAMESBAZAAR  style.css  v7 - V5 Chamfered + Tweaks
   ============================================================ */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}

:root{
  --alpha:#cd7f32; --alpha-g:rgba(205,127,50,.7);
  --omega:#00bfff; --omega-g:rgba(0,191,255,.7);
  --apex:#ffd700;  --apex-g:rgba(255,215,0,.7);
  --bg:#05050e;
  --card-bg:rgba(4,5,10,.95);
  --nav-h:60px;
  --font-hud:'Orbitron',sans-serif;
  --font-body:'Rajdhani',sans-serif;
  --font-ui:'Inter',sans-serif;
}

html{overflow-x:hidden;scroll-behavior:smooth;}
body{
  font-family:var(--font-ui);
  color:#fff;
  background-color:#05050e;
  min-height:100vh;
  overflow-x:hidden;
}

body::before{
  content: '';
  position: fixed;
  top: -10%; left: -10%; right: -10%; bottom: -10%;
  z-index: -2;
  background-image: url('assets/dark.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  animation: fogDrift 60s ease-in-out infinite alternate;
}

@keyframes fogDrift {
  0%   { transform: scale(1) translate(0, 0); }
  33%  { transform: scale(1.03) translate(-1%, 1%); }
  66%  { transform: scale(1.06) translate(1%, -1%); }
  100% { transform: scale(1.08) translate(-1.5%, -1%); }
}

/* BG CANVAS & FOG */
#bgCanvas{position:fixed;inset:0;width:100%;height:100%;z-index:0;pointer-events:none;}
.fog-overlay{
  position:fixed;inset:0;z-index:1;pointer-events:none;
  background-image:
    radial-gradient(ellipse at 15% 85%, rgba(205,127,50,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 85%, rgba(255,215,0,0.1) 0%, transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(0,191,255,0.08) 0%, transparent 65%);
  animation: fogPulse 10s ease-in-out infinite alternate;
}
@keyframes fogPulse{ 0%{opacity:0.5;transform:scale(1);} 100%{opacity:1;transform:scale(1.05);} }

/* ===================== NAVBAR ===================== */
.navbar{
  position:fixed;top:0;left:0;right:0;height:var(--nav-h);z-index:200;
  background:rgba(5,5,14,.82);backdrop-filter:blur(22px);
  border-bottom:1px solid rgba(245,166,35,.12);
}
.nav-inner{max-width:1300px;margin:0 auto;height:100%;display:flex;align-items:center;justify-content:space-between;padding:0 28px;}
.nav-logo{display:flex;align-items:center;gap:10px;cursor:pointer;}
.logo-shield-svg{filter:drop-shadow(0 0 10px rgba(245,166,35,.7));transition:filter .3s;}
.nav-logo:hover .logo-shield-svg{filter:drop-shadow(0 0 22px rgba(245,166,35,1));}
.logo-words{display:flex;flex-direction:column;line-height:1;}
.logo-main{font-family:var(--font-hud);font-size:14px;font-weight:900;color:#f5a623;letter-spacing:3px;}
.logo-sub{font-family:var(--font-ui);font-size:7.5px;color:rgba(245,166,35,.5);letter-spacing:2px;margin-top:2px;}

.nav-links{display:flex;list-style:none;gap:2px;}
.nav-link{
  font-family:var(--font-ui);font-size:11px;font-weight:600;letter-spacing:1.5px;
  color:rgba(255,255,255,.55);text-decoration:none;padding:6px 14px;border-radius:4px;
  position:relative;transition:color .2s;
}
.nav-link::after{
  content:'';position:absolute;bottom:2px;left:50%;
  width:0;height:2px;background:#f5a623;border-radius:2px;
  transform:translateX(-50%);transition:width .3s;box-shadow:0 0 8px #f5a623;
}
.nav-link:hover,.nav-link.active{color:#fff;}
.nav-link:hover::after,.nav-link.active::after{width:60%;}
.nav-link.active{color:#f5a623;}

.nav-right{display:flex;align-items:center;gap:12px;}
.nav-ico{
  position:relative;width:34px;height:34px;
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.09);border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.6);cursor:pointer;transition:all .2s;
}
.nav-ico:hover{background:rgba(245,166,35,.1);border-color:rgba(245,166,35,.4);color:#fff;}
.nav-ico-round{border-radius:50%;background:rgba(245,166,35,.08);border-color:rgba(245,166,35,.2);}

/* ===================== USER DROPDOWN ===================== */
.user-menu-wrap { position: relative; }
.user-dropdown {
  position: absolute;
  top: 130%; right: 0;
  width: 220px;
  background: rgba(5,5,14,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8), 0 0 20px rgba(245,166,35,0.15);
  padding: 10px;
  display: flex; flex-direction: column; gap: 4px;
  opacity: 0; pointer-events: none;
  transform: translateY(10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
  transform-origin: top right;
  z-index: 999;
}
.user-dropdown.show {
  opacity: 1; pointer-events: all;
  transform: translateY(0) scale(1);
}
.ud-header {
  padding: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 8px;
  display: flex; flex-direction: column;
}
.ud-header span { font-family: var(--font-ui); font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 2px; }
.ud-header strong { font-family: var(--font-hud); font-size: 14px; color: #f5a623; letter-spacing: 1px; margin-top: 2px; }

.ud-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  font-family: var(--font-ui); font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7);
  text-decoration: none; transition: all 0.2s;
}
.ud-item svg { width: 16px; height: 16px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.ud-item:hover { background: rgba(255,255,255,0.05); color: #fff; }
.ud-item:hover svg { color: #f5a623; }

.ud-divider { height: 1px; background: rgba(255,255,255,0.05); margin: 6px 0; }
.ud-logout { color: #ff4d4d; }
.ud-logout:hover { background: rgba(255,77,77,0.1); color: #ff4d4d; }
.ud-logout:hover svg { color: #ff4d4d; }

/* ===================== HERO ===================== */
.hero{
  position:relative;z-index:2;text-align:center;
  padding-top:calc(var(--nav-h) + 15px); padding-bottom:0px;
}
.hero-body{opacity:0;transform:translateY(-22px);animation:heroIn .85s .15s cubic-bezier(.22,1,.36,1) forwards;}
@keyframes heroIn{to{opacity:1;transform:translateY(0);}}
.hero-eyebrow{font-family:var(--font-ui);font-size:12px;font-weight:600;letter-spacing:5px;color:#f5a623;margin-bottom:8px;}
.hero-title{
  font-family:var(--font-hud);font-size:clamp(32px,5.2vw,66px);font-weight:900;
  letter-spacing:6px;margin-bottom:8px;line-height:1.1;
  background:linear-gradient(180deg,#fff 50%,rgba(255,255,255,.45));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
  filter:drop-shadow(0 4px 20px rgba(0,0,0,0.8));
}
.hero-tagline{font-family:var(--font-ui);font-size:13px;color:rgba(255,255,255,.4);}

/* ===================== PACKAGES ===================== */
.packages{
  position:relative;z-index:2;
  display:flex;align-items:center;justify-content:center;
  padding:0 50px 16px;
  margin-top: 130px; /* Space for bursting characters */
}
.arrow-btn{
  width:42px;height:42px;flex-shrink:0;
  background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.45);cursor:pointer;transition:all .3s;z-index:10;
}
.arrow-btn:hover{background:rgba(245,166,35,.1);border-color:rgba(245,166,35,.4);color:#f5a623;box-shadow:0 0 20px rgba(245,166,35,.2);}
.cards-row{
  display:flex;gap:35px;align-items:flex-end;justify-content:center;
  flex:1;max-width:1100px;
}

/* ===================== SINGLE CARD (V5 Chamfered Base) ===================== */
.card{
  position:relative;
  flex:1;max-width:335px;min-width:275px;
  background:transparent;
  border:none; overflow:visible;
  transform-style:preserve-3d; will-change:transform;
  opacity:0; animation:cardIn .75s cubic-bezier(.22,1,.36,1) forwards;
  
  /* Strictly forced heights so no content stretches the flex items */
  display: flex !important;
  flex-direction: column !important;
  height: 900px !important; 
}
.card-alpha{animation-delay:.12s; z-index:3;}
.card-omega{animation-delay:0s; z-index:4;}
.card-apex {animation-delay:.24s; z-index:3;}
.card:hover{z-index:12 !important;}
@keyframes cardIn{from{opacity:0;transform:translateY(55px);}to{opacity:1;transform:translateY(0);}}

.card-featured{
  height: 940px !important;
  margin-bottom: 0px;
}

/* ===================== CHAMFERED FRAMES ===================== */
.card-frame{
  position:absolute; inset:0; z-index:1;
  transition:filter .3s;
}
/* Glowing drop shadows applied to wrapper since clip-path cuts box-shadow */
.alpha-frame { filter:drop-shadow(0 0 20px rgba(205,127,50,.35)); }
.omega-frame { filter:drop-shadow(0 0 25px rgba(0,191,255,.45)); }
.apex-frame  { filter:drop-shadow(0 0 30px rgba(255,215,0,.45)); }

.card-alpha:hover .alpha-frame { filter:drop-shadow(0 0 45px rgba(205,127,50,.7)); }
.card-omega:hover .omega-frame { filter:drop-shadow(0 0 55px rgba(0,191,255,.8)); }
.card-apex:hover .apex-frame   { filter:drop-shadow(0 0 60px rgba(255,215,0,.8)); }

/* Outer glowing border using gradient */
.card-frame-glow{
  position:absolute;inset:0;
  clip-path:polygon(0 40px, 40px 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 0 100%);
}
.alpha-frame .card-frame-glow { background:linear-gradient(180deg, #cd7f32 0%, #502000 100%); }
.omega-frame .card-frame-glow { background:linear-gradient(180deg, #00bfff 0%, #001a4d 100%); }
.apex-frame .card-frame-glow  { background:linear-gradient(180deg, #ffd700 0%, #4a3000 100%); }

/* Inner solid card body */
.card-frame-inner{
  position:absolute;
  top:2px; left:2px; right:2px; bottom:2px;
  background:var(--card-bg);
  clip-path:polygon(0 39px, 39px 0, calc(100% - 39px) 0, 100% 39px, 100% 100%, 0 100%);
  z-index:2;
}

.card-canvas{
  position:absolute;inset:0;width:100%;height:100%;
  pointer-events:none;z-index:1;
}

/* ===================== CHARACTER BURST ===================== */
.card-char-wrap{
  position:absolute;
  top: -110px; 
  left: -40px; 
  right: -40px;
  height: 400px; 
  z-index: 40;
  pointer-events:none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.char-img{
  width:100%; height:100%;
  object-fit:cover; object-position:center;
  mix-blend-mode:screen;
  /* Shrunk scale slightly further as requested (0.95 -> 0.88) */
  transform:scale(0.88);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 45%, transparent 68%);
  mask-image: radial-gradient(ellipse at 50% 50%, black 45%, transparent 68%);
  animation:breathe 6s ease-in-out infinite;
}
@keyframes breathe{ 0%,100%{transform:scale(0.88);} 50%{transform:scale(0.90) translateY(-4px);} }
.card:hover .char-img{ transform:scale(0.93) translateY(-8px); transition:transform .8s cubic-bezier(.22,1,.36,1); }

.card-spacer { height: 180px; width: 100%; }

/* ===================== CREST BADGE ===================== */
.crest-wrap{
  position:relative; z-index:45;
  margin: -10px auto 12px;
  display: flex; flex-direction:column; align-items: center;
  animation:crestFloat 5s ease-in-out infinite;
  pointer-events:none;
}
@keyframes crestFloat{0%,100%{transform:translateY(0);}50%{transform:translateY(-8px);}}
.alpha-crest{filter:drop-shadow(0 0 15px rgba(205,127,50,1));}
.omega-crest{filter:drop-shadow(0 0 20px rgba(0,191,255,1));}
.apex-crest {filter:drop-shadow(0 0 25px rgba(255,215,0,1)) drop-shadow(0 0 45px rgba(255,200,0,.6));}

/* ===================== POPULAR STRIP ===================== */
/* The user requested it to be placed above the crest */
.popular-strip{
  position:absolute;
  top: -30px; /* Right above the crest */
  left: 50%;
  transform: translateX(-50%);
  background:linear-gradient(90deg,#004cb0,#00bfff,#004cb0);background-size:200%;
  color:#fff;font-family:var(--font-hud);font-size:10.5px;font-weight:700;letter-spacing:2px;
  padding:6px 20px;
  border-radius:8px;
  white-space:nowrap;
  z-index:46;
  box-shadow:0 6px 20px rgba(0,191,255,.5),0 0 0 1px rgba(0,191,255,.3);
  animation:popShimmer 2.5s linear infinite;
}
@keyframes popShimmer{0%{background-position:200%;}100%{background-position:-200%;}}
.pop-shine{
  position:absolute;inset:0;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.5),transparent);
  animation:shinePass 2.5s ease-in-out infinite; border-radius:inherit;
}

/* ===================== CARD BODY ===================== */
.card-body{
  position:relative;z-index:50;
  padding: 0px 22px 22px; 
  display:flex;flex-direction:column;align-items:center;
  flex: 1; /* Pushes button to bottom */
}

/* Package name */
.card-name{
  font-family:var(--font-hud);font-size:28px;font-weight:900;
  letter-spacing:5px;display:block;line-height:1;
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
  background-size:250%;animation:nameShimmer 3s linear infinite;
}
@keyframes nameShimmer{0%{background-position:250%;}100%{background-position:-250%;}}
.alpha-name{background-image:linear-gradient(90deg,#7a3d0a,#cd7f32,#e8a44a,#ffd090,#cd7f32,#7a3d0a);filter:drop-shadow(0 0 10px rgba(205,127,50,.8));}
.omega-name{background-image:linear-gradient(90deg,#0060a0,#00bfff,#80dfff,#fff,#00bfff,#0060a0);filter:drop-shadow(0 0 12px rgba(0,191,255,.9));animation-duration:2.5s;}
.apex-name  {background-image:linear-gradient(90deg,#5a3800,#ffd700,#ffe566,#fff,#ffd700,#5a3800);filter:drop-shadow(0 0 16px rgba(255,215,0,1));animation-duration:2s;}

.card-pkg-label{
  font-family:var(--font-ui);font-size:10px;font-weight:600;
  letter-spacing:4px;color:rgba(255,255,255,.3);display:block;margin-bottom:18px;
}

/* ===================== FEATURES ===================== */
.features{list-style:none;width:100%;display:flex;flex-direction:column;gap:6px;margin-bottom:20px;}
.feat{
  display:flex;align-items:center;gap:10px;
  background:#04050a; /* Solid background to completely block particles */
  border:1px solid rgba(255,255,255,.045);
  border-radius:8px;padding:8px 10px;transition:background .2s,border-color .2s;
}
.feat:hover{background:rgba(255,255,255,.05);}
.card-alpha .feat:hover{border-color:rgba(205,127,50,.35);}
.card-omega .feat:hover{border-color:rgba(0,191,255,.35);}
.card-apex  .feat:hover{border-color:rgba(255,215,0,.35);}

.feat-link{cursor:pointer;position:relative;}
.pop-ico{opacity:0.3;transition:all .2s;margin-left:auto;flex-shrink:0;}
.feat-link:hover .pop-ico{opacity:1;transform:translate(2px,-2px) scale(1.1);color:#fff;}
.card-alpha .feat-link:hover .pop-ico{color:#cd7f32;}
.card-omega .feat-link:hover .pop-ico{color:#00bfff;}
.card-apex .feat-link:hover .pop-ico{color:#ffd700;}

.feat-ico{
  width:28px;height:28px;flex-shrink:0;border-radius:6px;
  display:flex;align-items:center;justify-content:center;padding:5px;
}
.feat-ico svg{width:100%;height:100%;}
.alpha-ico{color:#cd7f32;background:rgba(205,127,50,.14);}
.omega-ico{color:#00bfff;background:rgba(0,191,255,.14);}
.apex-ico {color:#ffd700;background:rgba(255,215,0,.14);}

.feat span{display:flex;flex-direction:column;}
.feat b{font-family:var(--font-body);font-size:12px;font-weight:700;letter-spacing:.3px;color:rgba(255,255,255,.9);line-height:1.2;font-style:normal;}
.feat em{font-family:var(--font-ui);font-size:9.5px;color:rgba(255,255,255,.4);line-height:1.2;font-style:normal;}

/* ===================== PRICE BUTTON ===================== */
.price-btn{
  position:relative;overflow:hidden;
  width:100%;padding:10px 16px;border:none;border-radius:8px;cursor:pointer;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;
  font-family:var(--font-hud);font-weight:700;letter-spacing:1px;
  transition:transform .2s,box-shadow .3s;
  margin-top: auto; /* Always bottom */
}
.price-btn:hover{transform:translateY(-3px);}
.price-btn:active{transform:translateY(1px);}

.alpha-btn{
  background:linear-gradient(135deg,rgba(80,30,0,.75),rgba(160,70,15,.4));
  border:1.5px solid rgba(205,127,50,.8);color:#e8a44a;
  box-shadow:0 0 20px rgba(205,127,50,.2);
}
.alpha-btn:hover{box-shadow:0 0 40px rgba(205,127,50,.55);}

.omega-btn{
  background:linear-gradient(135deg,rgba(0,30,75,.75),rgba(0,130,200,.3));
  border:1.5px solid rgba(0,191,255,.85);color:#00d8ff;
  box-shadow:0 0 22px rgba(0,191,255,.25);
}
.omega-btn:hover{box-shadow:0 0 48px rgba(0,191,255,.6);}

.apex-btn{
  background:linear-gradient(135deg,#4a2800,#b07800,#ffd700,#b07800);
  border:1.5px solid rgba(255,215,0,.95);color:#1a0d00;font-weight:900;
  box-shadow:0 0 28px rgba(255,215,0,.35);
  animation:goldBtnGlow 2s ease-in-out infinite;
}
.apex-btn:hover{box-shadow:0 0 55px rgba(255,215,0,.7);}
@keyframes goldBtnGlow{0%,100%{box-shadow:0 0 22px rgba(255,215,0,.3);}50%{box-shadow:0 0 50px rgba(255,215,0,.65);}}

.price-main{display:flex;align-items:center;}
.price-num{font-size:20px;line-height:1;}
.price-sub{
  font-family:var(--font-ui);
  font-size:10px;
  opacity:0.75;
  font-weight:500;
  letter-spacing:0.5px;
  text-transform:none;
  line-height:1;
}

/* Shine effect */
.shine{
  position:absolute;top:0;left:-100%;width:55%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.38),transparent);
  transform:skewX(-20deg);pointer-events:none;
}
.price-btn.do-shine .shine{animation:shinePass .55s ease forwards;}
@keyframes shinePass{0%{left:-100%;}100%{left:200%;}}

/* ===================== BOTTOM BAR ===================== */
.bottom-bar{position:relative;z-index:2;padding:25px 40px 22px;text-align:center;}
.bb-inner{
  display:flex;align-items:center;justify-content:center;
  background:rgba(7,8,20,.75);border:1px solid rgba(245,166,35,.12);
  border-radius:12px;padding:13px 28px;backdrop-filter:blur(14px);
  max-width:680px;margin:0 auto;
}
.bb-item{display:flex;align-items:center;gap:11px;flex:1;justify-content:center;padding:0 16px;}
.bb-ico{width:34px;height:34px;background:rgba(245,166,35,.07);border-radius:8px;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.bb-title{display:block;font-family:var(--font-body);font-size:11.5px;font-weight:700;color:rgba(255,255,255,.8);letter-spacing:.4px;}
.bb-desc {display:block;font-family:var(--font-ui);font-size:9.5px;color:rgba(255,255,255,.35);margin-top:2px;}
.bb-sep  {width:1px;height:38px;background:rgba(255,255,255,.07);}

.dots-row{display:flex;gap:6px;justify-content:center;margin-top:10px;}
.dot{width:6px;height:6px;border-radius:50%;background:rgba(255,255,255,.18);transition:all .3s;}
.dot-on{background:#f5a623;box-shadow:0 0 8px rgba(245,166,35,.7);width:20px;border-radius:3px;}

/* ===================== LIGHTNING FLASH ===================== */
#gflash{position:fixed;inset:0;pointer-events:none;z-index:150;opacity:0;}
#gflash.flash{animation:gFlash .18s ease-out forwards;}
@keyframes gFlash{0%{opacity:.18;background:rgba(255,215,0,.07);}50%{opacity:.3;background:rgba(255,215,0,.12);}100%{opacity:0;}}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar{width:5px;}
::-webkit-scrollbar-track{background:#05050e;}
::-webkit-scrollbar-thumb{background:rgba(245,166,35,.3);border-radius:3px;}

/* ===================== FOOTER ===================== */
.site-footer{
  position:relative;z-index:2;
  background:rgba(5,5,14,.85); backdrop-filter:blur(15px);
  border-top:1px solid rgba(245,166,35,.15);
  margin-top: 40px; padding-top: 50px;
}
.footer-inner{
  max-width:1200px; margin:0 auto; padding:0 30px;
  display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
}
.footer-col h3{
  font-family:var(--font-hud); font-size:14px; color:#f5a623; letter-spacing:1px;
  margin-bottom:20px;
}
.footer-desc{
  font-family:var(--font-ui); font-size:12px; color:rgba(255,255,255,.5);
  line-height:1.6; margin-top:15px; max-width:280px;
}
.footer-links{list-style:none;}
.footer-links li{margin-bottom:10px;}
.footer-links a{
  font-family:var(--font-ui); font-size:12px; color:rgba(255,255,255,.6);
  text-decoration:none; transition:color .2s;
}
.footer-links a:hover{color:#f5a623;}
.footer-contact{list-style:none;}
.footer-contact li{
  font-family:var(--font-ui); font-size:12px; color:rgba(255,255,255,.5);
  margin-bottom:10px; line-height:1.5;
}
.footer-contact li strong{color:rgba(255,255,255,.8); font-weight:600;}

.footer-bottom{
  max-width:1200px; margin:40px auto 0; padding:20px 30px;
  border-top:1px solid rgba(255,255,255,.05);
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px;
}
.footer-copyright{
  font-family:var(--font-ui); font-size:11px; color:rgba(255,255,255,.4);
}
.footer-payments{
  display:flex; gap:10px; flex-wrap:wrap;
}
.pay-badge{
  font-family:var(--font-hud); font-size:10px; font-weight:700; color:rgba(255,255,255,.5);
  border:1px solid rgba(255,255,255,.1); border-radius:4px; padding:6px 12px;
  display:flex; align-items:center; gap:6px; background:rgba(0,0,0,.2);
}
.ssl-badge{color:#4ade80; border-color:rgba(74,222,128,.3); background:rgba(74,222,128,.05);}

/* ===================== FAQ ACCORDION ===================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0 30px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  scroll-margin-top: 100px;
}
.faq-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(245, 166, 35, 0.3);
}
.faq-item.active {
  background: rgba(245, 166, 35, 0.05);
  border-color: rgba(245, 166, 35, 0.6);
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.1);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
}
.faq-q h3 {
  font-family: var(--font-hud);
  font-size: 15px;
  letter-spacing: 1px;
  color: #fff;
  font-weight: 700;
  margin: 0;
}
.faq-icon {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  padding: 0 25px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-a p {
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 25px;
}
.faq-item.active .faq-a {
  max-height: 300px;
  opacity: 1;
}

/* ─── Global Action Button ─── */
.g-btn {
  padding: 10px 20px;
  background: var(--theme-color, #f5a623);
  color: #000;
  border: 1px solid var(--theme-color, #f5a623);
  border-radius: 6px;
  font-family: var(--font-hud);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 5px rgba(0,0,0,0.3);
  box-shadow: 0 0 10px rgba(245,166,35,0.2);
}
.g-btn:hover {
  box-shadow: 0 0 20px var(--theme-glow, rgba(245,166,35,0.5));
  transform: translateY(-1px);
}
.g-btn:active {
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media(max-width:860px){
  .logo-words { display: none; }
  .nav-links { gap: 5px; }
  .nav-link { font-size: 11px; padding: 6px 10px; }
  .packages{padding:0 20px 40px; margin-top: 60px;} /* Extra margin so first head doesn't hit title */
  .arrow-btn { display: none; }
  .cards-row{
    flex-direction: column;
    align-items: stretch;
    gap: 55px; /* Extra gap for heads popping out */
    overflow-x: visible;
  }
  .card{
    width: 100%; max-width: 100%; min-width: 100%;
    height: auto !important; min-height: auto;
    padding: 15px; padding-top: 15px;
    background: transparent; /* Let the frame handle background! */
    border: none;
    display: flex !important; flex-direction: column !important;
    align-items: center; position: relative;
  }
  
  /* Restore the beautiful desktop frame, glow and canvas background! */
  .card-frame { 
    display: block !important; 
    border-radius: 16px;
  }
  .card-frame-glow {
    clip-path: none !important; /* Remove chamfered cut so badge doesn't float */
    border-radius: 16px;
  }
  .card-frame-inner {
    clip-path: none !important;
    border-radius: 15px; /* 1px smaller for the glowing border */
    background: rgba(10,10,14,0.95); /* Slightly darker to make text pop */
  }

  .card-spacer { display: none; }
  .crest-wrap { display: none; }
  
  /* Pop-out character layout - CENTERED */
  .card-char-wrap {
    display: block !important;
    position: absolute;
    top: -55px; /* Head pops out */
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: 150px; /* Big enough for the fade */
    height: 160px;
    border-radius: 0; overflow: visible;
    background: transparent; z-index: 10;
    border: none;
    box-shadow: none;
  }
  
  /* Remove borders */
  .card-alpha .card-char-wrap { border: none; box-shadow: none; }
  .card-omega .card-char-wrap { border: none; box-shadow: none; }
  .card-apex .card-char-wrap { border: none; box-shadow: none; }

  .char-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top; 
    mix-blend-mode: screen;
    transform: scale(1.1) !important;
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 45%, transparent 68%) !important;
    mask-image: radial-gradient(ellipse at 50% 50%, black 45%, transparent 68%) !important;
    animation: breathe 6s ease-in-out infinite !important;
  }

  .card-body {
    padding-left: 0; 
    padding-top: 75px; /* Space for the centered character */
    min-height: auto;
    width: 100%;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
  }
  
  .card-name {
    margin: 0; font-size: 24px; text-align: center; line-height: 1;
  }
  .card-pkg-label { display: none; } /* Hide PAKET word */
  
  /* Remove CSS hacks for Oyun Hakkı since JS handles it now */
  .card-alpha .card-name::after { display: none; }
  .card-omega .card-name::after { display: none; }
  .card-apex .card-name::after { display: none; }

  .mobile-header-row {
    width: 100%;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    gap: 10px;
  }
  
  .mobile-info-left {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
  }
  .mobile-rights {
    font-size: 13px; color: rgba(255,255,255,0.6); font-family: var(--font-ui); text-align: center;
  }
  
  .mobile-info-right {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
  }
  .mobile-price-row {
    display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 8px;
    margin-top: 5px;
  }
  .m-old-price {
    font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: line-through; font-family: var(--font-ui);
  }
  .m-new-price {
    font-size: 22px; font-weight: 700; font-family: var(--font-hud); letter-spacing: 0.5px;
  }
  
  /* Diagonal Badge on Top Right */
  .mobile-discount-badge {
    position: absolute;
    top: -5px; right: -5px;
    transform: rotate(15deg);
    font-size: 11px; font-weight: 800; font-family: var(--font-ui);
    padding: 5px 12px; border-radius: 6px; letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    z-index: 20;
  }

  .mobile-toggle-btn {
    margin-top: 20px;
    margin-left: 0; 
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff; border-radius: 8px; padding: 10px;
    font-family: var(--font-ui); font-size: 13px; font-weight: 600;
    cursor: pointer;
  }
  .mobile-details-wrap {
    margin-left: 0; width: 100% !important;
  }

  .feat { padding: 6px 10px; }
  .feat-ico { width: 24px; height: 24px; padding: 4px; }
  .feat b { font-size: 11.5px; }
  .feat em { font-size: 9px; }
  .bb-inner{flex-direction:column;gap:12px;}
  .bb-sep{display:none;}
  .footer-inner{grid-template-columns: 1fr;}
  .footer-bottom{flex-direction:column; text-align:center;}
  .footer-payments{justify-content:center;}
}

/* ===================== LOGIN MODAL ===================== */
.modal-overlay{
  position:fixed;inset:0;background:rgba(0,0,0,0.8);
  backdrop-filter:blur(10px);z-index:999;
  display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;transition:opacity .3s ease;
}
.modal-overlay.active{opacity:1;pointer-events:all;}
.modal-content{
  background:var(--card-bg);
  border:1px solid rgba(245,166,35,.2);
  border-radius:12px;padding:35px 30px;width:100%;max-width:380px;
  position:relative;transform:translateY(20px);transition:transform .3s ease;
  box-shadow:0 0 40px rgba(0,0,0,.8), 0 0 20px rgba(245,166,35,.1);
}
.modal-overlay.active .modal-content{transform:translateY(0);}
.modal-close{
  position:absolute;top:15px;right:18px;background:none;border:none;
  color:rgba(255,255,255,.5);font-size:24px;cursor:pointer;transition:color .2s;
}
.modal-close:hover{color:#f5a623;}
.modal-header{display:flex;flex-direction:column;align-items:center;margin-bottom:25px;gap:12px;}
.modal-header h2{font-family:var(--font-hud);font-size:22px;letter-spacing:2px;color:#fff;}
.login-form{display:flex;flex-direction:column;gap:15px;}
.input-group{display:flex;flex-direction:column;gap:5px;}
.input-group label{font-family:var(--font-ui);font-size:11px;color:rgba(255,255,255,.6);letter-spacing:1px;font-weight:500;}
.input-group input{
  background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.1);
  padding:12px 14px;border-radius:6px;color:#fff;font-family:var(--font-ui);
  transition:border-color .2s,background .2s;
}
.input-group input:focus{outline:none;border-color:#f5a623;background:rgba(245,166,35,.05);}
.form-options{display:flex;justify-content:space-between;align-items:center;margin-top:2px;}
.remember-me{display:flex;align-items:center;gap:6px;font-family:var(--font-ui);font-size:11px;color:rgba(255,255,255,.6);cursor:pointer;}
.forgot-pw{font-family:var(--font-ui);font-size:11px;color:#f5a623;text-decoration:none;transition:opacity .2s;}
.forgot-pw:hover{opacity:.8;}
.login-submit-btn{
  position:relative;overflow:hidden;
  background:linear-gradient(135deg,rgba(80,30,0,.75),rgba(160,70,15,.4));
  border:1.5px solid rgba(245,166,35,.8);color:#f5a623;
  padding:14px;border-radius:6px;font-family:var(--font-hud);font-size:14px;
  letter-spacing:1.5px;cursor:pointer;margin-top:10px;
  box-shadow:0 0 15px rgba(245,166,35,.2);transition:all .3s;
}
.login-submit-btn:hover{box-shadow:0 0 30px rgba(245,166,35,.5);color:#fff;}
.login-submit-btn.do-shine .shine{animation:shinePass .55s ease forwards;}
.modal-footer{margin-top:20px;text-align:center;font-family:var(--font-ui);font-size:12px;color:rgba(255,255,255,.5);}
.modal-footer a{color:#f5a623;text-decoration:none;font-weight:600;}

.modal-view {
  display: none;
  animation: viewFade .4s cubic-bezier(.22,1,.36,1) forwards;
}
.modal-view.active {
  display: block;
}
@keyframes viewFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===================== ACCOUNT PAGE ===================== */
.account-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.acc-card { background: rgba(20,20,25,0.8); border: 1px solid rgba(245,166,35,0.1); border-radius: 12px; padding: 20px; }
.acc-card h3 { font-family: var(--font-hud); font-size: 16px; color: #f5a623; margin-bottom: 15px; text-shadow: 0 0 10px rgba(245,166,35,0.3); }
.acc-row { display: flex; justify-content: flex-start; align-items: center; margin-bottom: 10px; }
.acc-row span { font-family: var(--font-ui); font-size: 14px; color: rgba(255,255,255,0.6); width: 200px; }
.acc-row strong { font-family: var(--font-ui); font-size: 14px; color: #fff; }
.acc-row-forms { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media(max-width: 768px) { .acc-row-forms { grid-template-columns: 1fr; } .acc-row span { width: 140px; } }

.badge { padding: 4px 8px; border-radius: 4px; font-size: 10px; font-family: var(--font-ui); font-weight: bold; text-transform: uppercase; }
.badge-red { background: rgba(255,77,77,0.1); color: #ff4d4d; border: 1px solid rgba(255,77,77,0.3); }
.badge-green { background: rgba(74,222,128,0.1); color: #4ade80; border: 1px solid rgba(74,222,128,0.3); }

/* Toggle Switch */
.switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(255,255,255,0.1); transition: .4s; border-radius: 24px; border: 1px solid rgba(255,255,255,0.2); }
.slider:before { position: absolute; content: ""; height: 16px; width: 16px; left: 3px; bottom: 3px; background-color: #fff; transition: .4s; border-radius: 50%; }
input:checked + .slider { background-color: #f5a623; border-color: #f5a623; box-shadow: 0 0 10px rgba(245,166,35,0.5); }
input:checked + .slider:before { transform: translateX(20px); }

