/* ===============================
   WapplaAwards 2026 — FINAL CLEAN STYLE.CSS
   Vollständig neu sortiert & ohne Duplikate
================================*/

/* -------------------------
   Root Variables
------------------------- */
:root{
  --bg-900: #0b0710;
  --bg-800: #0f0b12;
  --card: rgba(255,255,255,0.03);
  --glass: rgba(255,255,255,0.04);
  --muted: #b5a9bd;
  --text: #efe7f4;
  --accent-purple: #9b59ff;
  --accent-purple-2: #7b3cff;
  --accent-gold: #ffd84d;
  --accent-pink: #ff57c7;
  --shadow-glow: rgba(155,89,255,0.12);
  --max-width: 1200px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --container-padding: 28px;
}

/* -------------------------
   Base Reset
------------------------- */
*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family:"Poppins","Inter",sans-serif;
  background:
    radial-gradient(800px 400px at 10% 10%, rgba(155,89,255,0.06), transparent 8%),
    radial-gradient(700px 350px at 90% 70%, rgba(255,215,0,0.02), transparent 8%),
    linear-gradient(180deg, var(--bg-900) 0%, var(--bg-800) 100%);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
}

/* -------------------------
   Container
------------------------- */
.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:36px var(--container-padding);
}

/* -------------------------
   Header
------------------------- */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(0,0,0,0.25);
  backdrop-filter:blur(6px);
  border-bottom:1px solid rgba(255,255,255,0.03);
}

.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px var(--container-padding);
}

.logo{
  color:var(--accent-purple);
  font-weight:800;
  text-decoration:none;
  display:flex;
  gap:10px;
  align-items:center;
}

.logo .brand-mark{
  width:28px;
  height:28px;
  border-radius:6px;
  background:linear-gradient(180deg, var(--accent-purple), var(--accent-purple-2));
}

.main-nav{
  display:flex;
  gap:18px;
  align-items:center;
}

.main-nav a{
  color:var(--muted);
  padding:8px 10px;
  border-radius:8px;
  text-decoration:none;
  font-size:14px;
}
.main-nav a:hover{
  color:var(--text);
  background:rgba(155,89,255,0.05);
}

.user-avatar{
  width:36px;height:36px;
  border-radius:50%;
  overflow:hidden;
  border:2px solid rgba(255,255,255,0.06);
}

/* -------------------------
   Hero
------------------------- */
.hero{
  padding:56px 0 40px;
  position:relative;
}

.hero .wave{
  position:absolute;
  left:-15%; right:-15%; top:8%;
  height:220px;
  background:linear-gradient(90deg,
     rgba(155,89,255,0.14),
     rgba(255,87,199,0.06),
     rgba(255,207,46,0.04)
  );
  filter:blur(26px);
  border-radius:50%;
  animation:floatWave 10s infinite ease-in-out;
  opacity:.7;
}

.hero-title{
  font-size:86px;
  color:var(--accent-gold);
  margin:40px 0 8px;
  font-weight:900;
  text-shadow:0 8px 18px rgba(0,0,0,0.6);
}
@media(max-width:900px){ .hero-title{ font-size:40px; text-align:center; } }

.phase-title{
  color:#d6c6df;
  font-size:20px;
  font-weight:600;
}

/* -------------------------
   Buttons
------------------------- */
.btn{
  display:inline-block;
  background:linear-gradient(180deg, var(--accent-purple), var(--accent-purple-2));
  padding:12px 20px;
  border-radius:12px;
  color:white;
  font-weight:700;
  text-decoration:none;
  cursor:pointer;
  transition:.2s;
}
.btn:hover{ transform:translateY(-3px); }
.btn.small{ padding:6px 10px; font-size:12px; border-radius:8px; }

/* -------------------------
   Timeline
------------------------- */
.timeline-wrapper{
  margin-top:42px;
  position:relative;
  padding-bottom:38px;
}

.timeline-line{
  position:absolute;
  top:26px; left:5%; right:5%;
  height:3px;
  background:rgba(255,255,255,0.035);
}

.timeline-steps{
  display:flex;
  justify-content:space-between;
  padding:0 3%;
}

