﻿/* Horror thema stijl voor win/lose scherm */
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(circle at top, rgba(30, 0, 0, 0.95), #000 70%),
              linear-gradient(135deg, rgba(140, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 70%);
  color: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 40% 20%, rgba(255, 0, 0, 0.18), transparent 55%),
              radial-gradient(circle at 70% 80%, rgba(255, 0, 0, 0.16), transparent 58%);
  pointer-events: none;
  opacity: 0.9;
}

.result-screen {
  width: 100%;
  max-width: 520px;
  padding: 1.2rem;
}

.card {
  border-radius: 18px;
  background: rgba(10, 10, 10, 0.76);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2.4rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 15%, rgba(255, 0, 0, 0.12), transparent 65%);
  pointer-events: none;
}

.card h1 {
  margin: 0 0 1rem;
  font-size: 2.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffdede;
  text-shadow: 0 0 20px rgba(255, 10, 10, 0.5);
}

.card p {
  margin: 0 0 1.8rem;
  line-height: 1.6;
  opacity: 0.92;
  color: rgba(240, 240, 240, 0.9);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.button {
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(20, 0, 0, 0.6);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  min-width: 150px;
  display: inline-flex;
  justify-content: center;
}

.button:hover {
  transform: translateY(-1px);
  background: rgba(255, 0, 0, 0.25);
  box-shadow: 0 18px 30px rgba(255, 0, 0, 0.35);
}

<<<<<<< HEAD
.button:active {
  transform: translateY(0);
}

.button--secondary {
  background: rgba(40, 0, 0, 0.55);
  border-color: rgba(255, 0, 0, 0.5);
}

.card--win {
  border-top: 6px solid #e0a733;
}

.card--lose {
  border-top: 6px solid #dc2b2b;
}

.card--win h1::before {
  content: "🩸 ";
}

.card--lose h1::before {
  content: "☠️ ";
}

@media (max-width: 420px) {
  .card {
    padding: 1.6rem;
  }
  .card h1 {
    font-size: 1.9rem;
  }
}



=======
/* teamsphp css */

.TEAMS {
  background-color: #35023f;
  color: white;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  margin: auto;
}

/* achtergrond */

body{
margin:0;
font-family: Arial, sans-serif;
}

/* paarse horror achtergrond */

.INDEX1{
background: radial-gradient(circle at top,#4b006e,#1a001f);
color:white;
min-height:100vh;
}

/* layout */

.home-container{
display:flex;
justify-content:space-between;
align-items:center;
max-width:1200px;
margin:auto;
padding:80px 40px;
gap:50px;
}

/* tekst */

.text-section{
width:50%;
}

.text-section h1{
font-family:'Creepster', cursive;
font-size:48px;
letter-spacing:2px;
margin-bottom:30px;
text-shadow:0 0 15px black;
}

.text-section p{
line-height:1.7;
margin-bottom:15px;
}

/* evil text */

.evil-text{
color:#ff4d4d;
font-weight:bold;
text-shadow:0 0 10px red;
}

/* afbeelding */

.image-section{
width:45%;
}

.image-section img{
width:100%;
border-radius:6px;
box-shadow:0 0 40px black;
}

/* knop */

.start-btn{
margin-top:30px;
padding:16px 50px;
font-size:18px;
background:#444;
color:white;
border:none;
cursor:pointer;
transition:0.3s;
}

.start-btn:hover{
background:#666;
transform:scale(1.05);
box-shadow:0 0 10px white;
}


>>>>>>> 83a261b90471a318c9360c4dd5364ea3a79e7e76
