/* Princess Casino IT — Main Stylesheet */
:root {
  --bg-deep: #07000f;
  --bg-dark: #0e0020;
  --bg-card: rgba(138, 0, 255, 0.07);
  --bg-card-hover: rgba(138, 0, 255, 0.14);
  --purple-primary: #8b00ff;
  --purple-light: #a855f7;
  --gold: #f0c040;
  --gold-light: #ffd700;
  --white: #f5f0ff;
  --gray: #b0a8c0;
  --gray-dark: #6b6478;
  --border: rgba(138, 0, 255, 0.25);
  --border-gold: rgba(240, 192, 64, 0.35);
  --shadow: 0 4px 32px rgba(138, 0, 255, 0.18);
  --shadow-gold: 0 4px 32px rgba(240, 192, 64, 0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--white);
  line-height: 1.7;
  min-height: 100vh;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { line-height: 1.3; font-weight: 700; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--gold-light); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--gold); margin: 2.5rem 0 1rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--purple-light); margin: 1.5rem 0 0.6rem; }
h4 { font-size: 1.05rem; color: var(--white); margin: 1rem 0 0.4rem; }
p { margin-bottom: 1rem; color: var(--white); }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }
ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; }
strong { color: var(--gold-light); }

/* === LAYOUT === */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.2rem; }
.section { padding: 3rem 0; }
.section--alt { background: rgba(138, 0, 255, 0.04); }

