:root {
  --primary: #2D6BFF;
  --secondary: #1E3A8A;
  --accent: #F4B942;
  --background: #0A1022;
  --surface: #131F3F;
  --textPrimary: #EEF4FF;
  --textSecondary: #B5C2DE;
  --headingFont: 'Cinzel', sans-serif;
  --bodyFont: 'Inter', sans-serif;
  --danger: #e74c3c;
  --success: #2ecc71;
}

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

body.roundafterluck_body {
  font-family: var(--bodyFont);
  background-color: var(--background);
  color: var(--textPrimary);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--headingFont);
  font-weight: 700;
  margin-bottom: 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.roundafterluck_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.roundafterluck_btn_primary, 
.roundafterluck_btn_secondary, 
.roundafterluck_btn_tertiary, 
.roundafterluck_btn_play {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  font-family: var(--headingFont);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  min-height: 44px;
  min-width: 120px;
}

.roundafterluck_btn_primary {
  background-color: var(--accent);
  color: #000;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.roundafterluck_btn_primary:hover {
  background-color: #d49c30;
  transform: translateY(-2px);
}

.roundafterluck_btn_secondary {
  background-color: transparent;
  color: var(--textPrimary);
  border: 2px solid var(--textPrimary);
}

.roundafterluck_btn_secondary:hover {
  background-color: rgba(255,255,255,0.1);
}

.roundafterluck_btn_tertiary {
  background-color: var(--primary);
  color: #fff;
}

.roundafterluck_btn_tertiary:hover {
  background-color: #1a51d1;
}

.roundafterluck_btn_play {
  background-color: var(--accent);
  color: #000;
  width: 100%;
  margin-top: 1rem;
}

.roundafterluck_btn_play:hover:not(:disabled) {
  background-color: #d49c30;
}

.roundafterluck_btn_play:disabled {
  background-color: #555;
  color: #888;
  cursor: not-allowed;
}

.roundafterluck_header {
  background-color: var(--secondary);
  border-bottom: 1px solid rgba(244, 185, 66, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}

.roundafterluck_header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.roundafterluck_logo {
  font-family: var(--headingFont);
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
}

.roundafterluck_nav_list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.roundafterluck_nav_link {
  color: var(--textPrimary);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.roundafterluck_header_actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.roundafterluck_wallet_compact {
  background-color: var(--surface);
  border: 1px solid var(--accent);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.roundafterluck_wallet_amount {
  color: #fff;
}

.roundafterluck_wallet_currency {
  color: var(--accent);
}

.roundafterluck_age_badge {
  background-color: var(--surface);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.8rem;
}

.roundafterluck_burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 101;
}

.roundafterluck_burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--textPrimary);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.roundafterluck_burger span:nth-child(1) { top: 0; }
.roundafterluck_burger span:nth-child(2) { top: 11px; }
.roundafterluck_burger span:nth-child(3) { bottom: 0; }

.roundafterluck_burger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
.roundafterluck_burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.roundafterluck_burger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 11px;
}

.roundafterluck_hero_split {
  display: flex;
  min-height: 80vh;
  background-color: var(--background);
}

.roundafterluck_hero_content {
  flex: 1;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.roundafterluck_hero_trust_strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: var(--textSecondary);
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}

.roundafterluck_hero_title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--textPrimary);
}

.roundafterluck_hero_subtitle {
  font-size: 1.2rem;
  color: var(--textSecondary);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.roundafterluck_hero_visual {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
}

.roundafterluck_hero_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--background) 0%, transparent 100%);
}

.roundafterluck_section_title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--accent);
}

.roundafterluck_section_intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  color: var(--textSecondary);
  font-size: 1.1rem;
}

.roundafterluck_business_model {
  padding: 6rem 0;
  background-color: var(--surface);
}

.roundafterluck_model_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.roundafterluck_model_card {
  background-color: var(--background);
  padding: 2.5rem;
  border-radius: 8px;
  border-top: 4px solid var(--primary);
  transition: transform 0.3s ease;
}

