:root{
  /* Base */
  --bg: #070b14;
  --panel: #0e1626;
  --card: #101c33;
  --stroke: #1a2a45;

  /* RED + GOLD THEME */
  --blue: #ff2b2b;
  --blue2:#b30000;

  --gold: #ffd700;
  --gold2:#ffb300;

  --text: #ffffff;
  --muted: rgba(255,255,255,.72);

  --glowBlue: rgba(255,0,0,.35);
  --glowGold: rgba(255,215,0,.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: radial-gradient(1200px 600px at 30% 10%, rgba(26,166,255,.15), transparent 55%),
              radial-gradient(900px 500px at 75% 20%, rgba(255,204,51,.12), transparent 60%),
              var(--bg);
  color: var(--text);
}

.layout {
  display: flex;
}

/* SIDEBAR */
.sidebar {
  width: 220px;
  background: linear-gradient(180deg, rgba(14,22,38,.98), rgba(7,11,20,.98));
  min-height: 100vh;
  padding: 20px;
  border-right: 1px solid var(--stroke);
  box-shadow: 0 0 30px rgba(0,0,0,.35);
}

.sidebar ul {
  list-style: none;
}

.sidebar li {
  padding: 12px;
  cursor: pointer;
  opacity: 0.92;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all .18s ease;
}

/* Active / Hover = logo gold highlight */
.sidebar li.active,
.sidebar li:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #08101e;
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 10px 24px var(--glowGold);
}

.sidebar li.active a { color: #08101e; }

/* SIDEBAR LINKS FIX */
.sidebar a {
  color: inherit;
  text-decoration: none;
  display: block;
}

/* LOGO */
.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.logo-area img {
  width: 70px;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.45));
}