.step{
  display:flex;
  flex-direction:column;
  align-items:center;
  min-width:80px;
}

.step-dot{
  width:22px; height:22px;
  border-radius:50%;
  border:2px solid rgba(155,89,255,0.35);
  background:rgba(255,255,255,0.02);
}

.step.active .step-dot{
  background:var(--accent-gold);
  border-color:#ffd700;
  transform:scale(1.1);
}

.step-label{
  margin-top:10px;
  font-size:13px;
  color:#d9c9e6;
}

/* -------------------------
   Category Cards
------------------------- */
.card{
  background:rgba(255,255,255,0.03);
  border-radius:12px;
  padding:20px;
  border:1px solid rgba(255,255,255,0.03);
  margin-bottom:18px;
}

/* -------------------------
   Custom Select (Twitch Search)
------------------------- */
.custom-select{
  position:relative;
  width:100%;
}

.select-input{
  width:100%;
  padding:12px;
  border-radius:10px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  color:white;
}

.select-dropdown{
  display:none;
  position:absolute;
  top:100%;
  width:100%;
  background:#1a1325;
  border:1px solid #442a66;
  border-radius:10px;
  margin-top:6px;
  z-index:20;
  max-height:260px;
  overflow-y:auto;
}

.select-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px;
  cursor:pointer;
}
.select-item:hover{ background:rgba(155,89,255,0.2); }

/* -------------------------
   CLIP GRID (5 Columns)
------------------------- */
.clip-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
  margin-top:18px;
}

@media(max-width:1400px){ .clip-grid{ grid-template-columns:repeat(4,1fr); } }
@media(max-width:1100px){ .clip-grid{ grid-template-columns:repeat(3,1fr); } }
@media(max-width:760px){ .clip-grid{ grid-template-columns:repeat(2,1fr); } }

.clip-card{
  background:rgba(255,255,255,0.04);
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.06);
  overflow:hidden;
  cursor:pointer;
  transition:.25s ease;
}
.clip-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(0,0,0,0.45);
}

.clip-thumb{
  width:100%; height:120px;
  object-fit:cover;
}

.clip-info{
  padding:10px 12px;
}

.clip-title{
  font-size:13px;
  font-weight:600;
  min-height:32px;
}

.voted-badge{
  font-size:12px;
  font-weight:700;
  color:#8fffab;
}

/* -------------------------
   MODAL
------------------------- */
#clipModal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.75);
  justify-content:center;
  align-items:center;
  z-index:99999;
}

.modal-box{
  background:#1b1524;
  padding:20px;
  border-radius:12px;
  width:90%;
  max-width:420px;
  text-align:center;
  border:1px solid rgba(255,255,255,0.05);
}

/* -------------------------
   Notify System
------------------------- */
#notifyBox{
  position:fixed;
  top:20px;
  right:-400px;
  padding:14px 22px;
  background:#34d173;
  border-radius:10px;
  font-weight:700;
  font-size:15px;
  color:#fff;
  z-index:999999;
  transition:.45s ease;
}
#notifyBox.error{ background:#ff4d4d; }
#notifyBox.show{ right:20px; }

/* ================================
   FORMULAR DESIGN – WapplaAwards
================================ */

.form-box {
    max-width: 600px;
    margin: 30px auto;
    padding: 30px 34px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}

.form-box h2 {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    margin-top: 14px;
    font-size: 15px;
    color: #d4c8e6;
}

/* INPUTS */
.form-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: .25s ease;
}

.form-input::placeholder {
    color: #bbb;
}

.form-input:focus {
    border-color: #9b59ff;
    box-shadow: 0 0 12px rgba(155,89,255,0.4);
}


/* SELECT */
.form-select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    font-size: 15px;
    outline: none;
}

.form-select:focus {
    border-color: #b044ff;
    box-shadow: 0 0 12px rgba(155,89,255,0.35);
}

.form-select option {
    background: #1a1124;
    color: #fff;
}


/* BUTTON */
.form-btn {
    margin-top: 22px;
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    background: linear-gradient(180deg, #9b59ff, #7b3cff);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    box-shadow: 0 10px 35px rgba(123,60,255,0.28);
    transition: .22s ease;
}

.form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(123,60,255,0.45);
}

