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

body {
  font-family: 'Noto Sans', sans-serif;
  background: #000;
  color: #fff;
  overflow: hidden;
  height: 100vh;
}

.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 12px;
  gap: 12px;
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.stat {
  background: #1a1a1a;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.label {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.value {
  font-size: 18px;
  font-weight: 600;
}

.revenue {
  color: #4ade80;
}

.website-preview {
  flex: 1;
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.preview-header {
  background: #111;
  padding: 8px 12px;
  font-size: 12px;
  color: #888;
  border-bottom: 1px solid #333;
}

.preview-content {
  flex: 1;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.content-block {
  background: #f3f4f6;
  border: 2px dashed #d1d5db;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 60%;
  border-radius: 4px;
}

.ad-block {
  position: absolute;
  background: #fef3c7;
  border: 2px solid #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #92400e;
  font-size: 11px;
  font-weight: 600;
  animation: adAppear 0.3s ease-out;
}

@keyframes adAppear {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.ad-block.banner {
  height: 60px;
  width: 100%;
  top: 0;
  left: 0;
}

.ad-block.sidebar {
  width: 120px;
  height: 100%;
  right: 0;
  top: 0;
}

.ad-block.interstitial {
  width: 90%;
  height: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  background: #fee2e2;
  border-color: #ef4444;
  color: #7f1d1d;
}

.ad-block.video {
  width: 280px;
  height: 160px;
  bottom: 12px;
  right: 12px;
  background: #dbeafe;
  border-color: #3b82f6;
  color: #1e3a8a;
}

.controls {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ad-button {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #333;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.ad-button:active {
  transform: scale(0.98);
  background: #222;
}

.btn-label {
  font-size: 14px;
  font-weight: 600;
}

.btn-detail {
  font-size: 11px;
  color: #888;
}

.reset-button {
  background: #dc2626;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}

.reset-button:active {
  transform: scale(0.98);
  background: #b91c1c;
}