.roundafterluck_model_card:hover {
  transform: translateY(-5px);
}

.roundafterluck_model_card h3 {
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.roundafterluck_live_game_section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--background), var(--surface));
}

.roundafterluck_game_wrapper {
  background-color: var(--background);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.roundafterluck_game_board {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--accent);
  margin-bottom: 1.5rem;
}

.roundafterluck_game_board_wheel {
  aspect-ratio: 1/1;
  max-width: 400px;
  margin: 0 auto 1.5rem auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.roundafterluck_wheel_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.roundafterluck_wheel_pointer {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent);
  font-size: 2rem;
  z-index: 10;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.roundafterluck_reels_container {
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  display: flex;
  gap: 10px;
  background-color: rgba(0,0,0,0.6);
  padding: 10px;
  border-radius: 4px;
}

.roundafterluck_reel {
  flex: 1;
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.roundafterluck_symbol_img {
  width: 80%;
  height: auto;
  object-fit: contain;
  transition: transform 0.1s linear;
}

.roundafterluck_game_controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.roundafterluck_bet_selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255,255,255,0.05);
  padding: 1rem;
  border-radius: 4px;
}

.roundafterluck_bet_selector select {
  background-color: var(--surface);
  color: #fff;
  border: 1px solid var(--accent);
  padding: 0.5rem;
  border-radius: 4px;
  font-family: var(--bodyFont);
  outline: none;
}

.roundafterluck_game_status {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--textSecondary);
  padding: 0.5rem;
  background-color: rgba(0,0,0,0.3);
  border-radius: 4px;
}

.roundafterluck_result_panel {
  font-weight: 500;
  color: #fff;
}

.roundafterluck_center_cta {
  text-align: center;
}

.roundafterluck_economy_guide {
  padding: 6rem 0;
  background-color: var(--background);
}

.roundafterluck_split_content {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.roundafterluck_text_side {
  flex: 1;
}

.roundafterluck_text_side p {
  margin-bottom: 1.5rem;
}

.roundafterluck_feature_list {
  list-style: none;
}

.roundafterluck_feature_list li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.roundafterluck_feature_list li::before {
  content: '→';
  color: var(--accent);
  position: absolute;
  left: 0;
}

.roundafterluck_image_side {
  flex: 1;
}

.roundafterluck_responsive_img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}

.roundafterluck_fair_play_meter {
  padding: 5rem 0;
  background-color: var(--surface);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.roundafterluck_metrics_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.roundafterluck_metric_card {
  padding: 2rem;
}

.roundafterluck_metric_value {
  font-size: 4rem;
  font-family: var(--headingFont);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.roundafterluck_metric_label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  color: var(--textSecondary);
}

.roundafterluck_signature_faction {
  padding: 6rem 0;
  background-color: var(--background);
}

.roundafterluck_faction_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.roundafterluck_faction_card {
  background-color: var(--surface);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.3s ease;
}

.roundafterluck_faction_card:hover {
  border-color: var(--accent);
}

.roundafterluck_faction_card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.roundafterluck_faction_card p {
  margin-bottom: 2rem;
  color: var(--textSecondary);
}

.roundafterluck_faq_section {
  padding: 6rem 0;
  background-color: var(--surface);
}

.roundafterluck_accordion {
  max-width: 800px;
  margin: 0 auto;
}

.roundafterluck_accordion_item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.roundafterluck_accordion_trigger {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  background: none;
  border: none;
  color: var(--textPrimary);
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--bodyFont);
}

.roundafterluck_accordion_trigger::after {
  content: '+';
  color: var(--accent);
  font-size: 1.5rem;
}

.roundafterluck_accordion_trigger[aria-expanded="true"]::after {
  content: '-';
}

.roundafterluck_accordion_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.roundafterluck_accordion_trigger[aria-expanded="true"] + .roundafterluck_accordion_content {
  max-height: 500px;
}

.roundafterluck_accordion_content p {
  padding-bottom: 1.5rem;
  color: var(--textSecondary);
}

