:root {
  --rs-primary: #FF9F43;
  --rs-secondary: #F76F5E;
  --rs-accent: #FFE082;
  --rs-bg: #141127;
  --rs-surface: #221B3A;
  --rs-text-main: #FFF6EA;
  --rs-text-muted: #D8C4AF;
  --rs-font-heading: 'Playfair Display', serif;
  --rs-font-body: 'Lato', sans-serif;
  --rs-radius: 12px;
  --rs-transition: 0.3s ease;
}

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

body.roundstride_body {
  font-family: var(--rs-font-body);
  background-color: var(--rs-bg);
  color: var(--rs-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--rs-primary);
  text-decoration: none;
  transition: color var(--rs-transition);
}

a:hover {
  color: var(--rs-accent);
}

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

.roundstride_container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.roundstride_header {
  background-color: var(--rs-surface);
  border-bottom: 1px solid rgba(255, 159, 67, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

.roundstride_header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.roundstride_logo a {
  font-family: var(--rs-font-heading);
  font-size: 1.5rem;
  color: var(--rs-accent);
  font-weight: 700;
}

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

.roundstride_nav_list a {
  color: var(--rs-text-main);
  font-weight: 600;
}

.roundstride_nav_list a.is-active, .roundstride_nav_list a:hover {
  color: var(--rs-primary);
}

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

.roundstride_header_balance {
  font-weight: 700;
  color: var(--rs-accent);
  background: rgba(0,0,0,0.3);
  padding: 0.5rem 1rem;
  border-radius: var(--rs-radius);
}

.roundstride_burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
}

.roundstride_burger_line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--rs-text-main);
  border-radius: 2px;
  transition: var(--rs-transition);
}

.roundstride_btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--rs-font-body);
  font-weight: 700;
  text-align: center;
  border-radius: var(--rs-radius);
  cursor: pointer;
  border: none;
  transition: var(--rs-transition);
}

.roundstride_btn_primary {
  background-color: var(--rs-primary);
  color: #000;
}

.roundstride_btn_primary:hover {
  background-color: var(--rs-accent);
}

.roundstride_btn_secondary {
  background-color: var(--rs-surface);
  color: var(--rs-primary);
  border: 1px solid var(--rs-primary);
}

.roundstride_btn_ghost {
  background: transparent;
  color: var(--rs-text-main);
}

.roundstride_btn_ghost:hover {
  color: var(--rs-primary);
}

.roundstride_btn_outline {
  background: transparent;
  border: 2px solid var(--rs-primary);
  color: var(--rs-primary);
}

.roundstride_btn_large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.roundstride_btn_full {
  width: 100%;
}

.roundstride_hero_solid {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, var(--rs-bg) 0%, var(--rs-surface) 100%);
}

.roundstride_hero_content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.roundstride_hero_badge {
  display: inline-block;
  background: rgba(255, 159, 67, 0.1);
  color: var(--rs-primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 159, 67, 0.3);
}

.roundstride_hero_title {
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--rs-accent);
}

.roundstride_hero_subtitle {
  font-size: 1.2rem;
  color: var(--rs-text-muted);
  margin-bottom: 2rem;
}

.roundstride_hero_cta_group {
  display: flex;
  gap: 1rem;
}

.roundstride_hero_framed_panel {
  position: relative;
  border-radius: var(--rs-radius);
  padding: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.roundstride_hero_img {
  border-radius: var(--rs-radius);
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.roundstride_floating_proof_card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--rs-surface);
  padding: 1rem 1.5rem;
  border-radius: var(--rs-radius);
  border: 1px solid var(--rs-primary);
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.roundstride_proof_value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rs-accent);
}

.roundstride_proof_label {
  font-size: 0.85rem;
  color: var(--rs-text-muted);
}

.roundstride_home_live_game_section {
  padding: 5rem 0;
  background: var(--rs-bg);
}

.roundstride_section_header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.roundstride_section_header h2 {
  color: var(--rs-accent);
  font-size: 2.5rem;
}