.form-btn:active {
    transform: translateY(0px);
}
/* ===========================
   MODERN SELECT DROPDOWN
=========================== */
.select-box {
    width: 100%;
    position: relative;
    margin-bottom: 18px;
}

.select-box select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    appearance: none;
    outline: none;
    cursor: pointer;
    transition: 0.25s ease;
}

.select-box select:hover {
    border-color: #b044ff;
}

.select-box::after {
    content: "▼";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 12px;
    pointer-events: none;
}

/* ===========================
   MODERN URL INPUT
=========================== */
.clip-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    outline: none;
    margin-top: 10px;
    transition: 0.25s ease;
}

.clip-input::placeholder {
    color: #bbb;
}

.clip-input:focus {
    border-color: #b044ff;
    box-shadow: 0 0 12px #b044ff55;
    background: rgba(255,255,255,0.12);
}
/* ============================
   DARK MODE SELECT (Fix)
============================ */
.select-box {
    width: 100%;
    position: relative;
}

.select-box select {
    width: 100%;
    padding: 14px 16px;
    background: #140f1c;
    border: 1px solid #7435ff;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    appearance: none;
    outline: none;
    cursor: pointer;
    transition: 0.18s ease;
}

.select-box select:focus {
    border-color: #a86bff;
    box-shadow: 0 0 12px #692bff7a;
}

/* ▼ Arrow (Icon) */
.select-box::after {
    content: "▾";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #cdaaff;
    font-size: 18px;
    pointer-events: none;
}

/* Dropdown items */
.select-box select option {
    background: #120b18 !important;
    color: #fff !important;
    padding: 12px;
}
/* ============================================
   ADMIN UI – FORM STYLING
============================================ */

.card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(6px);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 18px;
}

.card img {
    border-radius: 8px;
}

label {
    font-size: 14px;
    opacity: .85;
    margin-bottom: 6px;
    display: block;
}

.input, select, textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    color: #fff;
    margin-bottom: 14px;
    font-size: 14px;
    transition: .15s;
}

.input:focus,
select:focus,
textarea:focus {
    border-color: #8a63ff;
    background: rgba(255,255,255,0.1);
    outline: none;
}

textarea {
    min-height: 90px;
    resize: vertical;
}

/* nicer select */
select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='12' viewBox='0 0 20 20' width='12' xmlns='http://www.w3.org/2000/svg'><polygon points='0,0 20,0 10,12'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

/* ============================================
   BUTTONS
============================================ */

.btn {
    background: linear-gradient(135deg, #7a5bff 0%, #9a6bff 100%);
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: .2s;
    margin-top: 6px;
}

.btn:hover {
    opacity: .85;
}

.btn.outline {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.25);
}

.btn.outline:hover {
    background: rgba(255,255,255,0.1) !important;
}

/* ============================================
   CUSTOM SELECT FOR TWITCH SEARCH
============================================ */

.custom-select {
    position: relative;
    width: 100%;
}

.select-input {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    color: #fff;
    transition: .2s;
}

.select-input:focus {
    border-color: #8a63ff;
    background: rgba(255,255,255,0.12);
}

.select-dropdown {
    display: none;
    position: absolute;
    top: 105%;
    left: 0;
    right: 0;
    background: rgba(15,15,20,0.95);
    backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    max-height: 240px;
    overflow-y: auto;
    z-index: 50;
}

.select-item {
    padding: 10px 12px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: .15s;
}

.select-item:hover {
    background: rgba(255,255,255,0.12);
}

/* Scrollbar schöner */
.select-dropdown::-webkit-scrollbar {
    width: 6px;
}
.select-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 6px;
}

/* ============================================
   PARTNER BOX
============================================ */

.card img {
    border-radius: 8px;
    margin-bottom: 10px;
}

.card a {
    color: #8a63ff;
    text-decoration: none;
}

.card a:hover {
    text-decoration: underline;
}

/* ============================================
   JURY LIST
============================================ */

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    padding: 6px 0;
    display: flex;
    align-items: center;
}