.logo-area span {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: .5px;
  background: linear-gradient(180deg, #ffffff, rgba(255,255,255,.75));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(255,215,0,.25);
}

/* CONTENT */
.content {
  flex: 1;
  padding: 30px;
}

.content h1 {
  margin-bottom: 25px;
  background: linear-gradient(90deg, #ffffff, rgba(255,255,255,.85));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* CASINO CARD */
.casino-card {
  background: linear-gradient(180deg, rgba(16,28,51,.92), rgba(10,16,32,.92));
  border-radius: 16px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--stroke);
  min-height: 120px;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}

/* HIGHLIGHT CARD = blue glow like logo */
.casino-card.highlight {
  border: 1px solid rgba(26,166,255,.55);
  box-shadow:
    0 0 0 1px rgba(26,166,255,.12),
    0 0 22px rgba(26,166,255,.18),
    0 18px 55px rgba(0,0,0,.45);
}

/* LOGO */
.casino-logo {
  width: 70px;
  height: 70px;
  background: linear-gradient(180deg, rgba(7,11,20,.9), rgba(14,22,38,.9));
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}

.casino-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* RANK = gold like the "777" frame */
.rank {
  font-size: 28px;
  color: var(--gold);
  width: 40px;
  text-shadow: 0 0 14px rgba(255,204,51,.20);
}

/* INFO */
.info h3 {
  margin-bottom: 5px;
}

/* STATS */
.stats {
  display: flex;
  gap: 25px;
  flex: 1;
}

.stats div {
  text-align: center;
}

.stats strong {
color: var(--gold);
  font-size: 18px;
  text-shadow: 0 0 18px rgba(26,166,255,.18);
}

.stats span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

/* BUTTON = blue -> gold like logo lighting */
.btn {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #08101e;
  padding: 14px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 28px var(--glowBlue);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.btn:hover {
  transform: scale(1.03);
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  box-shadow: 0 10px 28px var(--glowGold);
  filter: brightness(1.02);
}

/* MOBILE */
@media (max-width: 900px) {
  .sidebar {
    display: none;
  }

  .casino-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
  }

  .casino-logo {
    width: 80px;
    height: 80px;
  }

  .stats {
    width: 100%;
    justify-content: space-between;
  }

  .btn {
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
}
/* HOME HERO */
.home-hero{
  display:flex;
  align-items:center;
  gap:24px;
  padding:24px;
  border-radius:16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.home-logo{
  width:140px;
  height:140px;
  border-radius:18px;
  object-fit:cover;
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.10);
}

.home-title{
  margin-bottom:10px;
}

.home-desc{
  opacity: 0.9;
  line-height: 1.55;
  max-width: 820px;
}

/* SOCIAL LINKS */
.social-links{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.social-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 16px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;

  /* fallback που δουλεύει και με το παλιό css */
  background: rgba(57,211,83,0.95);
  color:#000;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  transition: transform .18s ease, filter .18s ease;
}

.social-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* Αν έχεις βάλει την καινούργια παλέτα (blue/gold), θα “κουμπώσει” αυτόματα */
:root{
  --blue: #1aa6ff;
  --blue2:#0b66ff;
  --gold: #ffcc33;
  --gold2:#ff9f1a;
}
.social-btn{
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #08101e;
  border: 1px solid rgba(255,255,255,0.14);
}
.social-btn:hover{
  background: linear-gradient(135deg, var(--gold), var(--gold2));
}

/* MOBILE */
@media (max-width: 900px){
  .home-hero{
    flex-direction: column;
    align-items:flex-start;
  }
  .home-logo{
    width:110px;
    height:110px;
  }
  .social-btn{
    width:100%;
    justify-content:center;
  }
}
/* --- SECTIONS --- */
.section{
  margin-top: 26px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

.section-title{
  display:flex;
  justify-content:center;
  margin: 4px 0 16px;
}
.section-title span{
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .6px;
  color:#08101e;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  box-shadow: 0 12px 26px var(--glowGold);
}

/* --- STREAMERS GRID --- */
.streamers-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.streamer-card{
  text-decoration:none;
  color: var(--text);
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(16,28,51,.78), rgba(7,11,20,.72));
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  text-align:center;
}
.streamer-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,204,51,.30);
  box-shadow: 0 18px 55px rgba(0,0,0,.45), 0 0 22px rgba(255,204,51,.12);
}
.avatar{
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,204,51,.55);
  box-shadow: 0 14px 35px rgba(0,0,0,.45);
  margin: 4px auto 12px;
  display:block;
}
.name{
  font-weight: 900;
  color: var(--gold);
  font-size: 18px;
}
.meta{
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

/* --- TOP CASINOS ROWS --- */
.casino-rows{ display:flex; flex-direction:column; gap: 12px; }
.casino-row{
  display:flex;
  align-items:center;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,204,51,.16);
  background: linear-gradient(180deg, rgba(16,28,51,.80), rgba(7,11,20,.78));
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
}
.row-rank{
  width: 36px;
  height: 36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 10px;
  font-weight: 900;
  color:#08101e;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
}
.row-brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 260px;
}
.row-logo{
  width: 58px; height: 58px;
  border-radius: 14px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
}
.row-logo img{ max-width:100%; max-height:100%; object-fit:contain; }
.row-name{ font-weight: 900; }
.tag{
  margin-left: 8px;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,204,51,.16);
  border: 1px solid rgba(255,204,51,.22);
  color: var(--gold);
}
.row-sub{ margin-top: 4px; font-size: 12px; color: var(--muted); }

.row-stats{
  display:flex;
  gap: 18px;
  flex: 1;
  justify-content: center;
}
.row-stats div{ text-align:center; min-width: 86px; }
.row-stats strong{ color: var(--gold); font-size: 20px; }
.row-stats span{ display:block; font-size: 12px; color: var(--muted); }

.row-btn{ padding: 12px 18px; border-radius: 999px; }

/* --- WEEK BAR + SCHEDULE --- */
.week-bar{
  display:flex;
  gap: 10px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.08);
  overflow:auto;
}
.day{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  cursor:pointer;
  font-weight: 800;
  white-space:nowrap;
}
.day.active{
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #08101e;
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 12px 24px var(--glowGold);
}

.schedule-grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.slot-card{
  border-radius: 16px;
  border: 1px solid rgba(255,204,51,.20);
  background: linear-gradient(180deg, rgba(16,28,51,.80), rgba(7,11,20,.78));
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
  padding: 14px;
  text-align:center;
  position:relative;
}
.slot-time{
  position:absolute;
  top: 10px; left: 10px; right: 10px;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 900;
  color:#08101e;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
}
.slot-avatar{
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,204,51,.55);
  margin: 58px auto 12px;
  display:block;
}
.slot-name{
  font-weight: 900;
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 1100px){
  .streamers-grid{ grid-template-columns: repeat(2, 1fr); }
  .schedule-grid{ grid-template-columns: repeat(2, 1fr); }
  .row-brand{ min-width: 200px; }
}
@media (max-width: 650px){
  .streamers-grid{ grid-template-columns: 1fr; }
  .schedule-grid{ grid-template-columns: 1fr; }
  .casino-row{ flex-direction: column; align-items: flex-start; }
  .row-stats{ justify-content: space-between; width:100%; }
  .row-btn{ width:100%; text-align:center; }
}
/* Our Streamers title -> BLUE (μόνο αυτό) */
.section-title.blue span{
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #08101e;
  box-shadow: 0 12px 26px var(--glowBlue);
}

