* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Roboto, sans-serif;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #3d0000 0%, #050505 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.container {
  width: 90%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 30px;
  border: 1px solid rgba(255, 77, 109, 0.2);
  box-shadow: 0 0 40px rgba(139, 0, 0, 0.3);
}

/* LEFT SECTION */
.left {
  flex: 1.2;
  padding-left: 5%;
}

.badge-container {
  margin-bottom: 40px;
}

.badge {
  padding: 5px 12px;
  border: 1px solid #ff4d6d;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-right: 8px;
  color: #ff4d6d;
}

.left h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: "Georgia", serif; /* Elegant contrast */
}

.description {
  font-size: 16px;
  font-family: raleway, sans-serif;
  color: #ccc;
  line-height: 1.6;
  max-width: 450px;
  margin-bottom: 40px;
}

.status-label {
  color: #ff4d6d;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.buttons {
  display: flex;
  gap: 12px;
}

.btn {
  padding: 10px 25px;
  border-radius: 30px;
  border: 1px solid rgba(255, 77, 109, 0.4);
  background: transparent;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary {
  background: #ff4d6d;
  border: none;
}
.btn:hover {
  background: #ff4d6d;
  color: white;
  transform: translateY(-2px);
}

/* RIGHT SECTION */
.right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding-right: 2%;
}

.card {
  background: linear-gradient(145deg, rgba(30, 0, 0, 0.9), rgba(10, 10, 10, 1));
  padding: 40px;
  border-radius: 24px;
  width: 100%;
  max-width: 420px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.card-title {
  font-size: 11px;
  color: #666;
  letter-spacing: 1px;
}
.card-right {
  font-size: 11px;
  color: #00ff88;
  font-weight: bold;
}

/* ORBIT ANIMATION */
.orbit-container {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 0 auto 40px;
}

.orbit-ring {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 77, 109, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateRing 15s linear infinite;
}

.center-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ff4d6d;
  animation: counterRotate 15s linear infinite; /* Keeps photo still while ring spins */
}

.center-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dot {
  position: absolute;
  width: 34px;
  height: 34px;
  background: #1a0000;
  border: 1px solid #ff4d6d;
  border-radius: 50%;
  padding: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(255, 77, 109, 0.4);
}

.dot svg {
  fill: #ff4d6d;
  animation: counterRotate 15s linear infinite; /* Keeps icons upright */
}

/* Placing dots exactly on the border */
.d1 {
  top: -17px;
  left: calc(50% - 17px);
}
.d2 {
  right: -17px;
  top: calc(50% - 17px);
}
.d3 {
  bottom: -17px;
  left: calc(50% - 17px);
}
.d4 {
  left: -17px;
  top: calc(50% - 17px);
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes counterRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

/* STATS */
.stats {
  display: flex;
  justify-content: space-around;
}
.stat-item h3 {
  font-size: 28px;
  margin-bottom: 5px;
  color: #fff;
}
.stat-item p {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
}
