/******* Do not edit this file *******
Code Snippets Manager
Saved: Mar 07 2026 | 19:11:56 */
@charset "UTF-8";
/* Card shell */
.gt-card {
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  margin: 0 0 40px 0;
  position: relative;
  overflow: visible;
  font-family: "Spartan", "Segoe UI", sans-serif;
}
.gt-card__topbar {
  height: 5px;
  background: linear-gradient(90deg, #95BCD0, #A32E00);
  border-radius: 20px 20px 0 0;
}
.gt-card__inner {
  padding: 40px 45px 45px;
}
/* Title */
.gt-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #222222;
  line-height: 1.25;
  margin: 0 0 30px 0;
  letter-spacing: -0.5px;
}
/* Meta row */
.gt-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 15px 15px;
  border: 2px solid #ffd9a3;
  border-radius: 8px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
/* Author */
.gt-author {
  display: flex;
  align-items: center;
  gap: 18px;
}
.gt-author__avatar {
  position: relative;
  flex-shrink: 0;
}
.gt-author__img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  display: block;
}
.gt-author__badge {
  position: absolute;
  bottom: 0;
  right: -4px;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #A32E00, #d36a42);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #F6F3EF;
}
.gt-author__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.gt-author__kicker {
  font-size: 0.72rem;
  color: #5d5c5c;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.gt-author__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222222;
  text-decoration: none;
  line-height: 1.3;
}
.gt-author__role {
  font-size: 0.92rem;
  color: #38799c;
  font-weight: 600;
}
/* Actions */
.gt-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.gt-date {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #ffffff;
  border-radius: 50px;
  font-size: 0.9rem;
  color: #555555;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.gt-date__emoji {
  font-size: 1.1rem;
}
.gt-date__strong {
  color: #333333;
  font-weight: 700;
}
/* Tooltip group */
.gt-tipgroup {
  display: flex;
  gap: 10px;
}
.gt-tip {
  position: relative;
}
/* Tooltip button base */
.gt-tip__btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #e8e8e8;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  padding: 0;
  transition: all 0.25s ease;
}
/* Icon colors per button */
.gt-tip__btn .gt-icon {
  width: 22px;
  height: 22px;
  fill: #A32E00;
}
.gt-tip__btn--info .gt-icon {
  fill: #6a9db8;
}
/* Tooltip content */
.gt-tip__content {
  position: absolute;
  width: 300px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  top: calc(100% + 12px);
  right: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.gt-tip__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}
