/* ============================== */
/* Global Defaults                */
/* ============================== */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Poppins:wght@300;500;700&display=swap');

:root {
  --bg-dark: #0b0b0b;
  --panel-dark: #141414;
  --accent: #00e0ff;
  --accent-2: #ff3cac;
  --text-main: #e5e5e5;
  --text-muted: #a0a0a0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* ============================== */
/* Header Section                 */
/* ============================== */
.rp-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  min-height: 90vh;
  padding: 4rem 8%;
  background: var(--panel-dark);
  border-bottom: 2px solid rgba(0, 224, 255, 0.3);
}

.rp-header-left {
  flex: 1 1 450px;
}

.rp-header-left h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px var(--accent);
}

.rp-header-left p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #0b0b0b;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 0 15px var(--accent);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px var(--accent-2);
}

.rp-header-right {
  flex: 1 1 450px;
  display: flex;
  justify-content: center;
}

.rp-header-right img {
  width: 90%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 224, 255, 0.4);
  animation: floatImage 6s ease-in-out infinite;
}

/* ============================== */
/* Info Section                   */
/* ============================== */
.rp-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 8%;
  background: #111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.panel {
  flex: 1 1 300px;
  background: var(--panel-dark);
  border: 1px solid rgba(0, 224, 255, 0.3);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 15px rgba(0, 224, 255, 0.1);
  transition: all 0.3s ease;
}

.panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(0, 224, 255, 0.3);
}

.panel h2 {
  font-family: 'Orbitron', sans-serif;
  color: var(--accent);
  margin-bottom: 1rem;
  text-shadow: 0 0 8px var(--accent);
}

.panel p, 
.panel ul {
  color: var(--text-muted);
  line-height: 1.6;
}

.panel ul {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
}

.panel li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.4rem;
}

.panel li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent);
  text-shadow: 0 0 5px var(--accent);
}

/* ============================== */
/* Gallery Section                */
/* ============================== */
.rp-gallery {
  padding: 4rem 8%;
  background: #101010;
  text-align: center;
  border-top: 1px solid rgba(0, 224, 255, 0.2);
  border-bottom: 1px solid rgba(0, 224, 255, 0.2);
}

.rp-gallery h2 {
  font-family: 'Orbitron', sans-serif;
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent);
  margin-bottom: 2rem;
}

.gallery-scroll {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding-bottom: 1rem;
}

.gallery-scroll img {
  width: 280px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 224, 255, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.gallery-scroll img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px var(--accent);
}

/* ============================== */
/* Footer Section                 */
/* ============================== */
.rp-footer {
  text-align: center;
  padding: 2rem;
  background: var(--panel-dark);
  color: var(--text-muted);
  border-top: 1px solid rgba(0, 224, 255, 0.2);
  font-size: 0.95rem;
}

/* ============================== */
/* Animations                     */
/* ============================== */
@keyframes floatImage {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes glowText {
  0% { text-shadow: 0 0 15px var(--accent); }
  100% { text-shadow: 0 0 30px var(--accent-2); }
}

/* ============================== */
/* IP Copy Field (in Popup)       */
/* ============================== */
.ip-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 85%;
  margin: 0.6rem auto;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.03);
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.2s ease;
  color: var(--text-main);
  user-select: none;
  outline: none;
}

.ip-box:focus,
.ip-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,224,255,0.08);
  background: linear-gradient(90deg, rgba(0,224,255,0.02), rgba(255,60,172,0.02));
}

/* IP Text */
.ip-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.98rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 0.6rem;
}

/* Feedback (initial versteckt) */
.copy-feedback {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--panel-dark); /* Textfarbe wird auf dunklen Hintergrund gelegt */
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0,224,255,0.18);
  transform: translateX(8px) scale(0.9);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s cubic-bezier(.2,.9,.3,1), opacity 0.25s ease;
}

/* Sichtbar wenn kopiert */
.copy-feedback.visible {
  transform: translateX(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

/* Häkchen */
.check-icon {
  display: block;
  color: #071014; /* dunkles Icon auf hellem Badge */
  width: 16px;
  height: 16px;
}

/* kleine Animation beim erscheinen */
.copy-feedback.visible .check-icon {
  animation: popCheck 260ms ease-out;
}

@keyframes popCheck {
  0% { transform: scale(0.3) rotate(-20deg); opacity: 0; }
  60% { transform: scale(1.05) rotate(8deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