.roundafterluck_page_header {
  background-color: var(--surface);
  padding: 4rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(244, 185, 66, 0.2);
}

.roundafterluck_page_title {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.roundafterluck_page_subtitle {
  font-size: 1.2rem;
  color: var(--textSecondary);
  max-width: 600px;
  margin: 0 auto;
}

.roundafterluck_lobby_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.roundafterluck_lobby_masonry {
  flex: 1;
  column-count: 2;
  column-gap: 2rem;
}

.roundafterluck_game_card {
  background-color: var(--surface);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  break-inside: avoid;
  border: 1px solid rgba(255,255,255,0.05);
}

.roundafterluck_game_featured {
  border: 2px solid var(--accent);
}

.roundafterluck_game_title {
  font-size: 1.5rem;
  color: var(--textPrimary);
  margin-bottom: 0.5rem;
}

.roundafterluck_game_desc {
  font-size: 0.9rem;
  color: var(--textSecondary);
  margin-bottom: 1.5rem;
}

.roundafterluck_lobby_sidebar {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.roundafterluck_lore_module {
  background-color: var(--surface);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--primary);
}

.roundafterluck_lore_module h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.roundafterluck_lore_progress {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-style: italic;
  color: var(--textSecondary);
}

.roundafterluck_disclaimer_sticky {
  background-color: rgba(231, 76, 60, 0.1);
  border: 1px solid var(--danger);
  padding: 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  position: sticky;
  top: 100px;
}

.roundafterluck_content_section {
  padding: 4rem 0;
  background-color: var(--background);
}

.roundafterluck_editorial_layout {
  max-width: 800px;
}

.roundafterluck_editorial_layout h2 {
  margin-top: 3rem;
  color: var(--accent);
  font-size: 2rem;
}

.roundafterluck_editorial_layout h2:first-child {
  margin-top: 0;
}

.roundafterluck_editorial_layout p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--textSecondary);
}

.roundafterluck_editorial_layout ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  color: var(--textSecondary);
}

.roundafterluck_editorial_layout li {
  margin-bottom: 0.5rem;
}

.roundafterluck_fact_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.roundafterluck_fact_card {
  background-color: var(--surface);
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
  border-radius: 0 4px 4px 0;
}

.roundafterluck_fact_card h4 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.roundafterluck_fact_card p {
  margin-bottom: 0;
  font-size: 1rem;
}

.roundafterluck_table_wrapper {
  overflow-x: auto;
  margin: 2rem 0;
}

.roundafterluck_table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.roundafterluck_table th, 
.roundafterluck_table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.roundafterluck_table th {
  background-color: var(--surface);
  color: var(--accent);
  font-family: var(--headingFont);
}

.roundafterluck_contact_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.roundafterluck_contact_info h2, 
.roundafterluck_contact_form_wrapper h2 {
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.roundafterluck_contact_details {
  list-style: none;
  margin: 2rem 0;
}

.roundafterluck_contact_details li {
  margin-bottom: 1rem;
  color: var(--textSecondary);
}

.roundafterluck_contact_details strong {
  color: #fff;
}

.roundafterluck_alert_box {
  background-color: rgba(244, 185, 66, 0.1);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  margin-top: 2rem;
}

.roundafterluck_alert_box p {
  margin: 0;
  font-size: 0.95rem;
}

.roundafterluck_form_group {
  margin-bottom: 1.5rem;
}

.roundafterluck_form_group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--textSecondary);
}

.roundafterluck_form_group input, 
.roundafterluck_form_group select, 
.roundafterluck_form_group textarea {
  width: 100%;
  padding: 0.8rem;
  background-color: var(--surface);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 4px;
  font-family: var(--bodyFont);
}

.roundafterluck_form_group input:focus, 
.roundafterluck_form_group select:focus, 
.roundafterluck_form_group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.roundafterluck_helpline_card {
  background-color: var(--surface);
  padding: 2rem;
  border-radius: 8px;
  border-top: 4px solid var(--danger);
  margin-top: 2rem;
}