.gt-tip__header--red {
  background: linear-gradient(135deg, #A32E00, #d36a42);
}
.gt-tip__header--blue {
  background: linear-gradient(135deg, #6a9db8, #95BCD0);
}
.gt-tip__body {
  margin: 0;
  padding: 15px 18px;
  font-size: 0.85rem;
  line-height: 1.65;
  color: #555555;
}
/* Hover effects */
.gt-tip:hover .gt-tip__content {
  visibility: visible;
  opacity: 1;
}
.gt-tip__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
/* Icons */
.gt-icon {
  width: 22px;
  height: 22px;
}
.gt-icon--sm {
  width: 13px;
  height: 13px;
}
.gt-icon--md {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
/* Intro text */
.gt-intro {
  /* (tomt med flit, men finns för struktur/utbyggnad) */
}
.gt-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444444;
  margin: 0 0 18px 0;
}
.gt-text--last {
  margin: 0;
}
.gt-strong {
  color: #222222;
}
@media (max-width: 480px) {
  .gt-card h1 {
    font-size: 22px;
  }
  .gt-card p {
    font-size: 13px;
  }
  .gt-card__inner {
    padding: 25px 10px;
  }
  .gt-tipgroup {
    display: none;
  }
}
/* Förhindra att tabeller bryter layouten */
table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
}
/* Wrapper via display:block för horisontell scroll */
table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
/* Se till att innehåll inte tvingar bredd */
th, td {
  white-space: nowrap;
}
/* ===========================================
   CONTACT PAGE CSS - GraphThemes Style
   Colors: #A32E00 (accent red), #95BCD0 (light blue)
   =========================================== */
/* Variables */
.gt-contact-page {
  --accent-red: #A32E00;
  --accent-red-light: #d36a42;
  --accent-blue: #95BCD0;
  --accent-blue-dark: #6a9db8;
  --text-dark: #222222;
  --text-medium: #555555;
  --text-light: #777777;
  --bg-cream: #F6F3EF;
  --bg-white: #ffffff;
  --bg-dark: #1a1a2e;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}
/* Base */
.gt-contact-page {
  font-family: "Spartan", "Segoe UI", sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
}
/* ===== HERO SECTION ===== */
.gt-contact-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2d2d4a 100%);
  padding: 80px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gt-contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-red));
}
.gt-contact-hero::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 120%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(149, 188, 208, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.gt-contact-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.gt-contact-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px 0;
  line-height: 1.2;
}
.gt-contact-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.7;
}
/* ===== MAIN CONTENT SECTION ===== */
.gt-contact-main {
  padding: 80px 30px;
  background: var(--bg-cream);
}
.gt-contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: start;
}
/* ===== CONTACT FORM ===== */
.gt-contact-form-wrapper {
  background: var(--bg-white);
  padding: 45px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.gt-form-header {
  margin-bottom: 35px;
}
.gt-form-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 10px 0;
}
.gt-form-header p {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0;
}
.gt-contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.gt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.gt-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gt-form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}
.gt-form-group label .required {
  color: var(--accent-red);
}
.gt-form-group input, .gt-form-group select, .gt-form-group textarea {
  padding: 14px 18px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--bg-cream);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
}
.gt-form-group input::placeholder, .gt-form-group textarea::placeholder {
  color: var(--text-light);
}
.gt-form-group input:focus, .gt-form-group select:focus, .gt-form-group textarea:focus {
  background: var(--bg-white);
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 4px rgba(149, 188, 208, 0.2);
}
.gt-form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 45px;
}
.gt-form-group textarea {
  resize: vertical;
  min-height: 140px;
}
/* Checkbox */
.gt-checkbox-group {
  margin-top: 5px;
}
.gt-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.5;
}
.gt-checkbox-label input[type="checkbox"] {
  display: none;
}
.gt-checkmark {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--bg-cream);
  border: 2px solid var(--accent-blue);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  margin-top: 2px;
}
.gt-checkmark::after {
  content: "";
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: var(--transition);
}
.gt-checkbox-label input:checked + .gt-checkmark {
  background: var(--accent-red);
  border-color: var(--accent-red);
}
.gt-checkbox-label input:checked + .gt-checkmark::after {
  transform: rotate(45deg) scale(1);
}
.gt-checkbox-text a {
  color: var(--accent-red);
  text-decoration: none;
  font-weight: 500;
}
.gt-checkbox-text a:hover {
  text-decoration: underline;
}
/* Submit Button */
.gt-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
  color: #fff;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(163, 46, 0, 0.3);
  margin-top: 10px;
}
.gt-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(163, 46, 0, 0.4);
}
.gt-submit-btn:active {
  transform: translateY(-1px);
}
.gt-btn-icon svg {
  width: 20px;
  height: 20px;
}
/* ===== SIDEBAR ===== */
.gt-contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.gt-info-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gt-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.gt-info-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.gt-info-icon svg {
  width: 26px;
  height: 26px;
  color: #fff;
}
.gt-info-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 8px 0;
}
.gt-info-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0 0 12px 0;
}
.gt-info-link {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-red);
  text-decoration: none;
  transition: var(--transition);
}
.gt-info-link:hover {
  color: var(--accent-red-light);
  text-decoration: underline;
}
.gt-highlight {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-red);
}
/* Social Links in Sidebar */
.gt-social-links {
  display: flex;
  gap: 12px;
}
.gt-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--bg-cream);
  border-radius: 50%;
  color: var(--text-dark);
  transition: var(--transition);
}
.gt-social-btn svg {
  width: 22px;
  height: 22px;
}
.gt-social-btn:hover {
  background: var(--accent-red);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(163, 46, 0, 0.3);
}
/* Info Note */
.gt-info-note {
  display: flex;
  gap: 15px;
  padding: 25px;
  background: rgba(163, 46, 0, 0.08);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-red);
}
.gt-info-note svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  color: var(--accent-red);
  margin-top: 2px;
}
.gt-info-note p {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.6;
}
.gt-info-note a {
  color: var(--accent-red);
  font-weight: 600;
  text-decoration: none;
}
.gt-info-note a:hover {
  text-decoration: underline;
}
/* ===== FAQ SECTION ===== */
.gt-contact-faq {
  padding: 80px 30px;
  background: var(--bg-white);
}
.gt-faq-container {
  max-width: 1100px;
  margin: 0 auto;
}
.gt-faq-header {
  text-align: center;
  margin-bottom: 50px;
}
.gt-faq-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 15px 0;
}
.gt-faq-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin: 0;
}
.gt-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.gt-faq-item {
  background: var(--bg-cream);
  padding: 35px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  border-left: 4px solid transparent;
}
.gt-faq-item:hover {
  border-left-color: var(--accent-red);
  box-shadow: var(--shadow-sm);
}
.gt-faq-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.gt-faq-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
}
.gt-faq-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 12px 0;
}
.gt-faq-item p {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.7;
}
/* ===== RESPONSIVE - Tablet ===== */
@media (max-width: 992px) {
  .gt-contact-hero {
    padding: 60px 25px;
  }
  .gt-contact-hero h1 {
    font-size: 2.5rem;
  }
  .gt-contact-main {
    padding: 60px 25px;
  }
  .gt-contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gt-contact-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .gt-info-note {
    grid-column: 1 / -1;
  }
  .gt-contact-faq {
    padding: 60px 25px;
  }
}
/* ===== RESPONSIVE - Mobile ===== */
@media (max-width: 768px) {
  .gt-contact-hero {
    padding: 50px 20px;
  }
  .gt-contact-hero h1 {
    font-size: 2rem;
  }
  .gt-contact-hero p {
    font-size: 1rem;
  }
  .gt-contact-main {
    padding: 50px 20px;
  }
  .gt-contact-form-wrapper {
    padding: 30px 25px;
  }
  .gt-form-header h2 {
    font-size: 1.5rem;
  }
  .gt-form-row {
    grid-template-columns: 1fr;
  }
  .gt-contact-sidebar {
    grid-template-columns: 1fr;
  }
  .gt-contact-faq {
    padding: 50px 20px;
  }
  .gt-faq-header h2 {
    font-size: 1.7rem;
  }
  .gt-faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gt-faq-item {
    padding: 25px;
  }
}
/* ===== RESPONSIVE - Small Mobile ===== */
@media (max-width: 480px) {
  .gt-contact-hero {
    padding: 40px 15px;
  }
  .gt-contact-hero h1 {
    font-size: 1.7rem;
  }
  .gt-contact-main {
    padding: 40px 15px;
  }
  .gt-contact-form-wrapper {
    padding: 25px 20px;
  }
  .gt-form-header h2 {
    font-size: 1.3rem;
  }
  .gt-form-group input, .gt-form-group select, .gt-form-group textarea {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  .gt-submit-btn {
    width: 100%;
    padding: 16px 30px;
    font-size: 1rem;
  }
  .gt-info-card {
    padding: 25px;
  }
  .gt-info-icon {
    width: 48px;
    height: 48px;
  }
  .gt-info-icon svg {
    width: 22px;
    height: 22px;
  }
  .gt-contact-faq {
    padding: 40px 15px;
  }
  .gt-faq-header h2 {
    font-size: 1.5rem;
  }
  .gt-faq-item {
    padding: 20px;
  }
  .gt-faq-icon {
    width: 40px;
    height: 40px;
  }
  .gt-faq-icon svg {
    width: 18px;
    height: 18px;
  }
  .gt-faq-item h4 {
    font-size: 1rem;
  }
}
/* ===== Form Success/Error States (Optional) ===== */
.gt-form-success {
  background: #d4edda;
  color: #155724;
  padding: 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  margin-bottom: 25px;
  border: 1px solid #c3e6cb;
}
.gt-form-error {
  background: #f8d7da;
  color: #721c24;
  padding: 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  margin-bottom: 25px;
  border: 1px solid #f5c6cb;
}
/* Input Error State */
.gt-form-group.has-error input, .gt-form-group.has-error select, .gt-form-group.has-error textarea {
  border-color: var(--accent-red);
  background: #fff5f5;
}
.gt-form-group .error-message {
  font-size: 0.85rem;
  color: var(--accent-red);
  margin-top: 5px;
}
/* ===========================================
   RESPONSIBLE GAMING PAGE CSS - GraphThemes
   Colors: #A32E00 (accent red), #95BCD0 (light blue)
   =========================================== */
/* Variables */
.gt-responsible-page {
  --accent-red: #A32E00;
  --accent-red-light: #d36a42;
  --accent-blue: #95BCD0;
  --accent-blue-dark: #6a9db8;
  --text-dark: #222222;
  --text-medium: #555555;
  --text-light: #777777;
  --bg-cream: #F6F3EF;
  --bg-white: #ffffff;
  --bg-dark: #1a1a2e;
  --success-green: #28a745;
  --warning-yellow: #ffc107;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}
/* Base */
.gt-responsible-page {
  font-family: "Spartan", "Segoe UI", sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
}
/* Section Header */
.gt-section-header {
  text-align: center;
  margin-bottom: 50px;
}
.gt-section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 15px 0;
}
.gt-section-header.gt-light h2 {
  color: #fff;
}
.gt-section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-red-light));
  border-radius: 2px;
  margin: 0 auto;
}
.gt-section-header.gt-light .gt-section-divider {
  background: linear-gradient(90deg, var(--accent-blue), #fff);
}
.gt-section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin: 20px auto 0;
  max-width: 650px;
}
.gt-section-header.gt-light .gt-section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}
/* ===== HERO SECTION ===== */
.gt-responsible-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2d2d4a 100%);
  padding: 100px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gt-responsible-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-red));
}
.gt-responsible-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 120%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(149, 188, 208, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.gt-responsible-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.gt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(149, 188, 208, 0.2);
  padding: 10px 25px;
  border-radius: 50px;
  margin-bottom: 25px;
  border: 1px solid rgba(149, 188, 208, 0.3);
}
.gt-hero-badge svg {
  width: 22px;
  height: 22px;
  color: var(--accent-blue);
}
.gt-hero-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.gt-responsible-hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 25px 0;
  line-height: 1.2;
}
.gt-responsible-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.7;
}
/* ===== IMPORTANT NOTICE ===== */
.gt-responsible-notice {
  background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
  padding: 50px 30px;
  border-bottom: 3px solid var(--accent-red);
}
.gt-notice-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.gt-notice-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gt-notice-icon svg {
  width: 35px;
  height: 35px;
  color: #fff;
}
.gt-notice-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-red);
  margin: 0 0 15px 0;
}
.gt-notice-content p {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.8;
}
/* ===== INTRO SECTION ===== */
.gt-responsible-intro {
  padding: 80px 30px;
  background: var(--bg-white);
}
.gt-intro-container {
  max-width: 1100px;
  margin: 0 auto;
}
.gt-intro-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
}
.gt-intro-text p {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin: 0 0 20px 0;
}
.gt-intro-text p:last-child {
  margin-bottom: 0;
}
.gt-intro-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gt-stat-item {
  background: var(--bg-cream);
  padding: 25px 30px;
  border-radius: var(--radius-md);
  text-align: center;
  border-left: 4px solid var(--accent-blue);
}
.gt-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-red);
  line-height: 1;
  margin-bottom: 8px;
}
.gt-stat-label {
  font-size: 0.95rem;
  color: var(--text-medium);
}
/* ===== WARNING SIGNS ===== */
.gt-responsible-signs {
  padding: 80px 30px;
  background: var(--bg-cream);
}
.gt-signs-container {
  max-width: 1100px;
  margin: 0 auto;
}
.gt-signs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.gt-sign-card {
  background: var(--bg-white);
  padding: 35px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid transparent;
}
.gt-sign-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-top-color: var(--accent-red);
}
.gt-sign-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(163, 46, 0, 0.1), rgba(163, 46, 0, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.gt-sign-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent-red);
}
.gt-sign-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 12px 0;
}
.gt-sign-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.6;
}
/* ===== TIPS SECTION ===== */
.gt-responsible-tips {
  padding: 80px 30px;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2d2d4a 100%);
}
.gt-tips-container {
  max-width: 1100px;
  margin: 0 auto;
}
.gt-tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.gt-tip-item {
  display: flex;
  gap: 25px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}