/* (προαιρετικό) Αν θες και τα ονόματα των streamers να γίνουν μπλε αντί χρυσά */
.section-title.blue ~ .streamers-grid .name{
  color: var(--gold);
  text-shadow: 0 0 18px rgba(26,166,255,.25);
}

/* (προαιρετικό) Αν θες και το περίγραμμα του avatar να γίνει μπλε */
.section-title.blue ~ .streamers-grid .avatar{
  border-color: rgba(26,166,255,.60);
}

:root{
--bg: #070b14;
  --panel: #0e1626;
  --card: #101c33;
  --card-2: #0c1526;
  --stroke: #1a2a45;

  /* RED + GOLD */
  --blue: #ff2b2b;
  --blue2:#a00000;

  --gold: #ffd700;
  --gold2:#ffb300;

  --text: #ffffff;
  --muted: rgba(255,255,255,.76);

  --glowBlue: rgba(255,0,0,.35);
  --glowGold: rgba(255,215,0,.25);
  --success: #39d353;
  --danger: #ff6b6b;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family: Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1000px 500px at 15% 0%, rgba(26,166,255,.16), transparent 55%),
    radial-gradient(900px 480px at 90% 10%, rgba(255,204,51,.10), transparent 55%),
    linear-gradient(180deg, #050913 0%, #08101d 100%);
  min-height:100vh;
}

a{color:inherit}
img{max-width:100%;display:block}

.content{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
  padding:28px 0 48px;
}

/* HERO */
.giveaway-hero{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  background:
    linear-gradient(135deg, rgba(16,28,51,.96), rgba(8,13,24,.92)),
    linear-gradient(135deg, rgba(26,166,255,.08), rgba(255,204,51,.05));
  box-shadow: 0 28px 80px rgba(0,0,0,.42);
}
.giveaway-hero::before,
.giveaway-hero::after{
  content:"";
  position:absolute;
  border-radius:50%;
  filter:blur(8px);
}
.giveaway-hero::before{
  width:260px;height:260px;right:-80px;top:-80px;
  background:radial-gradient(circle, rgba(26,166,255,.22), transparent 70%);
}
.giveaway-hero::after{
  width:260px;height:260px;left:-80px;bottom:-80px;
  background:radial-gradient(circle, rgba(255,204,51,.18), transparent 70%);
}
.giveaway-hero-inner{
  position:relative;
  z-index:1;
  padding:48px;
}
.giveaway-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 16px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--gold), var(--gold2));
  color:#08101e;
  font-weight:900;
  letter-spacing:.5px;
  box-shadow:0 14px 28px var(--glowGold);
  margin-bottom:18px;
}
.giveaway-hero h1{
  font-size:clamp(32px, 6vw, 58px);
  line-height:1.04;
  max-width:760px;
  margin-bottom:16px;
}
.giveaway-hero p{
  max-width:760px;
  color:var(--muted);
  font-size:18px;
  line-height:1.65;
}
.giveaway-hero-btn,
.social-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:24px;
  min-height:52px;
  padding:14px 22px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  text-decoration:none;
  font-weight:900;
  color:#08101e;
  background:linear-gradient(135deg, var(--blue), var(--blue2));
  box-shadow:0 16px 30px var(--glowBlue);
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease;
}
.giveaway-hero-btn:hover,
.social-links a:hover{
  transform:translateY(-2px);
  filter:brightness(1.04);
  background:linear-gradient(135deg, var(--gold), var(--gold2));
  box-shadow:0 16px 30px var(--glowGold);
}

/* SECTION WRAPPER */
.giveaway-prizes,
.giveaway-table,
.how-to,
.send-screenshot,
.terms{
  margin-top:24px;
  padding:26px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(16,28,51,.84), rgba(7,11,20,.82));
  box-shadow:0 20px 55px rgba(0,0,0,.34);
}