.roundafterluck_footer {
  background-color: #050811;
  padding: 4rem 0 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.roundafterluck_footer_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.roundafterluck_footer h3, 
.roundafterluck_footer h4 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.roundafterluck_footer p, 
.roundafterluck_footer li {
  color: var(--textSecondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.roundafterluck_footer_links ul {
  list-style: none;
}

.roundafterluck_partner_logos {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.roundafterluck_partner_logos a {
  display: block;
  padding: 0.5rem;
  border-radius: 4px;
  width: 120px;
}

.roundafterluck_partner_link_gamcare {
  background-color: #ffffff;
}

.roundafterluck_partner_link_begambleaware {
  background-color: #111111;
}

.roundafterluck_footer_bottom {
  background-color: #020408;
  text-align: center;
  padding: 1.5rem;
}

.roundafterluck_footer_bottom p {
  margin: 0;
}

.roundafterluck_modal_gate {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.roundafterluck_modal_gate.is-active {
  display: flex;
}

.roundafterluck_modal_gate_content {
  background-color: var(--surface);
  padding: 3rem 2rem;
  border-radius: 8px;
  max-width: 500px;
  text-align: center;
  border: 1px solid var(--accent);
}

.roundafterluck_modal_gate_content h2 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.roundafterluck_modal_gate_content p {
  color: var(--textSecondary);
  margin-bottom: 2rem;
}

.roundafterluck_modal_gate_content button, 
.roundafterluck_modal_gate_content a {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}

.roundafterluck_toast_container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.roundafterluck_toast {
  background-color: var(--surface);
  border-left: 4px solid var(--accent);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  font-family: var(--bodyFont);
  animation: slideInRight 0.3s forwards;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes spinVertical {
  0% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

.is-spinning .roundafterluck_symbol_img {
  animation: spinVertical 0.1s linear infinite;
  filter: blur(2px);
}

@media (max-width: 1024px) {
  .roundafterluck_lobby_container {
    flex-direction: column;
  }
  .roundafterluck_lobby_sidebar {
    width: 100%;
  }
  .roundafterluck_disclaimer_sticky {
    position: static;
  }
}

@media (max-width: 768px) {
  .roundafterluck_nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--secondary);
    padding: 1rem;
    border-bottom: 1px solid var(--accent);
  }
  .roundafterluck_nav.is-open {
    display: block;
  }
  .roundafterluck_nav_list {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .roundafterluck_burger {
    display: block;
  }
  .roundafterluck_hero_split {
    flex-direction: column;
  }
  .roundafterluck_hero_content {
    padding: 3rem 1.5rem;
  }
  .roundafterluck_hero_visual {
    min-height: 300px;
  }
  .roundafterluck_split_content {
    flex-direction: column;
  }
  .roundafterluck_lobby_masonry {
    column-count: 1;
  }
  .roundafterluck_contact_grid {
    grid-template-columns: 1fr;
  }
  .roundafterluck_reels_container {
    gap: 5px;
  }
}

@media (max-width: 360px) {
  .roundafterluck_hero_title {
    font-size: 2.5rem;
  }
  .roundafterluck_wallet_compact {
    padding: 0.3rem 0.5rem;
    font-size: 0.8rem;
  }
}
/* footer-logo-contrast-guard */
a[href*="begambleaware.org"] img,
a[href*="begambleaware.org"] picture,
a[href*="begambleaware.org"] .partner-logo,
img[src*="gambleaware"],
img[alt*="BeGambleAware" i],
img[alt*="GambleAware" i] {
  background: #111111 !important;
  padding: 0.45rem 0.7rem !important;
  border-radius: 0.7rem !important;
  box-sizing: border-box !important;
}

a[href*="gamcare.org"] img,
a[href*="gamcare.org"] picture,
a[href*="gamcare.org"] .partner-logo,
img[src*="gamcare"],
img[alt*="GamCare" i] {
  background: #ffffff !important;
  padding: 0.45rem 0.7rem !important;
  border-radius: 0.7rem !important;
  box-sizing: border-box !important;
}

a[href*="begambleaware.org"],
a[href*="gamcare.org"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