.gt-tip-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-blue);
}
.gt-tip-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-blue);
  line-height: 1;
  opacity: 0.6;
}
.gt-tip-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px 0;
}
.gt-tip-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}
/* ===== SPELPAUS SECTION ===== */
.gt-responsible-spelpaus {
  padding: 80px 30px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
}
.gt-spelpaus-container {
  max-width: 1000px;
  margin: 0 auto;
}
.gt-spelpaus-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  background: var(--bg-white);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.gt-spelpaus-icon {
  width: 100px;
  height: 100px;
  min-width: 100px;
  background: linear-gradient(135deg, var(--success-green), #20c997);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gt-spelpaus-icon svg {
  width: 50px;
  height: 50px;
  color: #fff;
}
.gt-spelpaus-text h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 20px 0;
}
.gt-spelpaus-text p {
  font-size: 1rem;
  color: var(--text-medium);
  margin: 0 0 15px 0;
  line-height: 1.7;
}
.gt-spelpaus-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--success-green), #20c997);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  margin-top: 15px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}
.gt-spelpaus-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}
.gt-spelpaus-btn svg {
  width: 18px;
  height: 18px;
}
/* ===== HELP ORGANIZATIONS ===== */
.gt-responsible-help {
  padding: 80px 30px;
  background: var(--bg-white);
}
.gt-help-container {
  max-width: 1100px;
  margin: 0 auto;
}
.gt-help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}
.gt-help-card {
  background: var(--bg-cream);
  padding: 35px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.gt-help-card:hover {
  box-shadow: var(--shadow-md);
}
.gt-help-card.gt-help-primary {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
  color: #fff;
  grid-column: 1 / -1;
}
.gt-help-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}
.gt-help-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}
.gt-help-primary h3 {
  color: #fff;
}
.gt-help-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.gt-help-card p {
  font-size: 0.95rem;
  margin: 0 0 20px 0;
  line-height: 1.6;
}
.gt-help-primary p {
  color: rgba(255, 255, 255, 0.9);
}
.gt-help-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.gt-help-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--accent-red);
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}
.gt-help-phone svg {
  width: 20px;
  height: 20px;
}
.gt-help-phone:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}
.gt-help-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.gt-help-primary .gt-help-link {
  color: #fff;
}
.gt-help-card:not(.gt-help-primary) .gt-help-link {
  color: var(--accent-red);
}
.gt-help-link svg {
  width: 16px;
  height: 16px;
}
.gt-help-link:hover {
  text-decoration: underline;
}
/* Emergency Notice */
.gt-help-emergency {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff3cd;
  padding: 25px 35px;
  border-radius: var(--radius-md);
  border-left: 5px solid var(--warning-yellow);
}
.gt-emergency-icon svg {
  width: 35px;
  height: 35px;
  color: #856404;
}
.gt-emergency-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #856404;
  margin: 0 0 5px 0;
}
.gt-emergency-content p {
  font-size: 0.95rem;
  color: #856404;
  margin: 0;
}
.gt-emergency-content a {
  color: #856404;
  font-weight: 700;
}
/* ===== SELF-TEST SECTION ===== */
.gt-responsible-test {
  padding: 80px 30px;
  background: var(--bg-cream);
}
.gt-test-container {
  max-width: 800px;
  margin: 0 auto;
}
.gt-test-content {
  background: var(--bg-white);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.gt-test-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 15px 0;
}
.gt-test-content > p {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin: 0 0 30px 0;
}
.gt-test-questions {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
}
.gt-test-questions li {
  padding: 18px 25px;
  background: var(--bg-cream);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text-medium);
  position: relative;
  padding-left: 55px;
}
.gt-test-questions li::before {
  content: "?";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--accent-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.gt-test-result {
  background: rgba(163, 46, 0, 0.08);
  padding: 25px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text-medium);
  margin: 0 0 30px 0;
  text-align: left;
  border-left: 4px solid var(--accent-red);
}
.gt-test-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(163, 46, 0, 0.3);
}
.gt-test-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(163, 46, 0, 0.4);
}
.gt-test-cta svg {
  width: 22px;
  height: 22px;
}
/* ===== COMMITMENT SECTION ===== */
.gt-responsible-commitment {
  padding: 80px 30px;
  background: var(--bg-white);
}
.gt-commitment-container {
  max-width: 1100px;
  margin: 0 auto;
}
.gt-commitment-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: start;
}
.gt-commitment-text p {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin: 0 0 25px 0;
}
.gt-commitment-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 20px 0;
}
.gt-commitment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gt-commitment-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 1rem;
  color: var(--text-medium);
}
.gt-commitment-list li:last-child {
  border-bottom: none;
}
.gt-commitment-list svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  color: var(--success-green);
  margin-top: 2px;
}
.gt-info-box {
  background: var(--bg-cream);
  padding: 35px;
  border-radius: var(--radius-md);
  margin-bottom: 25px;
}
.gt-info-box h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 15px 0;
}
.gt-info-box > p {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin: 0 0 25px 0;
}
.gt-info-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.gt-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-medium);
}
.gt-info-row svg {
  width: 20px;
  height: 20px;
  color: var(--accent-blue);
}
.gt-info-row a {
  color: var(--accent-red);
  text-decoration: none;
}
.gt-info-row a:hover {
  text-decoration: underline;
}
.gt-badges-box {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.gt-age-badge, .gt-responsible-badge {
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
}
.gt-age-badge {
  background: var(--accent-red);
  color: #fff;
}
.gt-responsible-badge {
  background: var(--accent-blue);
  color: #fff;
}
/* ===== FINAL CTA ===== */
.gt-responsible-cta {
  padding: 80px 30px;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2d2d4a 100%);
  text-align: center;
}
.gt-cta-container {
  max-width: 700px;
  margin: 0 auto;
}
.gt-cta-container h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 15px 0;
}
.gt-cta-container p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 35px 0;
}
.gt-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.gt-cta-primary, .gt-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
}
.gt-cta-primary {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
  color: #fff;
  box-shadow: 0 4px 15px rgba(163, 46, 0, 0.3);
}
.gt-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(163, 46, 0, 0.4);
}
.gt-cta-primary svg {
  width: 22px;
  height: 22px;
}
.gt-cta-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.gt-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-blue);
}
/* ===== RESPONSIVE - Tablet ===== */
@media (max-width: 992px) {
  .gt-responsible-hero {
    padding: 70px 25px;
  }
  .gt-responsible-hero h1 {
    font-size: 2.5rem;
  }
  .gt-intro-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gt-intro-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .gt-stat-item {
    flex: 1;
    min-width: 200px;
  }
  .gt-signs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gt-tips-grid {
    grid-template-columns: 1fr;
  }
  .gt-spelpaus-content {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }
  .gt-spelpaus-icon {
    margin: 0 auto;
  }
  .gt-commitment-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
/* ===== RESPONSIVE - Mobile ===== */
@media (max-width: 768px) {
  .gt-responsible-hero {
    padding: 60px 20px;
  }
  .gt-responsible-hero h1 {
    font-size: 2rem;
  }
  .gt-responsible-hero p {
    font-size: 1.05rem;
  }
  .gt-notice-container {
    flex-direction: column;
    text-align: center;
  }
  .gt-notice-icon {
    margin: 0 auto;
  }
  .gt-section-header h2 {
    font-size: 1.8rem;
  }
  .gt-intro-stats {
    flex-direction: column;
  }
  .gt-stat-item {
    min-width: auto;
  }
  .gt-signs-grid {
    grid-template-columns: 1fr;
  }
  .gt-tip-item {
    flex-direction: column;
    text-align: center;
  }
  .gt-help-grid {
    grid-template-columns: 1fr;
  }
  .gt-help-contact {
    flex-direction: column;
    align-items: flex-start;
  }
  .gt-help-primary .gt-help-contact {
    align-items: center;
  }
  .gt-help-emergency {
    flex-direction: column;
    text-align: center;
  }
  .gt-test-content {
    padding: 35px 25px;
  }
  .gt-test-questions li {
    padding-left: 50px;
  }
  .gt-cta-buttons {
    flex-direction: column;
  }
  .gt-cta-primary, .gt-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}
/* ===== RESPONSIVE - Small Mobile ===== */
@media (max-width: 480px) {
  .gt-responsible-hero {
    padding: 50px 15px;
  }
  .gt-responsible-hero h1 {
    font-size: 1.7rem;
  }
  .gt-hero-badge {
    padding: 8px 18px;
  }
  .gt-hero-badge span {
    font-size: 0.8rem;
  }
  .gt-notice-container {
    padding: 0 10px;
  }
  .gt-notice-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
  .gt-notice-icon svg {
    width: 28px;
    height: 28px;
  }
  .gt-section-header h2 {
    font-size: 1.5rem;
  }
  .gt-stat-number {
    font-size: 2rem;
  }
  .gt-sign-card {
    padding: 25px 20px;
  }
  .gt-tip-item {
    padding: 25px 20px;
  }
  .gt-tip-number {
    font-size: 2rem;
  }
  .gt-spelpaus-content {
    padding: 30px 20px;
  }
  .gt-spelpaus-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
  }
  .gt-spelpaus-icon svg {
    width: 40px;
    height: 40px;
  }
  .gt-spelpaus-text h2 {
    font-size: 1.3rem;
  }
  .gt-help-card {
    padding: 25px 20px;
  }
  .gt-info-box {
    padding: 25px 20px;
  }
  .gt-badges-box {
    flex-direction: column;
    align-items: center;
  }
  .gt-cta-container h2 {
    font-size: 1.7rem;
  }
}
.casino-brand img {
  border-radius: 0 !important;
}
.casino-list-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}
.casino-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.casino-list-item {
  background: rgba(255, 249, 230, 0.6);
  /* Mer transparent gul bakgrund */
  border: 2px solid #d6663c;
  border-radius: 15px;
  padding: 20px;
  /* Minskat padding */
  margin-bottom: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* Minskat mellanrum */
}
.number-circle {
  position: absolute;
  left: -30px;
  top: 20px;
  width: 40px;
  height: 40px;
  background: #d6663c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  border: 3px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.casino-name {
  color: #333;
  margin-top: 1rem !important;
  font-size: 24px;
  margin-left: 20px;
  margin-bottom: 5px;
  /* Minskat mellanrum till innehåll */
  font-weight: bold;
}
.pros-cons-section {
  display: flex;
  gap: 15px;
  margin-left: 20px;
}
.pros, .cons {
  flex: 1;
}
.pros {
  color: #1A6137;
}
.cons {
  color: #B50D0D;
}
.pros h4, .cons h4 {
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 20px;
  /* Större rubrik */
  font-weight: 800;
  /* Mycket fetare text */
}
.pros ul, .cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pros ul li::before {
  content: "✓ ";
  color: green;
  font-weight: bold;
}
.cons ul li::before {
  content: "⚠ ";
  color: #d6663c;
}
.pros ul li, .cons ul li {
  margin-bottom: 5px;
  padding-left: 20px;
}
.recommendation {
  background: #e8f4f8;
  border-radius: 10px;
  padding: 15px;
  margin-left: 20px;
  border-left: 4px solid #95bcd1;
}
.recommendation-title {
  color: #333;
  font-size: 18px;
  /* Större text */
  font-weight: 700;
  /* Fetare text */
  margin-bottom: 8px;
  margin-top: 0;
  /* Borttagen topp-margin */
}
.recommendation p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}
.comparison-heading {
  text-align: center;
  color: #333;
  font-size: 24px;
  margin: 40px 0 20px;
  padding: 15px;
  background: #f5f5f5;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .casino-list-item {
    padding: 15px;
  }
  .number-circle {
    left: -20px;
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .pros-cons-section {
    flex-direction: column;
    gap: 15px;
  }
  .casino-name {
    font-size: 20px;
  }
}
.play-btn, .play-btn:visited, .play-btn:hover, .play-btn:focus, .play-btn:active {
  color: #fff !important;
  text-decoration: none !important;
}
.casino-compare {
  max-width: 1080px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* Minskat gap mellan raderna för att få fler "above the fold" */
  font-family: "Roboto", sans-serif;
}
.casino-item {
  display: grid;
  grid-template-columns: 160px 320px 1fr 180px;
  /* Större logokolumn, större rubrikkolumn, mindre förmånskolumn, större CTA-kolumn */
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 18px 24px;
  /* Mindre padding för att minska höjden */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: auto;
  /* Kontrollera höjden */
  max-height: 170px;
  /* Lite högre för att rymma större logotyp */
}
.casino-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  /* Tog bort transform: translateY(-2px); för att eliminera floating-effekten */
}
.casino-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.casino-brand img {
  max-width: 100%;
  max-height: 120px;
  /* Mycket större logotyp */
  width: auto;
  height: auto;
  display: block;
  /* Tog bort transition och hover-effekt för logotypen */
}
/* Tog bort .casino-item:hover .casino-brand img { transform: scale(1.05); } */
.casino-name h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: #1a1a1a;
  line-height: 1.3;
  padding-right: 10px;
  /* Lite mer utrymme till förmånslistan */
  font-family: "Roboto", sans-serif;
  /* Specificerad font-family */
}
/* Tog bort .casino-item:hover .casino-name h3 { color: #007b3c; } */
.casino-benefits {
  padding: 0;
  margin: 0;
}
.casino-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* Mindre mellanrum mellan förmåner */
}
.casino-benefits li {
  font-size: 15px;
  color: #444;
  display: flex;
  align-items: flex-start;
  line-height: 1.3;
}
.casino-benefits li span {
  margin-right: 8px;
  font-size: 18px;
  display: inline-block;
  flex-shrink: 0;
  line-height: 1;
}
.casino-action {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.play-btn {
  background-color: #007b3c;
  color: #fff;
  padding: 16px 26px;
  /* Mycket större knapp */
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 123, 60, 0.25);
  border: none;
  text-align: center;
  min-width: 160px;
  /* Betydligt bredare knapp */
  letter-spacing: 0.5px;
  /* Öka läsbarheten */
}
.play-btn:hover {
  background-color: #00934a;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0, 123, 60, 0.3);
  transform: translateY(-2px);
}
/* Tablet-anpassning */
@media (max-width: 1024px) {
  .casino-item {
    grid-template-columns: 150px 1fr 160px;
    padding: 20px;
    gap: 16px;
  }
  .casino-brand {
    grid-row: 1;
    grid-column: 1;
  }
  .casino-brand img {
    max-height: 100px;
    /* Fortfarande stor logga på tablet */
  }
  .casino-name {
    grid-row: 1;
    grid-column: 2;
  }
  .casino-benefits {
    grid-row: 2;
    grid-column: 1 / span 3;
    margin-top: 16px;
  }
  .casino-action {
    grid-row: 1;
    grid-column: 3;
  }
  .play-btn {
    min-width: 140px;
    /* Något mindre knapp på tablet */
    padding: 14px 20px;
  }
  .casino-item {
    max-height: none;
    /* Ta bort begränsningen på tablet */
  }
}
/* Mobilanpassning */
@media (max-width: 768px) {
  .casino-item {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
    gap: 16px;
    max-height: none;
  }
  .casino-brand {
    grid-column: 1;
    grid-row: 1;
    margin: 0 auto;
    padding: 10px 0;
    /* Ökad padding för att ge mer vertikalt utrymme */
  }
  .casino-brand img {
    max-height: 140px;
    /* Mycket större logga på mobil */
    margin: 0 auto;
  }
  .casino-name {
    grid-column: 1;
    grid-row: 2;
    text-align: center;
    padding: 0;
  }
  .casino-name h3 {
    font-size: 20px;
    /* Något mindre text på mobil för att passa bättre */
    padding-right: 0;
  }
  .casino-benefits {
    grid-column: 1;
    grid-row: 3;
    margin: 10px auto 0;
  }
  .casino-benefits ul {
    text-align: left;
    margin: 0 auto;
    max-width: 280px;
  }
  .casino-action {
    grid-column: 1;
    grid-row: 4;
    justify-content: center;
    margin-top: 12px;
  }
  .play-btn {
    width: 100%;
    max-width: 300px;
    /* Lite bredare knapp på mobil */
    padding: 16px 20px;
    /* Fortfarande stor knapp på mobil */
    font-size: 18px;
  }
}
.elementor-kit-3419 {
  font-size: 16px;
  color: #000000d1;
  font-weight: 400;
}
.toc-container {
  background: #f8f9fa;
  border-left: 4px solid #A32E00;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  min-width: 300px !important;
  width: 100%;
  max-width: 320px !important;
  margin-right: 60px;
}
.text-block {
  max-width: 100% !important;
  width: 100%;
}
.toc-list {
  white-space: normal !important;
}
.toc-list a {
  border-radius: 10px !important;
  padding: 8px 11px !important;
}
.toc-list {
  margin-left: 0px !important;
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}
.toc-list li a:before {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='13' viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.75184 1.75C7.40463 1.75 5.50184 3.65279 5.50184 6V9.15642L7.96484 6.63027L9.03884 7.67742L4.75184 12.0743L0.464844 7.67742L1.53884 6.63027L4.00184 9.15642V6C4.00184 2.82436 6.57621 0.25 9.75184 0.25H13.0018V1.75H9.75184Z' fill='%23001D2F'/%3E%3C/svg%3E");
  width: 14px;
  height: 13px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  content: "";
  display: inline-block;
  margin-right: 7px;
}
.toc-container {
  /*     background: transparent!important; */
  border-left: 4px solid transparent !important;
  border: 0px !important;
  /*     box-shadow: none!important; */
}
.toc-list li {
  background: #F0F1F2 !important;
  border-radius: 20px !important;
  padding-left: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.toc-list li {
  margin-bottom: 16px !important;
}
.toc-container {
  max-height: 70vh !important;
}
.toc-list li a {
  outline: none;
}
.toc-list li a:focus, .toc-list li a:active {
  outline: none;
}
#betterdocs-ia {
  display: none !important;
}
body:not(.rtl) .elementor-3903 .elementor-element.elementor-element-49534bb {
  right: 25px !important;
}
.avatar.avatar-80.photo {
  border-radius: 50px;
}
/* .small_author_box{
	display: flex;
	justify-content: end;
	    max-width: 1081px!important;
} */
.author_container {
  margin: initial !important;
}
.author-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 10px;
  background: #95BCD0 !important;
  border-radius: 9px;
  box-shadow: none !important;
}
.elementor-widget-container .content {
  max-width: 1120px;
  margin: 0 auto;
}
@media screen and (min-width: 1390px) {
  body table.tablepress {
    max-width: 1120px;
    margin: 0 auto;
  }
}
.title-text {
  text-align: center;
}
.elementor-widget-n-menu .e-n-menu-title-text {
  font-size: 16px !important;
}
@media (max-width: 768px) {
  .mb-action-buttons {
    align-self: center !important;
  }
}
/* ===========================================
   RESPONSIBLE GAMING PAGE CSS - GraphThemes
   Colors: #A32E00 (accent red), #95BCD0 (light blue)
   =========================================== */
