@import url('https://fonts.googleapis.com/css2?family=Arial:wght@400;700&display=swap');

body {
      margin: 0;
      padding: 0;
      background: #f8f9fa;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      font-family: Arial, sans-serif;
}

.ad-container {
      width: 768px;
      background: white;
      border: 1px solid #ddd;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      padding: 20px;
      box-sizing: border-box;
}

.ad-header {
      text-align: center;
      margin-bottom: 18px;
      font-size: 18px;
      font-weight: 700;
      color: #232f3e;
}

.ad-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
}

.ad-item {
      text-align: center;
      transition: transform 0.2s;
}

.ad-item:hover {
      transform: translateY(-4px);
}

.ad-item a {
      text-decoration: none;
      color: inherit;
      display: block;
}

.ad-item img {
      width: 100%;
      max-height: 180px;
      object-fit: contain;
      border: 1px solid #eee;
      border-radius: 6px;
      background: #fff;
      padding: 8px;
      box-sizing: border-box;
}

.title {
      display: block;
      margin-top: 12px;
      font-size: 14.5px;
      line-height: 1.3;
      color: #0f1111;
      font-weight: 600;
      min-height: 54px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
}

.amazon-badge {
      display: inline-block;
      background: #FF9900;
      color: white;
      font-size: 11px;
      font-weight: bold;
      padding: 3px 10px;
      border-radius: 3px;
      margin-top: 8px;
}

.disclaimer {
      text-align: center;
      margin-top: 22px;
      font-size: 11.5px;
      color: #666;
      line-height: 1.4;
}

.ad-footer {
      text-align: center;
      margin-top: 12px;
      font-size: 12px;
      color: #888;
}