/* === HEADER === */
.header {
  background: rgba(14, 0, 32, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  padding: 0.9rem 0;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { display: flex; align-items: center; gap: 0.6rem; font-size: 1.3rem; font-weight: 800; color: var(--gold-light); letter-spacing: -0.5px; }
.logo__icon { font-size: 1.6rem; }
.logo__sub { font-size: 0.7rem; color: var(--gray); font-weight: 400; letter-spacing: 2px; text-transform: uppercase; display: block; }
.nav { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; }
.nav a { color: var(--white); font-size: 0.9rem; font-weight: 500; opacity: .85; transition: opacity .2s, color .2s; }
.nav a:hover, .nav a.active { opacity: 1; color: var(--gold); }
.header__cta { background: linear-gradient(135deg, #8b00ff, #c040ff); color: #fff !important; padding: 0.5rem 1.2rem; border-radius: 30px; font-weight: 700; font-size: 0.85rem; white-space: nowrap; box-shadow: 0 2px 16px rgba(138,0,255,0.4); }
.header__cta:hover { background: linear-gradient(135deg, #a020ff, #d060ff); opacity: 1 !important; }
.burger { display: none; background: none; border: none; cursor: pointer; padding: 0.3rem; flex-direction: column; gap: 5px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }

/* === HERO === */
.hero {
  background: radial-gradient(ellipse at 60% 0%, rgba(138,0,255,0.22) 0%, transparent 65%),
              radial-gradient(ellipse at 10% 80%, rgba(240,192,64,0.08) 0%, transparent 60%),
              var(--bg-deep);
  padding: 4rem 0 3rem;
  text-align: center;
}
.hero__badge { display: inline-block; background: rgba(240,192,64,0.12); border: 1px solid var(--border-gold); color: var(--gold); font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 30px; margin-bottom: 1.2rem; }
.hero h1 { max-width: 750px; margin: 0 auto 1rem; }
.hero__sub { color: var(--gray); font-size: 1.05rem; max-width: 600px; margin: 0 auto 2rem; }
.hero__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2rem; border-radius: 30px; font-weight: 700; font-size: 1rem; cursor: pointer; border: none; transition: transform .15s, box-shadow .15s; text-decoration: none; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: linear-gradient(135deg, #8b00ff, #c040ff); color: #fff; box-shadow: 0 4px 24px rgba(138,0,255,0.45); }
.btn--primary:hover { box-shadow: 0 6px 32px rgba(138,0,255,0.6); color: #fff; }
.btn--gold { background: linear-gradient(135deg, #c9a227, #ffd700); color: #0a0014; box-shadow: 0 4px 24px rgba(240,192,64,0.35); }
.btn--gold:hover { box-shadow: 0 6px 32px rgba(240,192,64,0.5); color: #0a0014; }
.btn--outline { border: 2px solid var(--purple-primary); color: var(--purple-light); background: transparent; }
.btn--outline:hover { background: rgba(138,0,255,0.1); color: var(--purple-light); }
.btn--sm { padding: 0.55rem 1.3rem; font-size: 0.9rem; }
.btn--lg { padding: 1rem 2.4rem; font-size: 1.1rem; }

/* === BONUS BOX === */
.bonus-box {
  background: linear-gradient(135deg, rgba(138,0,255,0.15), rgba(240,192,64,0.08));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}
.bonus-box__amount { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; color: var(--gold-light); display: block; }
.bonus-box__label { color: var(--gray); font-size: 0.9rem; margin-top: 0.3rem; }
.bonus-row { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin: 1.5rem 0; }
.bonus-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.2rem 1.5rem; min-width: 160px; flex: 1; text-align: center; }
.bonus-item__num { font-size: 1.8rem; font-weight: 900; color: var(--purple-light); display: block; }
.bonus-item__txt { font-size: 0.82rem; color: var(--gray); margin-top: 0.25rem; }

/* === CARDS === */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; transition: background .2s, box-shadow .2s; }
.card:hover { background: var(--bg-card-hover); box-shadow: var(--shadow); }
.card__icon { font-size: 2rem; margin-bottom: 0.8rem; display: block; }
.card__title { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.card__text { font-size: 0.9rem; color: var(--gray); }
.grid { display: grid; gap: 1.2rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }

/* === TABLES === */
.table-wrap { overflow-x: auto; margin: 1.5rem 0; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
thead tr { background: rgba(138,0,255,0.18); }
th { padding: 0.85rem 1rem; text-align: left; color: var(--gold); font-weight: 700; white-space: nowrap; }
td { padding: 0.75rem 1rem; border-top: 1px solid var(--border); color: var(--white); vertical-align: top; }
tr:hover td { background: rgba(138,0,255,0.05); }
.badge { display: inline-block; padding: 0.2rem 0.7rem; border-radius: 20px; font-size: 0.78rem; font-weight: 700; }
.badge--green { background: rgba(0,200,100,0.15); color: #00c864; }
.badge--yellow { background: rgba(240,192,64,0.15); color: var(--gold); }
.badge--purple { background: rgba(138,0,255,0.2); color: var(--purple-light); }

/* === FAQ === */
.faq { margin: 2rem 0; }
.faq__item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 0.7rem; overflow: hidden; }
.faq__q { width: 100%; background: var(--bg-card); border: none; text-align: left; padding: 1rem 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: space-between; color: var(--white); font-size: 0.97rem; font-weight: 600; gap: 1rem; transition: background .2s; }
.faq__q:hover { background: var(--bg-card-hover); }
.faq__q svg { flex-shrink: 0; transition: transform .25s; color: var(--gold); }
.faq__item.open .faq__q svg { transform: rotate(180deg); }
.faq__a { display: none; padding: 1rem 1.2rem; background: rgba(14,0,32,0.5); color: var(--gray); font-size: 0.92rem; line-height: 1.7; }
.faq__item.open .faq__a { display: block; }

/* === STEPS / HOWTO === */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 1.5rem 0; }
.steps li { counter-increment: step; display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.2rem; }
.steps li::before { content: counter(step); display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #8b00ff, #c040ff); color: #fff; font-weight: 800; font-size: 0.9rem; flex-shrink: 0; margin-top: 0.1rem; }
.steps li .step-content strong { display: block; color: var(--white); font-size: 1rem; margin-bottom: 0.25rem; }
.steps li .step-content span { color: var(--gray); font-size: 0.9rem; }

/* === RATING === */
.rating-stars { display: inline-flex; gap: 3px; }
.rating-stars span { color: var(--gold); font-size: 1.1rem; }
.rating-box { display: flex; align-items: center; gap: 0.7rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0.9rem 1.2rem; margin: 1rem 0; }
.rating-num { font-size: 2rem; font-weight: 900; color: var(--gold-light); }

/* === AUTHOR BIO === */
.author-bio { display: flex; gap: 1.2rem; align-items: center; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; margin: 2rem 0; }
.author-bio__avatar { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, #8b00ff, #ffd700); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0; }
.author-bio__name { font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.author-bio__role { font-size: 0.82rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }
.author-bio__text { font-size: 0.88rem; color: var(--gray); margin-top: 0.4rem; }

/* === NOTICE === */
.notice { border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin: 1.2rem 0; font-size: 0.9rem; line-height: 1.6; }
.notice--info { background: rgba(138,0,255,0.1); border-left: 3px solid var(--purple-primary); color: var(--gray); }
.notice--warning { background: rgba(255,150,0,0.08); border-left: 3px solid #ff9600; color: #ffba60; }
.notice--age { background: rgba(200,0,0,0.08); border-left: 3px solid #cc0000; color: #ff8888; font-size: 0.85rem; }

/* === BREADCRUMBS === */
.breadcrumbs { display: flex; gap: 0.4rem; align-items: center; flex-wrap: wrap; font-size: 0.82rem; color: var(--gray-dark); padding: 0.8rem 0 0; }
.breadcrumbs a { color: var(--gray-dark); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs__sep { color: var(--gray-dark); }
.breadcrumbs__current { color: var(--gray); }

/* === INFO LIST === */
.info-list { list-style: none; padding: 0; }
.info-list li { display: flex; gap: 0.7rem; align-items: baseline; padding: 0.5rem 0; border-bottom: 1px solid rgba(138,0,255,0.1); font-size: 0.93rem; }
.info-list li:last-child { border-bottom: none; }
.info-list__label { color: var(--gray); min-width: 150px; font-size: 0.87rem; flex-shrink: 0; }
.info-list__value { color: var(--white); font-weight: 600; }

/* === HIGHLIGHT BOX === */
.highlight { background: linear-gradient(135deg, rgba(138,0,255,0.12), rgba(240,192,64,0.06)); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1.8rem; margin: 1.5rem 0; }
.highlight__title { font-weight: 700; color: var(--gold); margin-bottom: 0.5rem; }

/* === FOOTER === */
.footer { background: rgba(14,0,32,0.98); border-top: 1px solid var(--border); padding: 3rem 0 2rem; margin-top: 4rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer__logo { font-size: 1.2rem; font-weight: 800; color: var(--gold-light); margin-bottom: 0.6rem; }
.footer__tagline { font-size: 0.85rem; color: var(--gray-dark); }
.footer__title { font-size: 0.82rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.9rem; }
.footer__links { list-style: none; padding: 0; }
.footer__links li { margin-bottom: 0.4rem; }
.footer__links a { color: var(--gray-dark); font-size: 0.88rem; transition: color .2s; }
.footer__links a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(138,0,255,0.12); padding-top: 1.5rem; font-size: 0.82rem; color: var(--gray-dark); }
.footer__bottom a { color: var(--gray-dark); }
.footer__bottom a:hover { color: var(--gold); }
.footer__legal { margin-top: 0.8rem; line-height: 1.7; }
.footer__age { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; color: #ff6b6b; font-size: 0.9rem; }

/* === PAGE HEADER === */
.page-header { background: radial-gradient(ellipse at 70% 0%, rgba(138,0,255,0.2) 0%, transparent 60%), var(--bg-dark); padding: 3rem 0 2rem; border-bottom: 1px solid var(--border); }
.page-header h1 { margin-bottom: 0.5rem; }
.page-header__sub { color: var(--gray); font-size: 1rem; max-width: 620px; }

/* === MOBILE NAV === */
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .nav { display: none; flex-direction: column; gap: 0.6rem; background: rgba(14,0,32,0.98); position: fixed; top: 60px; left: 0; right: 0; padding: 1.2rem; border-bottom: 1px solid var(--border); z-index: 99; }
  .nav.open { display: flex; }
  .burger { display: flex; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero { padding: 2.5rem 0 2rem; }
  .bonus-row { flex-direction: column; }
  .author-bio { flex-direction: column; text-align: center; }
  .info-list__label { min-width: 110px; }
}
@media (max-width: 500px) {
  .btn--lg { padding: 0.85rem 1.5rem; font-size: 1rem; }
}