/* Variables */
.gt-responsible-page {
  --accent-red: #A32E00;
  --accent-red-light: #d36a42;
  --accent-blue: #95BCD0;
  --accent-blue-dark: #6a9db8;
  --text-dark: #222222;
  --text-medium: #555555;
  --text-light: #777777;
  --bg-cream: #F6F3EF;
  --bg-white: #ffffff;
  --bg-dark: #1a1a2e;
  --success-green: #28a745;
  --warning-yellow: #ffc107;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}
/* Base */
.gt-responsible-page {
  font-family: "Spartan", "Segoe UI", sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
}
/* Section Header */
.gt-section-header {
  text-align: center;
  margin-bottom: 50px;
}
.gt-section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 15px 0;
}
.gt-section-header.gt-light h2 {
  color: #fff;
}
.gt-section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-red-light));
  border-radius: 2px;
  margin: 0 auto;
}
.gt-section-header.gt-light .gt-section-divider {
  background: linear-gradient(90deg, var(--accent-blue), #fff);
}
.gt-section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin: 20px auto 0;
  max-width: 650px;
}
.gt-section-header.gt-light .gt-section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}
/* ===== HERO SECTION ===== */
.gt-responsible-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2d2d4a 100%);
  padding: 100px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gt-responsible-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-red));
}
.gt-responsible-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 120%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(149, 188, 208, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.gt-responsible-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.gt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(149, 188, 208, 0.2);
  padding: 10px 25px;
  border-radius: 50px;
  margin-bottom: 25px;
  border: 1px solid rgba(149, 188, 208, 0.3);
}
.gt-hero-badge svg {
  width: 22px;
  height: 22px;
  color: var(--accent-blue);
}
.gt-hero-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.gt-responsible-hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 25px 0;
  line-height: 1.2;
}
.gt-responsible-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.7;
}
/* ===== IMPORTANT NOTICE ===== */
.gt-responsible-notice {
  background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
  padding: 50px 30px;
  border-bottom: 3px solid var(--accent-red);
}
.gt-notice-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.gt-notice-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gt-notice-icon svg {
  width: 35px;
  height: 35px;
  color: #fff;
}
.gt-notice-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-red);
  margin: 0 0 15px 0;
}
.gt-notice-content p {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.8;
}
/* ===== INTRO SECTION ===== */
.gt-responsible-intro {
  padding: 80px 30px;
  background: var(--bg-white);
}
.gt-intro-container {
  max-width: 1100px;
  margin: 0 auto;
}
.gt-intro-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
}
.gt-intro-text p {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin: 0 0 20px 0;
}
.gt-intro-text p:last-child {
  margin-bottom: 0;
}
.gt-intro-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gt-stat-item {
  background: var(--bg-cream);
  padding: 25px 30px;
  border-radius: var(--radius-md);
  text-align: center;
  border-left: 4px solid var(--accent-blue);
}
.gt-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-red);
  line-height: 1;
  margin-bottom: 8px;
}
.gt-stat-label {
  font-size: 0.95rem;
  color: var(--text-medium);
}
/* ===== WARNING SIGNS ===== */
.gt-responsible-signs {
  padding: 80px 30px;
  background: var(--bg-cream);
}
.gt-signs-container {
  max-width: 1100px;
  margin: 0 auto;
}
.gt-signs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.gt-sign-card {
  background: var(--bg-white);
  padding: 35px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid transparent;
}
.gt-sign-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-top-color: var(--accent-red);
}
.gt-sign-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(163, 46, 0, 0.1), rgba(163, 46, 0, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.gt-sign-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent-red);
}
.gt-sign-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 12px 0;
}
.gt-sign-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.6;
}
/* ===== TIPS SECTION ===== */
.gt-responsible-tips {
  padding: 80px 30px;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2d2d4a 100%);
}
.gt-tips-container {
  max-width: 1100px;
  margin: 0 auto;
}
.gt-tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.gt-tip-item {
  display: flex;
  gap: 25px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}
