*,*::before,*::after{box-sizing:border-box}
html,body{height:100%;margin:0}
body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}
body {
  font-family: "Inter","Segoe UI",Roboto,Arial,sans-serif;
  background: radial-gradient(ellipse at bottom, #0b0f18 0%, #05060a 100%);
  color: #ddd;
  margin: 0;
  padding: 24px;
  overflow-x: hidden;
  min-height: 100vh;
  /* ATENȚIE: NU mai punem justify-content:center */
}

h1{
  font-size:2.5rem;text-align:center;margin-bottom:8px;
  background:linear-gradient(90deg,#a200ff,#00e0ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  text-shadow:0 0 12px rgba(162,0,255,.6),0 0 18px rgba(0,224,255,.5)
}
h2{text-align:center;color:#ccc;font-weight:500;margin:0 0 20px}
p.slogan{text-align:center;font-size:1.1rem;color:#ccc;margin-bottom:30px}
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 20px;
}
/* === FOOTER === */
footer {
  width: 100%;
  text-align: center;
  padding: 20px 0;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #aaa;
}

footer a {
  color: #00bfff;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: #00e0ff;
  text-shadow: 0 0 8px rgba(0, 224, 255, 0.6);
  text-decoration: underline;
}

.lang-select{
  position:absolute;top:20px;right:20px;
  background:#111;border:1px solid #333;border-radius:8px;
  color:#fff;padding:6px 10px;font-size:1rem;cursor:pointer;
  box-shadow:0 0 10px rgba(0,224,255,.2)
}

.share-buttons p {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.share-btn {
  display: inline-block;
  margin: 5px;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s;
}

.share-btn:hover {
  transform: scale(1.05);
}

.facebook {
  background-color: #1877f2;
}

.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
main .btn {
  display: block;
  margin: 0 auto;
}

/* === Winners Page Styling === */
.winners-page {
  background: rgba(20, 20, 35, 0.7);
  border: 1px solid rgba(162, 0, 255, 0.3);
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(162, 0, 255, 0.2);
  padding: 25px 30px;
  max-width: 700px;
  width: 90%;
  text-align: center;
  margin: 40px auto;
  color: #fff;
}

.winners-page .intro {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.winners-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.winners-list li {
  margin: 10px 0;
  font-size: 1.05rem;
  color: #ddd;
  background: rgba(10, 10, 25, 0.5);
  border-radius: 8px;
  padding: 10px;
  transition: background 0.2s;
}

.winners-list li:hover {
  background: rgba(30, 30, 60, 0.8);
}

.winner-name {
  font-weight: 700;
  color: #00e0ff;
}

@media (max-width: 600px) {
  .winners-page {
    padding: 20px;
    margin: 20px auto;
  }
  .winners-page .intro {
    font-size: 1rem;
  }
  .winners-list li {
    font-size: 0.95rem;
  }
}
/* === Winners Animation Effects === */
@keyframes fadeGlow {
  0% {
    opacity: 0;
    transform: translateY(20px);
    text-shadow: none;
  }
  60% {
    opacity: 1;
    transform: translateY(0);
    text-shadow: 0 0 10px rgba(0, 224, 255, 0.4);
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 6px rgba(162, 0, 255, 0.6), 0 0 12px rgba(0, 224, 255, 0.4);
  }
}

.winners-list li {
  margin: 10px 0;
  font-size: 1.05rem;
  color: #ddd;
  background: rgba(10, 10, 25, 0.5);
  border-radius: 8px;
  padding: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeGlow 0.8s ease forwards;
}

.winners-list li:nth-child(1) { animation-delay: 0.2s; }
.winners-list li:nth-child(2) { animation-delay: 0.4s; }
.winners-list li:nth-child(3) { animation-delay: 0.6s; }
.winners-list li:nth-child(4) { animation-delay: 0.8s; }
/* === Butoane verzi (stil gaming neon) === */
.btn {
  background: linear-gradient(180deg, #00cc66 0%, #00b359 100%);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(0, 255, 100, 0.4);
}

.btn:hover {
  background: linear-gradient(180deg, #00e673 0%, #00cc66 100%);
  box-shadow: 0 0 22px rgba(0, 255, 150, 0.7);
  transform: translateY(-1px);
}
/* Smooth page transition */
body.fade-out {
  opacity: 0;
  transition: opacity 0.4s ease;
}
/* About Section - spacing */
.about-section {
  max-width: 900px;
  margin: 200px auto 60px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Steam-style cards */
.about-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: 28px 30px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.45);
  transition: 0.25s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.60);
}

.about-card h3 {
  color: #00b5f7;
  font-size: 1.45rem;
  margin-bottom: 10px;
  text-shadow: 0 0 12px rgba(0, 224, 255, .5);
}

.about-card p {
  color: #d4d4d4;
  font-size: 1rem;
  line-height: 1.65;
}

/* Mobile */
@media (max-width: 600px) {
  .about-card {
    padding: 22px 20px;
  }

  .about-card h3 {
    font-size: 1.25rem;
  }
}
@media (max-width: 600px) {
  .about-section {
    margin-top: 160px;
  }
}
header {
  margin-top: 100px;
}
.about-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin: 4rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.about-card {
  position: relative;
  background: rgba(20, 20, 30, 0.8);
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 3rem 2rem 2rem;
  margin-top: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  background-image: linear-gradient(rgba(20, 20, 30, 0.8), rgba(20, 20, 30, 0.8)),
                    linear-gradient(135deg, #00d4ff, #7a00ff);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
}

.about-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.card-badge {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  background: rgba(20, 20, 30, 0.95);
  border: 2px solid transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
  transition: all 0.3s ease;
  background-image: linear-gradient(rgba(20, 20, 30, 0.95), rgba(20, 20, 30, 0.95)),
                    linear-gradient(135deg, #00d4ff, #7a00ff);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  animation: float 3s ease-in-out infinite;
}

.about-card:hover .card-badge {
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.6);
  transform: translateX(-50%) scale(1.1);
}

.card-badge svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

@keyframes float {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.about-card h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(135deg, #00d4ff, #7a00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.about-card p {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;   /* pe verticală */
    align-items: center;
  }

  .about-card {
    width: 100%;
    max-width: 100%;
  }
}
body {
  position: relative;
  z-index: 1;
}

canvas {
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 0;
}
header, main, footer {
  position: relative;
  z-index: 2;
}
body.inner-page .stars {
  opacity: 0.25;
  animation: none;
}
/* === HERO STYLE ca în imagine === */
.hero-header {
  text-align: center;
  margin-top: 60px;
}

.logo-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.site-logo {
  height: 55px;
  filter: drop-shadow(0 0 12px rgba(0, 200, 255, 0.5));
}

.site-name {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #00ccff, #7a00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title {
  font-size: 2.7rem;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 180, 255, 0.5);
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #d0d0d0;
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

/* Zona CTA + Share */
.cta-zone {
  text-align: center;
  margin-top: 10px;
}

.trust-text {
  margin-top: 12px;
  color: #aef;
  font-size: 0.95rem;
}

/* Butoane share ca în imagine */
.share-buttons {
  text-align: center;
  margin-top: 25px;
}

.share-btn {
  padding: 12px 22px;
  font-size: 1rem;
  border-radius: 10px;
}

.facebook {
  background: #1877f2;
  box-shadow: 0 0 15px rgba(24,119,242,0.6);
}

.instagram {
  background: linear-gradient(135deg,#f9ce34,#ee2a7b,#6228d7);
  box-shadow: 0 0 15px rgba(214,36,159,0.7);
}
/* ============================= */
/* 📱 MOBILE RESPONSIVE UPGRADE */
/* ============================= */

@media (max-width: 768px) {

  body {
    padding: 12px;
  }

  .logo-bar {
    flex-direction: column;
    gap: 10px;
  }

  .site-logo {
    height: 45px;
  }

  .site-name {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
    padding: 0 10px;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    font-size: 1.1rem;
    padding: 14px;
  }

  .trust-text {
    font-size: 0.9rem;
  }

  .share-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .share-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    font-size: 1rem;
  }

  .about-section {
    margin-top: 100px;
  }

  .about-card {
    width: 100%;
    padding: 22px 18px;
  }

  footer {
    font-size: 0.9rem;
  }
}