.giveaway-prizes h2,
.giveaway-table h2,
.how-to h2,
.send-screenshot h2,
.terms h2{
  font-size:clamp(24px, 3vw, 34px);
  margin-bottom:18px;
}

/* PRIZES */
.prize-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}
.prize-card{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  padding:24px;
  min-height:210px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 18px 45px rgba(0,0,0,.35);
}
.prize-card::after{
  content:"";
  position:absolute;
  inset:auto -30px -30px auto;
  width:120px;height:120px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  filter:blur(2px);
}
.prize-card h3{font-size:22px;margin-bottom:8px}
.prize-card p{color:rgba(255,255,255,.82);font-weight:700}
.prize-card h2{font-size:46px;margin:0}
.prize-card.gold{
  background:linear-gradient(135deg, rgba(255,204,51,.22), rgba(255,159,26,.14), rgba(16,28,51,.92));
  border-color:rgba(255,204,51,.35);
}
.prize-card.silver{
  background:linear-gradient(135deg, rgba(203,213,225,.18), rgba(148,163,184,.10), rgba(16,28,51,.92));
  border-color:rgba(203,213,225,.28);
}
.prize-card.bronze{
  background:linear-gradient(135deg, rgba(205,127,50,.22), rgba(168,85,42,.12), rgba(16,28,51,.92));
  border-color:rgba(205,127,50,.32);
}

/* TABLES */
.giveaway-table{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}
.giveaway-table > h2{
  grid-column:1 / -1;
  margin-bottom:0;
}
.table-box{
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(8,13,24,.70), rgba(16,28,51,.66));
  padding:18px;
}
.table-box h3{
  margin-bottom:14px;
  color:var(--gold);
}
.table-box table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius:16px;
}
.table-box th,
.table-box td{
  padding:14px 16px;
  text-align:left;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.table-box th{
  background:rgba(255,255,255,.05);
  font-size:14px;
 color:var(--gold);
}
.table-box tr:last-child td{border-bottom:none}
.table-box td:last-child{
  font-weight:900;
  color:var(--gold);
}

/* HOW TO */
.how-to ol{
  padding-left:0;
  list-style:none;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}
.how-to li{
  position:relative;
  min-height:84px;
  padding:18px 18px 18px 72px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  line-height:1.5;
}
.how-to li::before{
  counter-increment:steps;
  content:counter(steps);
  position:absolute;
  left:18px;
  top:16px;
  width:38px;
  height:38px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color:#08101e;
  background:linear-gradient(135deg, var(--gold), var(--gold2));
}
.how-to ol{counter-reset:steps}

/* SEND */
.send-screenshot{
  text-align:center;
}
.send-screenshot h2{
  max-width:700px;
  margin:0 auto 10px;
}
.social-links{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

/* TERMS */
.terms p{
  color:var(--muted);
  line-height:1.7;
  margin-bottom:12px;
}
.terms p:last-child{margin-bottom:0}

/* SMALL ENHANCEMENTS */
.table-box tbody tr:hover,
.how-to li:hover,
.prize-card:hover{
  transform:translateY(-2px);
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.prize-card:hover,
.how-to li:hover{
  box-shadow:0 22px 55px rgba(0,0,0,.42);
}

/* RESPONSIVE */
@media (max-width: 920px){
  .giveaway-hero-inner{padding:34px 24px}
  .prize-grid,
  .giveaway-table,
  .how-to ol{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .content{width:min(100% - 20px, 100%);padding:16px 0 28px}
  .giveaway-prizes,
  .giveaway-table,
  .how-to,
  .send-screenshot,
  .terms{padding:18px}
  .giveaway-hero h1{font-size:34px}
  .giveaway-hero p{font-size:16px}
  .giveaway-hero-btn,
  .social-links a{width:100%}
  .table-box th,
  .table-box td{padding:12px 10px;font-size:14px}
  .prize-card h2{font-size:38px}
}
.giveaway-deadline {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(90deg, #ffcc00, #ffb300);
  color: #000;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 0 15px rgba(255, 200, 0, 0.4);
}
.giveaway-timeline {
  text-align: center;
  padding: 40px 20px;
}

.timeline-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.timeline-card {
  background: #111;
  border-radius: 12px;
  padding: 20px;
  min-width: 200px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.timeline-card h3 {
  margin-bottom: 10px;
}

.timeline-card p {
  font-size: 18px;
  font-weight: bold;
}
