/* craftmarkers.com - Premium Betting & Careers */
:root {
  --bg: #f8f9fa;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --accent: #0066b3;
  --accent-hover: #004d8c;
  --card-bg: #fff;
  --border: #e5e7eb;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: var(--card-bg);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}
.logo span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}
.nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.nav a {
  color: var(--text);
  font-weight: 500;
}
.nav a:hover {
  color: var(--accent);
}

/* Main */
.main {
  padding: 40px 0 60px;
}
.hero {
  text-align: center;
  margin-bottom: 48px;
}
.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
  line-height: 1.2;
}
.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* Offer card */
.offer-section {
  margin-bottom: 48px;
}
.offer-section h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.offer-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto;
  transition: box-shadow 0.25s;
}
.offer-card:hover {
  box-shadow: var(--shadow-hover);
}
.offer-card-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.offer-card img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 12px;
}
.offer-bonus {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}
.btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn:hover {
  background: var(--accent-hover);
  text-decoration: none;
  color: #fff;
}
.offer-tcs {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.offer-age {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Content sections */
.content-section {
  margin-bottom: 40px;
}
.content-section h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.content-section h3 {
  font-size: 1.2rem;
  margin: 24px 0 12px;
}
.content-section p,
.content-section ul {
  margin-bottom: 16px;
  color: var(--text-muted);
}
.content-section ul {
  padding-left: 24px;
}

/* Footer */
.footer {
  background: var(--text);
  color: #ccc;
  padding: 40px 0 24px;
  margin-top: 60px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
}
.footer-logo span {
  font-weight: 700;
  color: #fff;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #ccc;
}
.footer-links a:hover {
  color: #fff;
}
.responsible-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.responsible-logos a {
  display: block;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.responsible-logos a:hover {
  opacity: 1;
}
.responsible-logos img {
  height: 32px;
  width: auto;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #444;
  font-size: 0.9rem;
  color: #888;
  text-align: center;
}
.footer-age {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card-bg);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 9999;
  display: none;
}
.cookie-banner.show {
  display: block;
}
.cookie-banner-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 200px;
}
.cookie-banner-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-banner .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}
.cookie-banner .btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.cookie-banner .btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* Form */
.form-section {
  max-width: 560px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.form-checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}
.form-checkbox label {
  font-size: 0.9rem;
}
.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.form-error {
  color: #c00;
  font-size: 0.9rem;
  margin-top: 4px;
  display: none;
}
.form-error.show {
  display: block;
}
.form-success {
  background: #d4edda;
  color: #155724;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: none;
}
.form-success.show {
  display: block;
}

/* Legal pages */
.legal-page {
  padding: 40px 0 60px;
}
.legal-page h1 {
  font-size: 1.75rem;
  margin-bottom: 24px;
}
.legal-page h2 {
  font-size: 1.25rem;
  margin: 32px 0 16px;
}
.legal-page p,
.legal-page ul {
  margin-bottom: 16px;
  color: var(--text-muted);
}
.legal-page ul {
  padding-left: 24px;
}
.legal-page .updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Page title */
.page-title {
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.page-title h1 {
  font-size: 1.75rem;
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav {
    width: 100%;
  }
  .hero {
    margin-bottom: 32px;
  }
  .offer-card-inner {
    padding: 20px;
  }
  .footer-top {
    flex-direction: column;
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }
}
