:root{
  /* Logo-inspired palette */
  --bg: #070b14;            /* very deep navy */
  --panel: #0e1626;         /* sidebar/panels */
  --card: #101c33;          /* cards */
  --stroke: #1a2a45;        /* borders */

  --blue: #1aa6ff;          /* electric blue */
  --blue2:#0b66ff;          /* deep blue */
  --gold: #ff2a2a;          /* warm gold */
  --gold2:#b80000;          /* orange-gold */

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

  --glowBlue: rgba(26,166,255,.35);
  --glowGold: rgba(255,42,42,.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,42,42,.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(26,166,255,.18);
}

/* 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,42,42,.20);
}

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

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

.stats div {
  text-align: center;
}

.stats strong {
  color: #cfefff;
  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: #ff2a2a;
  --gold2:#b80000;
}
.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,42,42,.30);
  box-shadow: 0 18px 55px rgba(0,0,0,.45), 0 0 22px rgba(255,42,42,.12);
}
.avatar{
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,42,42,.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,42,42,.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,42,42,.16);
  border: 1px solid rgba(255,42,42,.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,42,42,.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,42,42,.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: #cfefff;
  text-shadow: 0 0 18px rgba(26,166,255,.25);
}

/* (προαιρετικό) Αν θες και το περίγραμμα του avatar να γίνει μπλε */
.section-title.blue ~ .streamers-grid .avatar{
  border-color: rgba(26,166,255,.60);
}
.giveaway-hero{
  background: linear-gradient(90deg,#020b18,#031120,#020816);
  padding:40px 30px;
  border-radius:18px;

  width:100%;
  max-width:1100px;

  margin-left:auto;
  margin-right:auto;
  margin-top:40px;
  margin-bottom:40px;
}

.giveaway-hero-inner{
  text-align:center;
}

.giveaway-hero h1{
  font-size:42px;
  margin-bottom:16px;
}

.giveaway-hero p{
  max-width:750px;
  margin:0 auto 25px auto;
  line-height:1.6;
}

.giveaway-hero-btn{
  display:inline-block;
  padding:14px 26px;
  border-radius:40px;
  background:linear-gradient(180deg,#3ea2ff,#1877f2);
  color:white;
  text-decoration:none;
  font-weight:700;
}
/* ========================= */
/* GIVEAWAY SECTIONS */
/* ========================= */

.giveaway-prizes {
  margin-top:60px;
}

.prize-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  margin-top:30px;
}

.prize-card{
  background:#07182c;
  border-radius:14px;
  padding:35px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

.prize-card h3{
  font-size:22px;
  margin-bottom:10px;
}

.prize-card h2{
  font-size:28px;
  margin-bottom:20px;
}

.prize-card img{
  width:120px;
  margin-top:10px;
}

/* ========================= */
/* PARTICIPATION TABLE */
/* ========================= */

.giveaway-table{
  margin-top:70px;
}

.table-box{
  background:#07182c;
  padding:30px;
  border-radius:14px;
  margin-top:25px;
}

.table-box table{
  width:100%;
  border-collapse:collapse;
}

.table-box th{
  background:#b80000;
  padding:12px;
  text-align:left;
}

.table-box td{
  padding:12px;
  border-bottom:1px solid rgba(255,255,255,0.05);
}

/* ========================= */
/* HOW TO */
/* ========================= */

.how-to{
  margin-top:70px;
}

.how-to ol{
  margin-top:20px;
  line-height:1.8;
}

/* ========================= */
/* SEND SCREENSHOT */
/* ========================= */

.send-screenshot{
  text-align:center;
}

.send-screenshot .social-links{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-top:20px;
}

.send-screenshot .social-links a{
  padding:12px 22px;
  background:#b80000;
  border-radius:8px;
  text-decoration:none;
  color:white;
  font-weight:600;
}
/* ========================= */
/* TERMS */
/* ========================= */

.terms{
  margin-top:70px;
  line-height:1.7;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width:900px){

.prize-grid{
  grid-template-columns:1fr;
}

}
.giveaway-hero{
  background: linear-gradient(90deg, #020b18 0%, #031120 45%, #020816 100%);
  padding: 28px 32px;
  border-radius: 18px;

  max-width:1100px;
  width:100%;

  margin:40px auto;   /* αυτό το κεντράρει */

  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.giveaway-hero-inner{
  max-width: 1100px;
}

.giveaway-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.4px;
  margin-bottom: 12px;
}

.giveaway-hero h1{
  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 14px;
}

.giveaway-hero p{
  max-width: 1100px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin: 0 0 24px;
}

.giveaway-hero-btn{
  display: inline-block;
  padding: 14px 24px;
  background: linear-gradient(180deg, #3ea2ff 0%, #1877f2 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(24,119,242,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.giveaway-hero-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(24,119,242,0.42);
}

@media (max-width: 768px){
  .giveaway-hero{
    padding: 22px 18px;
    border-radius: 14px;
  }

  .giveaway-hero h1{
    font-size: 30px;
  }

  .giveaway-hero p{
    font-size: 16px;
  }

  .giveaway-hero-btn{
    width: 100%;
    text-align: center;
    font-size: 17px;
    padding: 14px 18px;
  }
}
