* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0a0a0a;
  color: #00ff9d;
  min-height: 100vh;
  overflow: hidden;
  text-align: center;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 35px 0;
  z-index: 100;
}

.logo {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: #00ff9d;
  text-shadow: 0 0 25px rgba(0, 255, 157, 0.7);
}

/* Contenu principal */
.main-content {
  margin-top: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

/* Emoji - couleurs originales */
.emoji-face {
  position: relative;
  width: 290px;
  height: 290px;
  background: #ffeb3b;
  border-radius: 50%;
  margin-bottom: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.75);
  border: 14px solid #222;
  transition: transform 0.4s ease;
}

.emoji-face:hover {
  transform: scale(1.08);
}

.eyes {
  position: relative;
  top: -32px;
  display: flex;
  gap: 38px;
}

.eye {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  border: 7px solid #222;
  overflow: hidden;
  position: relative;
}

.eye::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 26px;
  transform: translate(-50%, -50%);
  width: 37px;
  height: 37px;
  background: #1c1c1c;
  border-radius: 50%;
}

/* Texte */
h1 {
  font-size: 3.3rem;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 0 0 20px rgba(0, 255, 157, 0.5);
}

p {
  font-size: 1.55rem;
  color: #00ff9d;
  margin-bottom: 10px;
}

.sub {
  font-size: 1.3rem;
  opacity: 0.85;
  margin-top: 20px;
}