.gt-tip-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-blue);
}
.gt-tip-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-blue);
  line-height: 1;
  opacity: 0.6;
}
.gt-tip-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px 0;
}
.gt-tip-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.6;
}
/* ===== SPELPAUS SECTION ===== */
.gt-responsible-spelpaus {
  padding: 80px 30px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
}
.gt-spelpaus-container {
  max-width: 1000px;
  margin: 0 auto;
}
.gt-spelpaus-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  background: var(--bg-white);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.gt-spelpaus-icon {
  width: 100px;
  height: 100px;
  min-width: 100px;
  background: linear-gradient(135deg, var(--success-green), #20c997);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gt-spelpaus-icon svg {
  width: 50px;
  height: 50px;
  color: #fff;
}
.gt-spelpaus-text h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 20px 0;
}
.gt-spelpaus-text p {
  font-size: 1rem;
  color: var(--text-medium);
  margin: 0 0 15px 0;
  line-height: 1.7;
}
.gt-spelpaus-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--success-green), #20c997);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  margin-top: 15px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}
.gt-spelpaus-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}
.gt-spelpaus-btn svg {
  width: 18px;
  height: 18px;
}
/* ===== HELP ORGANIZATIONS ===== */
.gt-responsible-help {
  padding: 80px 30px;
  background: var(--bg-white);
}
.gt-help-container {
  max-width: 1100px;
  margin: 0 auto;
}
.gt-help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}
.gt-help-card {
  background: var(--bg-cream);
  padding: 35px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.gt-help-card:hover {
  box-shadow: var(--shadow-md);
}
.gt-help-card.gt-help-primary {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
  color: #fff;
  grid-column: 1 / -1;
}
.gt-help-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}
.gt-help-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}
.gt-help-primary h3 {
  color: #fff;
}
.gt-help-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.gt-help-card p {
  font-size: 0.95rem;
  margin: 0 0 20px 0;
  line-height: 1.6;
}
.gt-help-primary p {
  color: rgba(255, 255, 255, 0.9);
}
.gt-help-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.gt-help-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--accent-red);
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}
.gt-help-phone svg {
  width: 20px;
  height: 20px;
}
.gt-help-phone:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}
.gt-help-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.gt-help-primary .gt-help-link {
  color: #fff;
}
.gt-help-card:not(.gt-help-primary) .gt-help-link {
  color: var(--accent-red);
}
.gt-help-link svg {
  width: 16px;
  height: 16px;
}
.gt-help-link:hover {
  text-decoration: underline;
}
/* Emergency Notice */
.gt-help-emergency {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff3cd;
  padding: 25px 35px;
  border-radius: var(--radius-md);
  border-left: 5px solid var(--warning-yellow);
}
.gt-emergency-icon svg {
  width: 35px;
  height: 35px;
  color: #856404;
}
.gt-emergency-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #856404;
  margin: 0 0 5px 0;
}
.gt-emergency-content p {
  font-size: 0.95rem;
  color: #856404;
  margin: 0;
}
.gt-emergency-content a {
  color: #856404;
  font-weight: 700;
}
/* ===== SELF-TEST SECTION ===== */
.gt-responsible-test {
  padding: 80px 30px;
  background: var(--bg-cream);
}
.gt-test-container {
  max-width: 800px;
  margin: 0 auto;
}
.gt-test-content {
  background: var(--bg-white);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.gt-test-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 15px 0;
}
.gt-test-content > p {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin: 0 0 30px 0;
}
.gt-test-questions {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
}
.gt-test-questions li {
  padding: 18px 25px;
  background: var(--bg-cream);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text-medium);
  position: relative;
  padding-left: 55px;
}
.gt-test-questions li::before {
  content: "?";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--accent-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.gt-test-result {
  background: rgba(163, 46, 0, 0.08);
  padding: 25px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text-medium);
  margin: 0 0 30px 0;
  text-align: left;
  border-left: 4px solid var(--accent-red);
}
.gt-test-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(163, 46, 0, 0.3);
}
.gt-test-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(163, 46, 0, 0.4);
}
.gt-test-cta svg {
  width: 22px;
  height: 22px;
}
/* ===== COMMITMENT SECTION ===== */
.gt-responsible-commitment {
  padding: 80px 30px;
  background: var(--bg-white);
}
.gt-commitment-container {
  max-width: 1100px;
  margin: 0 auto;
}
.gt-commitment-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: start;
}
.gt-commitment-text p {
  font-size: 1.05rem;
  color: var(--text-medium);
  margin: 0 0 25px 0;
}
.gt-commitment-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 20px 0;
}
.gt-commitment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gt-commitment-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 1rem;
  color: var(--text-medium);
}
.gt-commitment-list li:last-child {
  border-bottom: none;
}
.gt-commitment-list svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  color: var(--success-green);
  margin-top: 2px;
}
.gt-info-box {
  background: var(--bg-cream);
  padding: 35px;
  border-radius: var(--radius-md);
  margin-bottom: 25px;
}
.gt-info-box h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 15px 0;
}
.gt-info-box > p {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin: 0 0 25px 0;
}
.gt-info-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.gt-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-medium);
}
.gt-info-row svg {
  width: 20px;
  height: 20px;
  color: var(--accent-blue);
}
.gt-info-row a {
  color: var(--accent-red);
  text-decoration: none;
}
.gt-info-row a:hover {
  text-decoration: underline;
}
.gt-badges-box {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.gt-age-badge, .gt-responsible-badge {
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
}
.gt-age-badge {
  background: var(--accent-red);
  color: #fff;
}
.gt-responsible-badge {
  background: var(--accent-blue);
  color: #fff;
}
/* ===== FINAL CTA ===== */
.gt-responsible-cta {
  padding: 80px 30px;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2d2d4a 100%);
  text-align: center;
}
.gt-cta-container {
  max-width: 700px;
  margin: 0 auto;
}
.gt-cta-container h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 15px 0;
}
.gt-cta-container p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 35px 0;
}
.gt-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.gt-cta-primary, .gt-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
}
.gt-cta-primary {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-light));
  color: #fff;
  box-shadow: 0 4px 15px rgba(163, 46, 0, 0.3);
}
.gt-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(163, 46, 0, 0.4);
}
.gt-cta-primary svg {
  width: 22px;
  height: 22px;
}
.gt-cta-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.gt-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-blue);
}
/* ===== RESPONSIVE - Tablet ===== */
@media (max-width: 992px) {
  .gt-responsible-hero {
    padding: 70px 25px;
  }
  .gt-responsible-hero h1 {
    font-size: 2.5rem;
  }
  .gt-intro-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gt-intro-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .gt-stat-item {
    flex: 1;
    min-width: 200px;
  }
  .gt-signs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gt-tips-grid {
    grid-template-columns: 1fr;
  }
  .gt-spelpaus-content {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }
  .gt-spelpaus-icon {
    margin: 0 auto;
  }
  .gt-commitment-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
/* ===== RESPONSIVE - Mobile ===== */
@media (max-width: 768px) {
  .gt-responsible-hero {
    padding: 60px 20px;
  }
  .gt-responsible-hero h1 {
    font-size: 2rem;
  }
  .gt-responsible-hero p {
    font-size: 1.05rem;
  }
  .gt-notice-container {
    flex-direction: column;
    text-align: center;
  }
  .gt-notice-icon {
    margin: 0 auto;
  }
  .gt-section-header h2 {
    font-size: 1.8rem;
  }
  .gt-intro-stats {
    flex-direction: column;
  }
  .gt-stat-item {
    min-width: auto;
  }
  .gt-signs-grid {
    grid-template-columns: 1fr;
  }
  .gt-tip-item {
    flex-direction: column;
    text-align: center;
  }
  .gt-help-grid {
    grid-template-columns: 1fr;
  }
  .gt-help-contact {
    flex-direction: column;
    align-items: flex-start;
  }
  .gt-help-primary .gt-help-contact {
    align-items: center;
  }
  .gt-help-emergency {
    flex-direction: column;
    text-align: center;
  }
  .gt-test-content {
    padding: 35px 25px;
  }
  .gt-test-questions li {
    padding-left: 50px;
  }
  .gt-cta-buttons {
    flex-direction: column;
  }
  .gt-cta-primary, .gt-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}
/* ===== RESPONSIVE - Small Mobile ===== */
@media (max-width: 480px) {
  .gt-responsible-hero {
    padding: 50px 15px;
  }
  .gt-responsible-hero h1 {
    font-size: 1.7rem;
  }
  .gt-hero-badge {
    padding: 8px 18px;
  }
  .gt-hero-badge span {
    font-size: 0.8rem;
  }
  .gt-notice-container {
    padding: 0 10px;
  }
  .gt-notice-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
  .gt-notice-icon svg {
    width: 28px;
    height: 28px;
  }
  .gt-section-header h2 {
    font-size: 1.5rem;
  }
  .gt-stat-number {
    font-size: 2rem;
  }
  .gt-sign-card {
    padding: 25px 20px;
  }
  .gt-tip-item {
    padding: 25px 20px;
  }
  .gt-tip-number {
    font-size: 2rem;
  }
  .gt-spelpaus-content {
    padding: 30px 20px;
  }
  .gt-spelpaus-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
  }
  .gt-spelpaus-icon svg {
    width: 40px;
    height: 40px;
  }
  .gt-spelpaus-text h2 {
    font-size: 1.3rem;
  }
  .gt-help-card {
    padding: 25px 20px;
  }
  .gt-info-box {
    padding: 25px 20px;
  }
  .gt-badges-box {
    flex-direction: column;
    align-items: center;
  }
  .gt-cta-container h2 {
    font-size: 1.7rem;
  }
}