.roundstride_home_live_game_wrapper {
  max-width: 400px;
  margin: 0 auto 2rem;
}

.roundstride_home_live_game_cta {
  text-align: center;
}

.roundstride_game_module {
  background: var(--rs-surface);
  border-radius: var(--rs-radius);
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.roundstride_game_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 0.5rem;
}

.roundstride_game_title {
  margin: 0;
  font-size: 1.2rem;
  color: var(--rs-accent);
}

.roundstride_game_balance_mirror, .roundstride_payout_hint {
  font-size: 0.9rem;
  color: var(--rs-primary);
  font-weight: 700;
}

.roundstride_wheel_container {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto 1.5rem;
}

.roundstride_wheel_pointer {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 25px solid var(--rs-accent);
  z-index: 10;
}

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

.roundstride_slot_board {
  display: flex;
  gap: 10px;
  background: #000;
  padding: 10px;
  border-radius: 8px;
  position: relative;
  margin-bottom: 1.5rem;
  border: 2px solid var(--rs-accent);
}

.roundstride_payline {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 159, 67, 0.5);
  transform: translateY(-50%);
  z-index: 5;
}

.roundstride_reel {
  flex: 1;
  background: #111;
  height: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.roundstride_reel img {
  max-height: 80px;
  width: auto;
}

.roundstride_game_controls {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: flex-end;
}

.roundstride_bet_selector {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.roundstride_bet_selector label {
  font-size: 0.8rem;
  color: var(--rs-text-muted);
  margin-bottom: 0.25rem;
}

.roundstride_bet_select {
  padding: 0.5rem;
  border-radius: 4px;
  background: #000;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.roundstride_btn_spin {
  background: var(--rs-secondary);
  color: #fff;
  flex: 1;
}

.roundstride_game_result_panel {
  background: rgba(0,0,0,0.3);
  padding: 1rem;
  text-align: center;
  border-radius: 4px;
  font-weight: 700;
  min-height: 48px;
}

.roundstride_game_history {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--rs-text-muted);
  text-align: center;
}

.roundstride_home_block {
  padding: 4rem 0;
}

.roundstride_home_block:nth-child(even) {
  background: rgba(255,255,255,0.02);
}

.roundstride_split_layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.roundstride_layout_reverse {
  direction: rtl;
}

.roundstride_layout_reverse > * {
  direction: ltr;
}

.roundstride_split_text h2 {
  color: var(--rs-accent);
}

.roundstride_feature_list {
  margin-top: 1.5rem;
  list-style: none;
}

.roundstride_feature_list li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.roundstride_feature_list li::before {
  content: '→';
  color: var(--rs-primary);
  position: absolute;
  left: 0;
}

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

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

.roundstride_cal_day {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--rs-text-muted);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.roundstride_cal_event {
  font-weight: 700;
  color: #fff;
}

.roundstride_center_header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.roundstride_grid_three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.roundstride_info_card {
  background: var(--rs-surface);
  padding: 2rem;
  border-radius: var(--rs-radius);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
}

.roundstride_info_card h3 {
  color: var(--rs-accent);
}

.roundstride_myth_item {
  background: rgba(0,0,0,0.2);
  padding: 1.5rem;
  border-radius: var(--rs-radius);
  margin-bottom: 1.5rem;
}

.roundstride_myth_badge, .roundstride_fact_badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.roundstride_myth_badge {
  background: #333;
  color: #ccc;
}

.roundstride_fact_badge {
  background: rgba(255, 159, 67, 0.2);
  color: var(--rs-primary);
  margin-top: 1rem;
}

.roundstride_img_fluid {
  border-radius: var(--rs-radius);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.roundstride_timeline_rail {
  max-width: 600px;
  margin: 0 auto;
  border-left: 2px solid rgba(255,255,255,0.1);
  padding-left: 2rem;
}

.roundstride_timeline_item {
  position: relative;
  margin-bottom: 3rem;
}

.roundstride_timeline_marker {
  position: absolute;
  left: -2.8rem;
  top: 0;
  width: 30px;
  height: 30px;
  background: var(--rs-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 700;
}

.roundstride_timeline_content h4 {
  color: var(--rs-accent);
  margin-bottom: 0.5rem;
}

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

.roundstride_faq_item {
  background: var(--rs-surface);
  margin-bottom: 1rem;
  border-radius: var(--rs-radius);
  overflow: hidden;
}

.roundstride_faq_trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-weight: 700;
  font-family: var(--rs-font-body);
  cursor: pointer;
  text-align: left;
}

.roundstride_faq_content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.roundstride_faq_item.is-open .roundstride_faq_content {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}

.roundstride_faq_item.is-open .roundstride_faq_icon {
  transform: rotate(45deg);
}

.roundstride_lobby_layout {
  padding: 2rem 0;
}

.roundstride_lobby_container {
  display: flex;
  gap: 2rem;
}

.roundstride_wallet_sidebar {
  width: 300px;
  flex-shrink: 0;
}

.roundstride_wallet_panel, .roundstride_achievements_panel {
  background: var(--rs-surface);
  padding: 1.5rem;
  border-radius: var(--rs-radius);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.05);
}

.roundstride_wallet_title {
  font-size: 1rem;
  color: var(--rs-text-muted);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.roundstride_wallet_balance {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.roundstride_currency_symbol {
  color: var(--rs-primary);
  font-weight: 700;
}

.roundstride_balance_amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

.roundstride_wallet_notice {
  font-size: 0.8rem;
  color: var(--rs-text-muted);
  margin-bottom: 1.5rem;
}

.roundstride_achievements_list {
  list-style: none;
}

.roundstride_achievement_item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}

.roundstride_ach_reward {
  color: var(--rs-primary);
}

.roundstride_lobby_main {
  flex: 1;
}

.roundstride_page_header {
  margin-bottom: 2rem;
}

.roundstride_page_header h1 {
  color: var(--rs-accent);
  font-size: 2.5rem;
}

.roundstride_game_card {
  background: var(--rs-surface);
  border-radius: var(--rs-radius);
  overflow: hidden;
  transition: transform var(--rs-transition);
  border: 1px solid rgba(255,255,255,0.05);
}

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

.roundstride_game_card_media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.roundstride_game_card_content {
  padding: 1.5rem;
}

.roundstride_game_card_content h3 {
  margin-bottom: 0.5rem;
}

.roundstride_game_card_content p {
  color: var(--rs-text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.roundstride_active_game_area {
  background: rgba(0,0,0,0.2);
  padding: 2rem;
  border-radius: var(--rs-radius);
}

.roundstride_close_game {
  margin-bottom: 1rem;
}

.roundstride_page_hero {
  text-align: center;
  padding: 4rem 1.5rem;
  background: linear-gradient(to bottom, var(--rs-surface), var(--rs-bg));
}

.roundstride_notice_box {
  display: inline-block;
  background: rgba(255, 159, 67, 0.1);
  border: 1px solid var(--rs-primary);
  padding: 1rem 2rem;
  border-radius: 4px;
  margin-top: 1.5rem;
  font-weight: 700;
}

.roundstride_bazaar_section {
  padding: 2rem 0 5rem;
}

.roundstride_rank_progress {
  background: var(--rs-surface);
  padding: 2rem;
  border-radius: var(--rs-radius);
  margin-bottom: 3rem;
  text-align: center;
}

.roundstride_progress_bar {
  height: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 5px;
  margin: 1rem auto;
  max-width: 500px;
  overflow: hidden;
}

.roundstride_progress_fill {
  height: 100%;
  background: var(--rs-primary);
  transition: width 0.5s ease;
}

.roundstride_shop_item {
  background: var(--rs-surface);
  padding: 1.5rem;
  border-radius: var(--rs-radius);
  text-align: center;
}

.roundstride_shop_img_placeholder {
  height: 120px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.roundstride_longform_container, .roundstride_policy_container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.roundstride_content_block, .roundstride_policy_content {
  margin-bottom: 3rem;
}

.roundstride_policy_content h2 {
  margin-top: 2rem;
  color: var(--rs-accent);
}

.roundstride_policy_content p {
  margin-bottom: 1rem;
}

.roundstride_form_group {
  margin-bottom: 1.5rem;
}

.roundstride_form_group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.roundstride_form_group input, .roundstride_form_group textarea {
  width: 100%;
  padding: 0.75rem;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 4px;
  font-family: var(--rs-font-body);
}

.roundstride_footer {
  background: var(--rs-surface);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.roundstride_footer_top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.roundstride_footer_brand h3 {
  color: var(--rs-accent);
}

.roundstride_easter_egg_trigger {
  margin-top: 1rem;
  cursor: pointer;
  opacity: 0.3;
  transition: opacity 0.3s;
}

.roundstride_easter_egg_trigger:hover {
  opacity: 1;
}

.roundstride_footer_links_group ul {
  list-style: none;
}

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

.roundstride_footer_links_group a {
  color: var(--rs-text-muted);
}

.roundstride_footer_links_group a:hover {
  color: var(--rs-primary);
}

.roundstride_footer_commitment, .roundstride_footer_disclaimer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--rs-text-muted);
}

.roundstride_footer_partners {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.roundstride_partner_link {
  display: block;
  padding: 10px;
  border-radius: 4px;
}

.roundstride_partner_light {
  background: #fff;
}

.roundstride_partner_dark {
  background: #222;
}

.roundstride_partner_link img {
  height: 40px;
  width: auto;
}

.roundstride_footer_bottom {
  text-align: center;
  font-size: 0.8rem;
  color: var(--rs-text-muted);
}

.roundstride_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.roundstride_modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.roundstride_modal_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
}

.roundstride_modal_content {
  position: relative;
  background: var(--rs-surface);
  padding: 2.5rem;
  border-radius: var(--rs-radius);
  width: 100%;
  max-width: 400px;
  border: 1px solid var(--rs-primary);
}

.roundstride_modal_close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.roundstride_age_gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--rs-bg);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.roundstride_age_gate.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.roundstride_age_gate_content {
  text-align: center;
  max-width: 600px;
  padding: 2rem;
}

.roundstride_age_warning {
  color: var(--rs-secondary);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 2rem 0;
}

.roundstride_age_gate_actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.roundstride_partner_logos_gate {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.roundstride_partner_logos_gate img {
  background: #fff;
  padding: 5px;
  border-radius: 4px;
}

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

.roundstride_toast {
  background: var(--rs-surface);
  color: #fff;
  padding: 1rem;
  border-radius: 4px;
  border-left: 4px solid var(--rs-primary);
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  animation: slideIn 0.3s ease forwards;
}

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

@media (max-width: 1024px) {
  .roundstride_lobby_container {
    flex-direction: column;
  }
  .roundstride_wallet_sidebar {
    width: 100%;
    display: flex;
    gap: 1rem;
  }
  .roundstride_wallet_panel, .roundstride_achievements_panel {
    flex: 1;
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .roundstride_hero_content, .roundstride_split_layout, .roundstride_grid_three, .roundstride_footer_top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .roundstride_hero_title {
    font-size: 2.5rem;
  }
  .roundstride_nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--rs-surface);
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .roundstride_nav.is-open {
    display: block;
  }
  .roundstride_nav_list {
    flex-direction: column;
    gap: 1rem;
  }
  .roundstride_burger {
    display: flex;
  }
  .roundstride_wallet_sidebar {
    flex-direction: column;
  }
  .roundstride_game_controls {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 360px) {
  .roundstride_hero_cta_group, .roundstride_age_gate_actions {
    flex-direction: column;
  }
  .roundstride_hero_title {
    font-size: 2rem;
  }
}
/* 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;
}
