/*
Theme Name: LFMTE Sidebar Theme - Tiger Hits
Theme URI: http://thetrafficexchangescript.com/
Description: Tiger-Hits bright success/growth sidebar theme for LFMTE traffic exchanges.
Version: 4.0-bright
Author: Josh Abbott / Custom Tiger-Hits Styling
*/

@charset "utf-8";

/* ======================================================
   TIGER HITS - Bright Success / Growth Theme
====================================================== */

:root {
    --th-primary: #2563EB;
    --th-primary-dark: #1D4ED8;
    --th-primary-light: #DBEAFE;

    --th-secondary: #22C55E;
    --th-secondary-dark: #16A34A;
    --th-secondary-light: #DCFCE7;

    --th-accent: #FACC15;
    --th-accent-dark: #EAB308;
    --th-accent-light: #FEF9C3;

    --th-bg: #F8FBFF;
    --th-bg-soft: #EEF7FF;
    --th-card-bg: #FFFFFF;
    --th-border: #E2E8F0;

    --th-text: #1E293B;
    --th-text-muted: #64748B;
    --th-white: #FFFFFF;

    --th-danger: #EF4444;
    --th-radius: 18px;
    --th-shadow: 0 8px 24px rgba(37, 99, 235, 0.10);
}

/* Main font settings */
body {
    font-size: 16px;
    font-weight: 400;
    color: var(--th-text);
    background:
        radial-gradient(circle at top center, rgba(34, 197, 94, 0.12), transparent 35%),
        linear-gradient(180deg, var(--th-bg) 0%, var(--th-bg-soft) 55%, #FFFFFF 100%);
}

/* Main page structure */
.lfm_outerdiv {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.main {
    width: 100%;
    background: transparent;
}

/* Site logo styles */
.lfm_menu_logo {
    max-height: 42px;
    margin: 0.6rem 1.2rem 0.5rem;
}

/* Top bar */
.lfm_topbar {
    background: linear-gradient(135deg, var(--th-primary) 0%, var(--th-secondary) 100%);
    color: var(--th-white);
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255,255,255,0.30);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.22);
    font-weight: bold;
}

.lfm_topbar a {
    color: var(--th-white);
}

.lfm_topbar a:hover {
    color: var(--th-accent-light);
}

/* Sidebar navigation */
.lfm_slidebar {
    min-width: 225px;
    max-width: 225px;
    min-height: 100vh;
    transition: all 0.4s ease-in-out;
    background:
        radial-gradient(circle at top, rgba(37, 99, 235, 0.10), transparent 42%),
        linear-gradient(180deg, #FFFFFF 0%, #F1F8FF 100%);
    border-right: 1px solid var(--th-border);
    box-shadow: 4px 0 18px rgba(37, 99, 235, 0.10);
}

/* Desktop View */
@media (min-width: 890px) {
    .lfm_slidebar {
        margin-left: 0;
    }

    .lfm_slidebar.toggled {
        margin-left: -225px;
    }
}

/* Mobile View */
@media (max-width: 889px) {
    .lfm_slidebar {
        margin-left: -225px;
    }

    .lfm_slidebar.toggled {
        margin-left: 0;
    }
}

.lfm_slidebar_toggleswitch {
    cursor: pointer;
    font-size: 24px;
    color: var(--th-white);
    padding-right: 10px;
}

.lfm_slidebar_toggleswitch:hover {
    color: var(--th-accent);
}

.lfm_slidebar_mainmenu {
    list-style: none;
    padding-left: 0;
    overflow: auto;
    margin: 0;
}

/* Sidebar menu items */
.lfm_slidebar_mainmenu li > a {
    color: var(--th-text);
    background: #FFFFFF;
    border-bottom: 1px solid var(--th-border);
    text-decoration: none;
    display: block;
    margin: 0;
    padding: 0.62rem 1.1rem;
    font-size: 15px;
    position: relative;
    font-weight: 700;
    cursor: pointer;
}

.lfm_slidebar_mainmenu li > a.active,
.lfm_slidebar_mainmenu li > a:hover {
    color: var(--th-white);
    background: linear-gradient(135deg, var(--th-primary) 0%, var(--th-secondary) 100%);
    text-decoration: none;
}

/* Icon settings */
.far,
.fas {
    margin-right: 3px;
}

.feedicon {
    color: var(--th-secondary);
    font-size: 20px;
    margin-right: 5px;
}

/* Profile picture sizes */
.profilepic_small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.profilepic_med {
    width: 75px;
    height: 75px;
    border-radius: 50%;
}

.profilepic_large {
    width: 200px;
    height: 200px;
    border-radius: 14px;
}

/* Button-style links */
.buttonlink {
    cursor: pointer;
    background: linear-gradient(135deg, var(--th-secondary) 0%, var(--th-secondary-dark) 100%);
    border-radius: 12px;
    border: none;
    display: inline-block;
    color: var(--th-white) !important;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 800;
    padding: 9px 16px;
    margin: 3px 2px;
    text-decoration: none;
    box-shadow: 0 5px 14px rgba(34, 197, 94, 0.28);
}

.buttonlink:hover {
    color: var(--th-white) !important;
    background: linear-gradient(135deg, var(--th-primary) 0%, var(--th-primary-dark) 100%);
    text-decoration: none;
    transform: translateY(1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* Full-width information bar */
.infobar {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    color: var(--th-text);
    background: linear-gradient(180deg, var(--th-primary-light) 0%, #FFFFFF 100%);
    border-top: 1px solid var(--th-border);
    border-bottom: 1px solid var(--th-border);
}

.infobar h2 {
    color: var(--th-primary-dark);
}

/* Vertically center Bootstrap rows */
.vcenter {
    display: flex;
    align-items: center;
}

/* Text styles */
.lfm_title {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--th-primary-dark);
    font-size: 32px;
    font-weight: 800;
}

.lfm_descr {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--th-text);
    font-size: 16px;
}

.lfm_descr_bold {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--th-text);
    font-size: 16px;
    font-weight: 700;
}

/* General Tiger-Hits content card */
.tiger-card,
.lion-content-card,
.lion-signup-steps,
.lion-confirm-delete-card,
.lion-deleted-card,
.lion-suspended-card,
.lion-square-banner-card,
.lion-bounce-warning,
.lion-profile-card,
.lion-icon-collection-card {
    max-width: 900px;
    margin: 30px auto;
    padding: 28px 34px;
    background: var(--th-card-bg);
    border: 1px solid var(--th-border);
    border-radius: var(--th-radius);
    box-shadow: var(--th-shadow);
    color: var(--th-text);
}

/* Headings inside cards */
.tiger-card h1,
.tiger-card h2,
.tiger-card h3,
.lion-content-card h1,
.lion-content-card h2,
.lion-content-card h3 {
    color: var(--th-primary-dark);
}

/* Warning/highlight boxes */
.tiger-warning-box,
.lion-warning-box {
    margin: 14px 0;
    padding: 12px 14px;
    background: var(--th-accent-light);
    color: var(--th-text);
    border: 1px solid var(--th-accent-dark);
    border-radius: 12px;
    font-weight: bold;
    line-height: 1.5;
    text-align: left;
}

/* Links */
a {
    color: var(--th-primary);
    font-weight: 600;
}

a:hover {
    color: var(--th-secondary-dark);
}

/* Form controls */
input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
    border: 1px solid var(--th-border);
    border-radius: 10px;
    padding: 9px 11px;
    color: var(--th-text);
    background: #FFFFFF;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--th-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
}

input[type="submit"],
button {
    background: linear-gradient(135deg, var(--th-secondary) 0%, var(--th-secondary-dark) 100%);
    color: var(--th-white);
    border: none;
    border-radius: 12px;
    font-weight: 800;
    padding: 9px 18px;
    cursor: pointer;
    box-shadow: 0 5px 14px rgba(34, 197, 94, 0.25);
}

input[type="submit"]:hover,
button:hover {
    background: linear-gradient(135deg, var(--th-primary) 0%, var(--th-primary-dark) 100%);
    color: var(--th-white);
}

/* Tables */
table {
    color: var(--th-text);
}

th {
    background: var(--th-primary);
    color: var(--th-white);
}

td {
    color: var(--th-text);
}

/* Responsive */
@media (max-width: 700px) {
    .tiger-card,
    .lion-content-card,
    .lion-signup-steps,
    .lion-confirm-delete-card,
    .lion-deleted-card,
    .lion-suspended-card,
    .lion-square-banner-card,
    .lion-bounce-warning,
    .lion-profile-card,
    .lion-icon-collection-card {
        margin: 20px 10px;
        padding: 22px 18px;
    }

    .lfm_title {
        font-size: 26px;
    }
}

/* ======================================================
   Tiger-Hits Sales Page
====================================================== */

.tiger-sales-page {
    max-width: 980px;
    margin: 30px auto;
    padding: 0 16px;
}

.tiger-hero-card,
.tiger-sales-card,
.tiger-final-card {
    margin: 24px auto;
    padding: 30px 34px;
    background:
        radial-gradient(circle at top, rgba(250, 204, 21, 0.20), transparent 45%),
        linear-gradient(180deg, #FFFFFF 0%, #F8FBFF 100%);
    border: 1px solid var(--th-border);
    border-radius: var(--th-radius);
    box-shadow: var(--th-shadow);
    color: var(--th-text);
    text-align: left;
}

.tiger-hero-card {
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(34, 197, 94, 0.18), transparent 45%),
        linear-gradient(135deg, #FFFFFF 0%, #EEF7FF 100%);
}

.tiger-hero-card h1 {
    margin: 0 0 8px;
    color: var(--th-primary-dark);
    font-size: 38px;
    text-transform: uppercase;
}

.tiger-hero-card h2,
.tiger-sales-card h2,
.tiger-final-card h2 {
    color: var(--th-primary-dark);
    font-size: 26px;
    margin: 0 0 18px;
    text-align: center;
}

.tiger-sales-page p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--th-text);
}

.tiger-bonus-box {
    margin: 20px auto;
    padding: 16px 18px;
    background: var(--th-accent-light);
    color: var(--th-text);
    border: 1px solid var(--th-accent-dark);
    border-radius: 14px;
    font-weight: 900;
    line-height: 1.6;
    text-align: center;
}

.tiger-cta {
    display: inline-block;
    margin: 18px auto 0;
    font-size: 20px;
    text-align: center;
}

.tiger-feature-list {
    max-width: 650px;
    margin: 20px auto;
    padding-left: 24px;
    font-size: 17px;
    line-height: 1.8;
}

.tiger-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin: 22px auto;
}

.tiger-feature-grid div {
    padding: 14px 16px;
    background: #FFFFFF;
    border: 1px solid var(--th-border);
    border-radius: 14px;
    color: var(--th-text);
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.08);
}

.tiger-image-center {
    text-align: center;
    margin: 20px auto;
}

.tiger-image-center img {
    max-width: 100%;
    height: auto;
    border: 0;
    border-radius: 14px;
}

.tiger-final-card {
    text-align: center;
    background: linear-gradient(135deg, var(--th-primary) 0%, var(--th-secondary) 100%);
    color: var(--th-white);
    border: none;
}

.tiger-final-card h2,
.tiger-final-card p {
    color: var(--th-white);
}

.tiger-terms {
    margin-top: 24px;
    font-size: 14px;
}

.tiger-terms a {
    color: var(--th-accent-light);
    font-weight: bold;
}

.tiger-terms a:hover {
    color: var(--th-white);
}

@media (max-width: 700px) {
    .tiger-hero-card,
    .tiger-sales-card,
    .tiger-final-card {
        padding: 22px 18px;
    }

    .tiger-hero-card h1 {
        font-size: 28px;
    }

    .tiger-hero-card h2,
    .tiger-sales-card h2,
    .tiger-final-card h2 {
        font-size: 22px;
    }
}

/* ======================================================
   Tiger Sidebar Extras
====================================================== */

.tiger-sidebar-extras {
    padding: 14px 10px 20px;
    text-align: center;
}

.tiger-sidebar-box {
    margin: 14px auto;
    padding: 14px 10px;
    width: 100%;
    max-width: 200px;
    background: #FFFFFF;
    border: 1px solid var(--th-border);
    border-radius: 14px;
    box-shadow: 0 5px 16px rgba(37, 99, 235, 0.10);
    color: var(--th-text);
    font-size: 14px;
    line-height: 1.5;
}

.tiger-sidebar-box p {
    margin: 6px 0;
    color: var(--th-text);
}

.tiger-sidebar-box a {
    color: var(--th-primary);
    font-weight: bold;
    text-decoration: none;
}

.tiger-sidebar-box a:hover {
    color: var(--th-secondary-dark);
}

.tiger-legal-links a {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.tiger-terms-links {
    font-size: 12px;
    line-height: 1.7;
}

.tiger-terms-links a {
    display: inline;
    color: var(--th-primary);
}

.tiger-sidebar-ad {
    margin: 14px auto;
    width: 100%;
    max-width: 200px;
    text-align: center;
}

.tiger-sidebar-ad img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    border: 1px solid var(--th-border);
    box-shadow: 0 5px 16px rgba(37, 99, 235, 0.10);
}

/* ======================================================
   Tiger-Hits Form Label Visibility Fix
====================================================== */

.formlabelbold,
label,
td,
.lfm_descr,
.lfm_descr_bold {
    color: var(--th-text) !important;
}

.main .formlabelbold,
.main label {
    color: var(--th-primary-dark) !important;
    font-weight: bold;
}

.main td {
    color: var(--th-text);
}

.main input,
.main select,
.main textarea {
    color: var(--th-text) !important;
    background: #FFFFFF !important;
}

/* Keep text readable inside Tiger cards */
.tiger-card,
.tiger-card td,
.tiger-card label,
.tiger-card .formlabelbold,
.lion-content-card,
.lion-content-card td,
.lion-content-card label,
.lion-content-card .formlabelbold {
    color: var(--th-text) !important;
}

/* Utility highlights */
.tiger-success-box {
    background: var(--th-secondary-light);
    border: 1px solid var(--th-secondary);
    color: var(--th-text);
    border-radius: 14px;
    padding: 14px 16px;
    font-weight: 700;
}

.tiger-info-box {
    background: var(--th-primary-light);
    border: 1px solid var(--th-primary);
    color: var(--th-text);
    border-radius: 14px;
    padding: 14px 16px;
    font-weight: 700;
}

.tiger-reward-badge {
    display: inline-block;
    background: var(--th-accent);
    color: var(--th-text);
    border-radius: 999px;
    padding: 6px 12px;
    font-weight: 900;
}

.fc-vtg-container {
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

/* =========================================
   TIGER-HITS LOGIN PAGE
========================================= */

.tiger-login-hero-section {
  padding: 50px 20px;
  background: linear-gradient(135deg, #fff4df 0%, #ffffff 48%, #ffe0b2 100%);
}

.tiger-login-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tiger-login-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 35px;
  align-items: center;
}

/* LEFT SIDE */

.tiger-login-hero-content {
  padding: 28px;
  background: #ffffff;
  border: 2px solid #ffd08a;
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(242,107,33,0.14);
}

.tiger-login-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff8c00, #f26b21);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(255,140,0,0.25);
}

.tiger-login-title {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 900;
  color: #f26b21;
  margin-bottom: 20px;
}

.tiger-login-text {
  font-size: 17px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 18px;
}

.tiger-login-banner {
  margin: 25px 0;
  padding: 18px;
  background: #fff8ef;
  border: 1px solid #ffd08a;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(242,107,33,0.12);
  text-align: center;
}

.tiger-login-banner img {
  max-width: 100%;
  height: auto;
}

.tiger-login-support-note {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  background: #fff4df;
  border-left: 5px solid #ff8c00;
  padding: 14px 16px;
  border-radius: 12px;
}

.tiger-login-support-note a {
  color: #f26b21;
  font-weight: 800;
  text-decoration: none;
}

.tiger-login-support-note a:hover {
  color: #d35400;
  text-decoration: underline;
}

/* LOGIN CARD */

.tiger-login-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(242,107,33,0.18);
  border: 2px solid #ffd08a;
}

.tiger-login-card-title {
  font-size: 30px;
  font-weight: 900;
  color: #f26b21;
  margin-bottom: 8px;
  text-align: center;
}

.tiger-login-card-subtitle {
  text-align: center;
  font-size: 15px;
  color: #555555;
  margin-bottom: 25px;
}

.tiger-login-error {
  background: #fff1f1;
  color: #9b1c1c;
  padding: 14px;
  border: 1px solid #f0a0a0;
  border-radius: 12px;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

.tiger-login-error:empty {
  display: none;
}

.tiger-login-form {
  width: 100%;
}

.tiger-form-group {
  margin-bottom: 20px;
}

.tiger-form-label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #333333;
  margin-bottom: 8px;
}

.tiger-form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #ffd08a;
  border-radius: 14px;
  font-size: 15px;
  background: #ffffff;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.tiger-form-control:focus {
  outline: none;
  border-color: #f26b21;
  box-shadow: 0 0 0 4px rgba(242,107,33,0.16);
}

.tiger-login-actions {
  margin-top: 10px;
}

.tiger-login-btn-primary {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8c00, #f26b21);
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 12px 25px rgba(255,140,0,0.25);
}

.tiger-login-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255,140,0,0.35);
}

.tiger-login-links {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.8;
}

.tiger-login-links a {
  color: #f26b21;
  font-weight: 800;
  text-decoration: none;
}

.tiger-login-links a:hover {
  color: #d35400;
  text-decoration: underline;
}

.tiger-link-sep {
  margin: 0 8px;
  color: #c9a166;
}

/* ADMIN SECTION */

.tiger-login-admin-section {
  padding: 30px 20px;
  background: #ffffff;
}

.tiger-login-admin-card {
  display: flex;
  gap: 25px;
  align-items: stretch;
  background: #ffffff;
  border: 2px solid #ffd08a;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 12px 35px rgba(242,107,33,0.14);
}

.tiger-admin-photo-wrap {
  flex-shrink: 0;
}

.tiger-admin-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
  border: 4px solid #ff8c00;
}

.tiger-admin-box {
  flex: 1;
}

.tiger-admin-title {
  font-size: 18px;
  font-weight: 900;
  color: #f26b21;
  margin-bottom: 15px;
}

.tiger-admin-text {
  line-height: 1.8;
  color: #333333;
  font-size: 15px;
}

.tiger-admin-text a {
  color: #f26b21;
  font-weight: 800;
  text-decoration: none;
}

.tiger-admin-text a:hover {
  color: #d35400;
  text-decoration: underline;
}

.tiger-disclaimer-box {
  flex: 1.4;
  background: #fff4df;
  border-left: 5px solid #ff8c00;
  padding: 20px;
  border-radius: 16px;
}

.tiger-disclaimer-text {
  font-size: 14px;
  line-height: 1.7;
  color: #333333;
}

.tiger-disclaimer-text a {
  color: #f26b21;
  font-weight: 800;
}

/* SECURITY SECTION */

.tiger-login-security-section {
  padding: 30px 20px 45px;
  background: linear-gradient(135deg, #fff4df 0%, #ffffff 100%);
}

.tiger-login-security-card {
  background: #ffffff;
  border: 2px solid #ffd08a;
  border-radius: 24px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(242,107,33,0.14);
}

.tiger-security-title {
  color: #f26b21;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 18px;
}

.tiger-security-text {
  color: #333333;
  font-size: 15px;
  line-height: 1.7;
}

.tiger-security-text a {
  color: #f26b21;
  font-weight: 800;
  text-decoration: none;
}

.tiger-security-text a:hover {
  color: #d35400;
  text-decoration: underline;
}

.tiger-security-banner img {
  max-width: 100%;
  height: auto;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .tiger-login-grid {
    grid-template-columns: 1fr;
  }

  .tiger-login-title {
    font-size: 32px;
  }

  .tiger-login-admin-card {
    flex-direction: column;
    text-align: center;
  }

  .tiger-admin-photo {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 520px) {
  .tiger-login-hero-section,
  .tiger-login-admin-section,
  .tiger-login-security-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .tiger-login-card,
  .tiger-login-hero-content,
  .tiger-login-admin-card,
  .tiger-login-security-card {
    padding: 22px;
  }

  .tiger-login-links a {
    display: block;
    margin: 5px 0;
  }

  .tiger-link-sep {
    display: none;
  }
}

/* SECURITY */

.tiger-login-security-section {
  padding: 20px 20px 50px;
}

.tiger-login-security-card {
  background: linear-gradient(135deg, #1f1f1f, #2f2f2f);
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.tiger-security-title {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 20px;
}

.tiger-security-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.tiger-security-text a {
  color: #ffb347;
  text-decoration: none;
  font-weight: 700;
}

.tiger-security-banner {
  margin-top: 25px;
}

/* MOBILE */

@media (max-width: 980px) {
  .tiger-login-grid {
    grid-template-columns: 1fr;
  }

  .tiger-login-admin-card {
    flex-direction: column;
    text-align: center;
  }

  .tiger-admin-photo {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .tiger-login-title {
    font-size: 32px;
  }

  .tiger-login-card {
    padding: 25px;
  }

  .tiger-login-security-card {
    padding: 25px;
  }
}

/* =========================================
   TIGER-HITS LOGIN PAGE - SELF CONTAINED CARD FIX
========================================= */

.tiger-login-hero-section,
.tiger-login-admin-section,
.tiger-login-security-section {
  display: block !important;
  width: 100% !important;
  padding: 35px 20px !important;
  margin: 0 auto !important;
  clear: both !important;
  box-sizing: border-box !important;
}

.tiger-login-hero-section {
  background: linear-gradient(135deg, #fff7ea 0%, #ffe2b8 100%) !important;
  border-radius: 24px !important;
  margin-bottom: 30px !important;
}

.tiger-login-admin-section,
.tiger-login-security-section {
  background: transparent !important;
}

.tiger-login-container {
  display: block !important;
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.tiger-login-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 30px !important;
  align-items: stretch !important;
  justify-content: center !important;
  width: 100% !important;
}

.tiger-login-hero-content {
  flex: 1 1 520px !important;
  min-width: 300px !important;
  background: #ffffff !important;
  border-radius: 24px !important;
  padding: 35px !important;
  box-shadow: 0 14px 35px rgba(0,0,0,0.10) !important;
  border: 2px solid rgba(255, 140, 0, 0.18) !important;
  box-sizing: border-box !important;
}

.tiger-login-card {
  flex: 0 1 380px !important;
  min-width: 300px !important;
  background: #ffffff !important;
  border-radius: 24px !important;
  padding: 35px !important;
  box-shadow: 0 14px 35px rgba(0,0,0,0.12) !important;
  border: 2px solid rgba(255, 140, 0, 0.22) !important;
  box-sizing: border-box !important;
}

/* Hero Text */

.tiger-login-badge {
  display: inline-block !important;
  background: linear-gradient(135deg, #ff8c00, #ffb347) !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  padding: 8px 16px !important;
  border-radius: 999px !important;
  letter-spacing: 1px !important;
  margin-bottom: 18px !important;
}

.tiger-login-title {
  color: #1f1f1f !important;
  font-size: 40px !important;
  line-height: 1.15 !important;
  font-weight: 900 !important;
  margin: 0 0 20px 0 !important;
}

.tiger-login-text {
  color: #444444 !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
  margin: 0 0 18px 0 !important;
}

.tiger-login-banner {
  background: #fff8ef !important;
  border: 1px solid rgba(255, 140, 0, 0.22) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  margin: 25px 0 !important;
  text-align: center !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7) !important;
}

.tiger-login-support-note {
  background: #fff8ef !important;
  border-left: 5px solid #ff8c00 !important;
  border-radius: 14px !important;
  padding: 16px !important;
  color: #555555 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

.tiger-login-support-note a,
.tiger-login-links a,
.tiger-admin-text a,
.tiger-disclaimer-text a,
.tiger-security-text a {
  color: #d35400 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.tiger-login-support-note a:hover,
.tiger-login-links a:hover,
.tiger-admin-text a:hover,
.tiger-disclaimer-text a:hover,
.tiger-security-text a:hover {
  text-decoration: underline !important;
}

/* Login Form */

.tiger-login-card-title {
  color: #1f1f1f !important;
  font-size: 30px !important;
  font-weight: 900 !important;
  text-align: center !important;
  margin: 0 0 8px 0 !important;
}

.tiger-login-card-subtitle {
  color: #666666 !important;
  font-size: 15px !important;
  text-align: center !important;
  margin: 0 0 25px 0 !important;
}

.tiger-login-error {
    background: #fff1f1;
    color: #9b1c1c;
    padding: 14px;
    border: 1px solid #f0a0a0;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
    min-height: 0;
}

.tiger-login-error:empty {
    display: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    background: none !important;
}

.tiger-login-form {
  display: block !important;
  width: 100% !important;
}

.tiger-form-group {
  display: block !important;
  width: 100% !important;
  margin-bottom: 20px !important;
}

.tiger-form-label {
  display: block !important;
  color: #333333 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  margin-bottom: 8px !important;
}

.tiger-form-control {
  display: block !important;
  width: 100% !important;
  padding: 14px 16px !important;
  border: 2px solid #e5e7eb !important;
  border-radius: 14px !important;
  background: #ffffff !important;
  color: #222222 !important;
  font-size: 15px !important;
  box-sizing: border-box !important;
}

.tiger-form-control:focus {
  outline: none !important;
  border-color: #ff8c00 !important;
  box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.16) !important;
}

.tiger-login-btn-primary {
  display: block !important;
  width: 100% !important;
  padding: 16px !important;
  border: none !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #ff8c00, #ff6b00) !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  cursor: pointer !important;
  text-align: center !important;
  box-shadow: 0 12px 25px rgba(255, 140, 0, 0.25) !important;
}

.tiger-login-links {
  display: block !important;
  margin-top: 20px !important;
  text-align: center !important;
  color: #999999 !important;
  line-height: 1.8 !important;
}

/* Admin Card */

.tiger-login-admin-card {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 25px !important;
  align-items: stretch !important;
  width: 100% !important;
  background: #ffffff !important;
  border-radius: 24px !important;
  padding: 30px !important;
  box-shadow: 0 14px 35px rgba(0,0,0,0.10) !important;
  border: 2px solid rgba(255, 140, 0, 0.16) !important;
  box-sizing: border-box !important;
}

.tiger-admin-photo-wrap {
  flex: 0 0 180px !important;
  text-align: center !important;
}

.tiger-admin-photo {
  width: 180px !important;
  height: 180px !important;
  object-fit: cover !important;
  border-radius: 18px !important;
  border: 4px solid #ff8c00 !important;
}

.tiger-admin-box {
  flex: 1 1 260px !important;
  background: #fff8ef !important;
  border-radius: 18px !important;
  padding: 22px !important;
  border: 1px solid rgba(255, 140, 0, 0.20) !important;
}

.tiger-admin-title {
  color: #1f1f1f !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  margin-bottom: 12px !important;
}

.tiger-admin-text {
  color: #444444 !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
}

.tiger-disclaimer-box {
  flex: 1.4 1 340px !important;
  background: #fff8ef !important;
  border-left: 5px solid #ff8c00 !important;
  border-radius: 18px !important;
  padding: 22px !important;
}

.tiger-disclaimer-text {
  color: #444444 !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}

/* Security Card */

/* TIGER-HITS SECURITY CARD COLOR FIX */

.tiger-login-security-card {
  display: block !important;
  width: 100% !important;
  background: linear-gradient(135deg, #fff8ef 0%, #ffe4bf 100%) !important;
  border: 2px solid rgba(255, 140, 0, 0.22) !important;
  border-radius: 24px !important;
  padding: 40px !important;
  text-align: center !important;
  box-shadow: 0 14px 35px rgba(0,0,0,0.10) !important;
  box-sizing: border-box !important;
}

.tiger-security-title {
  color: #d35400 !important;
  font-size: 30px !important;
  font-weight: 900 !important;
  margin: 0 0 20px 0 !important;
}

.tiger-security-text {
  color: #444444 !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
  margin-bottom: 14px !important;
}

.tiger-security-text a {
  color: #ff8c00 !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

.tiger-security-text a:hover {
  text-decoration: underline !important;
}

.tiger-security-banner img,
.tiger-login-banner img,
.tiger-login-banner iframe {
  max-width: 100% !important;
  height: auto !important;
}

/* Mobile */

@media (max-width: 900px) {
  .tiger-login-title {
    font-size: 32px !important;
  }

  .tiger-login-hero-content,
  .tiger-login-card,
  .tiger-login-admin-card,
  .tiger-login-security-card {
    padding: 24px !important;
  }

  .tiger-admin-photo-wrap {
    flex: 1 1 100% !important;
  }

  .tiger-login-admin-card {
    text-align: center !important;
  }
}

/* =========================================
   TIGER-HITS LOGIN ERROR / LOGIN ISSUES PAGE
========================================= */

.tiger-login-issues-section {
  display: block !important;
  width: 100% !important;
  padding: 40px 20px !important;
  background: linear-gradient(135deg, #fff7ea 0%, #ffe2b8 100%) !important;
  box-sizing: border-box !important;
  clear: both !important;
}

.tiger-login-issues-section *,
.tiger-login-security-card * {
  box-sizing: border-box !important;
}

.tiger-login-issues-content {
  display: block !important;
  width: 100% !important;
  background: #ffffff !important;
  border-radius: 24px !important;
  padding: 40px !important;
  margin-bottom: 30px !important;
  box-shadow: 0 14px 35px rgba(0,0,0,0.10) !important;
  border: 2px solid rgba(255, 140, 0, 0.18) !important;
}

.tiger-login-issues-badge {
  display: inline-block !important;
  background: linear-gradient(135deg, #ff8c00, #ffb347) !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  padding: 8px 16px !important;
  border-radius: 999px !important;
  letter-spacing: 1px !important;
  margin-bottom: 18px !important;
}

.tiger-login-issues-title {
  color: #1f1f1f !important;
  font-size: 40px !important;
  line-height: 1.15 !important;
  font-weight: 900 !important;
  margin: 0 0 12px 0 !important;
}

.tiger-login-issues-subtitle {
  color: #555555 !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
  margin: 0 0 28px 0 !important;
}

.tiger-login-issue {
  background: #fff8ef !important;
  border: 1px solid rgba(255, 140, 0, 0.22) !important;
  border-left: 6px solid #ff8c00 !important;
  border-radius: 18px !important;
  padding: 22px !important;
  margin-bottom: 20px !important;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05) !important;
}

.tiger-login-issue-title {
  color: #d35400 !important;
  font-size: 20px !important;
  line-height: 1.35 !important;
  font-weight: 900 !important;
  margin: 0 0 10px 0 !important;
}

.tiger-login-issue-text {
  color: #444444 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  margin: 0 0 12px 0 !important;
}

.tiger-login-issue-text:last-child {
  margin-bottom: 0 !important;
}

.tiger-login-issue-text a {
  color: #d35400 !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

.tiger-login-issue-text a:hover {
  text-decoration: underline !important;
}

/* Stay Safe Area at Bottom */

.tiger-login-security-card {
  display: block !important;
  width: 100% !important;
  background: linear-gradient(135deg, #fff8ef 0%, #ffe4bf 100%) !important;
  border: 2px solid rgba(255, 140, 0, 0.22) !important;
  border-radius: 24px !important;
  padding: 40px !important;
  text-align: center !important;
  box-shadow: 0 14px 35px rgba(0,0,0,0.10) !important;
}

.tiger-security-title {
  color: #d35400 !important;
  font-size: 30px !important;
  font-weight: 900 !important;
  margin: 0 0 20px 0 !important;
}

.tiger-security-text {
  color: #444444 !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
  margin: 0 0 14px 0 !important;
}

.tiger-security-text a {
  color: #ff8c00 !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

.tiger-security-text a:hover {
  text-decoration: underline !important;
}

.tiger-security-banner {
  margin-top: 24px !important;
}

.tiger-security-image,
.tiger-security-banner img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: 10px !important;
}

/* Mobile */

@media (max-width: 768px) {
  .tiger-login-issues-section {
    padding: 25px 12px !important;
  }

  .tiger-login-issues-content,
  .tiger-login-security-card {
    padding: 24px !important;
    border-radius: 18px !important;
  }

  .tiger-login-issues-title {
    font-size: 32px !important;
  }

  .tiger-login-issue {
    padding: 18px !important;
  }
}

/* =========================================
   TIGER-HITS LOST PASSWORD PAGE
========================================= */

.tiger-lostpass-section {
  display: block !important;
  width: 100% !important;
  padding: 40px 20px !important;
  background: linear-gradient(135deg, #fff7ea 0%, #ffe2b8 100%) !important;
  box-sizing: border-box !important;
  clear: both !important;
}

.tiger-lostpass-section *,
.tiger-lostpass-card * {
  box-sizing: border-box !important;
}

.tiger-lostpass-card {
  display: block !important;
  width: 100% !important;
  max-width: 720px !important;
  margin: 0 auto 30px auto !important;
  background: #ffffff !important;
  border-radius: 24px !important;
  padding: 40px !important;
  box-shadow: 0 14px 35px rgba(0,0,0,0.10) !important;
  border: 2px solid rgba(255, 140, 0, 0.18) !important;
}

.tiger-lostpass-message-card {
  text-align: center !important;
}

.tiger-lostpass-badge {
  display: inline-block !important;
  background: linear-gradient(135deg, #ff8c00, #ffb347) !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  padding: 8px 16px !important;
  border-radius: 999px !important;
  letter-spacing: 1px !important;
  margin-bottom: 18px !important;
}

.tiger-lostpass-title {
  color: #1f1f1f !important;
  font-size: 38px !important;
  line-height: 1.15 !important;
  font-weight: 900 !important;
  margin: 0 0 14px 0 !important;
}

.tiger-lostpass-subtitle,
.tiger-lostpass-text {
  color: #555555 !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
  margin: 0 0 28px 0 !important;
}

.tiger-lostpass-form {
  display: block !important;
  width: 100% !important;
}

.tiger-lostpass-actions {
  margin-top: 20px !important;
  text-align: center !important;
}

.tiger-lostpass-btn {
  display: inline-block !important;
  padding: 14px 26px !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #ff8c00, #ff6b00) !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  box-shadow: 0 12px 25px rgba(255, 140, 0, 0.25) !important;
}

.tiger-lostpass-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 30px rgba(255, 140, 0, 0.35) !important;
}

@media (max-width: 768px) {
  .tiger-lostpass-section {
    padding: 25px 12px !important;
  }

  .tiger-lostpass-card {
    padding: 24px !important;
    border-radius: 18px !important;
  }

  .tiger-lostpass-title {
    font-size: 31px !important;
  }
}


/* ======================================================
   Tiger Hits Signup Page - Consolidated Layout
   Use with revised signup.php
====================================================== */

.tiger-signup-steps,
.tiger-signup-conversion {
  max-width: 920px;
  margin: 30px auto;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  color: var(--th-text);
  box-sizing: border-box;
}

/* Hero card */

.tiger-signup-hero {
  text-align: center;
  padding: 30px 26px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, #ff8c00 0%, #ffb347 48%, #ff6b00 100%);
  border-radius: 24px;
  color: #ffffff;
  box-shadow: 0 14px 35px rgba(255, 140, 0, 0.20);
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-sizing: border-box;
}

.tiger-signup-badge,
.tiger-form-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 18px;
  background: #ffffff;
  color: #b34700;
  font-size: 14px;
  font-weight: 900;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tiger-signup-hero h2,
.tiger-form-header h2 {
  margin: 8px 0 12px;
  color: #ffffff !important;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 900;
  text-shadow: 1px 2px 3px rgba(0,0,0,0.22);
}

.tiger-signup-lead {
  max-width: 760px;
  margin: 0 auto 22px;
  color: #fffaf0 !important;
  font-size: 18px;
  line-height: 1.65;
}

.tiger-signup-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.tiger-signup-benefits div {
  padding: 16px 12px;
  background: rgba(255,255,255,0.96);
  border-radius: 16px;
  color: #2b1a05;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.tiger-signup-benefits strong {
  display: block;
  color: #d35400;
  font-size: 20px;
  margin-bottom: 4px;
}

.tiger-signup-benefits span {
  display: block;
  color: #4a2b00;
  font-size: 15px;
}

/* Instruction cards */

.tiger-step-card,
.tiger-signup-bonus-box,
.tiger-signup-trust-box {
  max-width: 920px;
  margin: 18px auto;
  background: #ffffff;
  border: 2px solid rgba(255, 140, 0, 0.22);
  border-left: 8px solid #ff8c00;
  border-radius: 20px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  color: #2b1a05;
  box-sizing: border-box;
}

.tiger-step-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
}

.tiger-step-icon,
.tiger-bonus-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  background: linear-gradient(135deg, #ff8c00, #ff6b00);
  color: #ffffff;
  font-size: 25px;
  font-weight: 900;
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(255, 107, 0, 0.32);
}

.tiger-step-content h3,
.tiger-bonus-content h3,
.tiger-signup-bonus-box h3 {
  margin: 0 0 8px;
  color: #d35400 !important;
  font-size: 23px;
  font-weight: 900;
}

.tiger-step-content p,
.tiger-bonus-content p,
.tiger-signup-bonus-box p {
  margin: 0;
  color: #2b1a05 !important;
  font-size: 17px;
  line-height: 1.6;
}

.tiger-signup-bonus-box {
  padding: 22px;
}

.tiger-signup-trust-box {
  padding: 20px 22px;
  background: #fff8ef;
  border-style: dashed;
  color: #3b2500 !important;
  font-size: 17px;
  line-height: 1.65;
}

.tiger-signup-trust-box strong {
  color: #b34700;
}

.tiger-card-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 24px auto 0;
}

.tiger-support-btn,
.tiger-secondary-btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none !important;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

.tiger-support-btn {
  background: linear-gradient(135deg, #ff8c00, #ff6b00);
  color: #ffffff !important;
  box-shadow: 0 8px 18px rgba(255, 107, 0, 0.30);
}

.tiger-secondary-btn {
  background: #2b1a05;
  color: #ffffff !important;
  box-shadow: 0 8px 18px rgba(43, 26, 5, 0.22);
}

.tiger-support-btn:hover,
.tiger-secondary-btn:hover {
  transform: translateY(-2px);
  opacity: 0.94;
}

/* Signup form section - separate card */

.tiger-form-only-section {
  max-width: 820px;
  margin: 35px auto;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  box-sizing: border-box;
}

.tiger-signup-form-card {
  background: #ffffff;
  border: 3px solid #ff8c00;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(255, 140, 0, 0.18);
  box-sizing: border-box;
}

.tiger-form-header {
  text-align: center;
  padding: 28px 22px;
  background: linear-gradient(135deg, #ff8c00 0%, #ffb347 48%, #ff6b00 100%);
  color: #ffffff;
}

.tiger-form-header p {
  margin: 0;
  color: #fffaf0 !important;
  font-size: 17px;
  line-height: 1.5;
}

.tiger-signup-form {
  padding: 24px;
}

.tiger-signup-table {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.tiger-signup-table td {
  padding: 8px;
  vertical-align: middle;
  color: #2b1a05 !important;
}

.tiger-form-section-title {
  background: #fff8ef;
  color: #d35400 !important;
  font-size: 22px;
  font-weight: 900;
  padding: 14px !important;
  border-radius: 14px;
  border: 2px solid rgba(255, 140, 0, 0.25);
}

.tiger-signup-table .formlabelbold {
  color: #4a2b00 !important;
  font-size: 15px;
  font-weight: 900;
}

.tiger-signup-table input[type="text"],
.tiger-signup-table input[type="password"],
.tiger-signup-table input[type="email"],
.tiger-signup-table select,
.tiger-signup-table textarea {
  width: 100%;
  max-width: 330px;
  padding: 10px 12px;
  border: 2px solid rgba(255, 140, 0, 0.28);
  border-radius: 12px;
  background: #fffdf7 !important;
  color: #2b1a05 !important;
  font-size: 15px;
  box-sizing: border-box;
}

.tiger-signup-table input:focus,
.tiger-signup-table select:focus,
.tiger-signup-table textarea:focus {
  outline: none;
  border-color: #ff8c00;
  box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.16);
}

.tiger-email-warning {
  background: #fff8ef;
  color: #5c3200 !important;
  border: 2px dashed #ff8c00;
  border-radius: 14px;
  padding: 14px !important;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

.tiger-submit-row {
  padding-top: 18px !important;
}

.tiger-submit-btn {
  background: linear-gradient(135deg, #ff8c00, #ff6b00) !important;
  color: #ffffff !important;
  border: none;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(255, 107, 0, 0.30);
}

.tiger-submit-btn:hover {
  opacity: 0.94;
  transform: translateY(-2px);
}

/* Signup bonus reward page */

.tiger-bonus-reward {
  max-width: 760px;
  margin: 30px auto;
  padding: 30px;
  text-align: center;
  background: linear-gradient(135deg, #fff7e6 0%, #ffffff 50%, #fff1cc 100%);
  border: 3px solid #ff8c00;
  border-radius: 24px;
  box-shadow: 0 14px 35px rgba(255, 140, 0, 0.18);
  color: #2b1a05;
  box-sizing: border-box;
}

.tiger-bonus-reward h2 {
  margin: 0 0 20px;
  font-size: 34px;
  color: #d35400 !important;
}

.tiger-bonus-reward p {
  font-size: 18px;
  line-height: 1.7;
  margin: 16px 0;
  color: #2b1a05 !important;
}

.tiger-bonus-highlight {
  margin: 22px 0;
  padding: 18px;
  background: linear-gradient(135deg, #ff8c00, #ff6b00);
  color: #ffffff !important;
  font-size: 20px;
  font-weight: 900;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(255, 107, 0, 0.30);
}

/* Mobile responsive */

@media only screen and (max-width: 700px) {
  .tiger-signup-steps,
  .tiger-signup-conversion,
  .tiger-form-only-section {
    margin: 20px 10px;
  }

  .tiger-signup-hero,
  .tiger-form-header {
    padding: 24px 16px;
  }

  .tiger-signup-hero h2,
  .tiger-form-header h2 {
    font-size: 24px;
  }

  .tiger-signup-benefits {
    grid-template-columns: 1fr;
  }

  .tiger-step-card,
  .tiger-signup-bonus-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 20px;
  }

  .tiger-card-actions {
    flex-direction: column;
  }

  .tiger-support-btn,
  .tiger-secondary-btn,
  .tiger-submit-btn {
    width: 100%;
    box-sizing: border-box;
  }

  .tiger-signup-table,
  .tiger-signup-table tbody,
  .tiger-signup-table tr,
  .tiger-signup-table td {
    display: block;
    width: 100%;
  }

  .tiger-signup-table td {
    text-align: left !important;
  }

  .tiger-signup-table input[type="text"],
  .tiger-signup-table input[type="password"],
  .tiger-signup-table input[type="email"],
  .tiger-signup-table select,
  .tiger-signup-table textarea {
    max-width: 100%;
  }
}

/* =========================================
   TIGER-HITS TERMS PAGE
========================================= */

.tiger-terms-page {
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 16px;
  color: var(--th-text);
}

.tiger-terms-hero {
  text-align: center;
  padding: 36px 28px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ff8c00 0%, #ffb347 50%, #ff6b00 100%);
  border-radius: 24px;
  box-shadow: 0 14px 35px rgba(255, 140, 0, 0.22);
  color: #ffffff;
}

.tiger-terms-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 18px;
  background: #ffffff;
  color: #b34700;
  font-size: 14px;
  font-weight: 900;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.tiger-terms-hero h1 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.15;
  text-shadow: 1px 2px 4px rgba(0,0,0,0.22);
}

.tiger-terms-hero p {
  margin: 0;
  color: #fffaf0;
  font-size: 18px;
  line-height: 1.6;
}

.tiger-terms-card {
  background: #ffffff;
  border: 2px solid rgba(255, 140, 0, 0.20);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  color: var(--th-text);
  line-height: 1.7;
}

.tiger-terms-card h2 {
  margin-top: 34px;
  padding-bottom: 8px;
  color: #d35400;
  font-size: 26px;
  font-weight: 900;
  border-bottom: 2px solid #ffe0b2;
}

.tiger-terms-card h3 {
  color: #1f1f1f;
  font-size: 22px;
  font-weight: 900;
}

.tiger-terms-card p,
.tiger-terms-card li {
  color: #333333;
  font-size: 16px;
}

.tiger-terms-card a {
  color: #d35400;
  font-weight: 800;
  text-decoration: none;
}

.tiger-terms-card a:hover {
  text-decoration: underline;
}

.tiger-terms-card ul,
.tiger-terms-card ol {
  padding-left: 24px;
}

.tiger-terms-card li {
  margin-bottom: 8px;
}

.tiger-terms-toc {
  max-width: 520px;
  margin: 34px 0;
  padding: 22px 24px;
  background: #fff8ef;
  border: 2px solid rgba(255, 140, 0, 0.22);
  border-left: 7px solid #ff8c00;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
}

.tiger-terms-toc h3 {
  margin-top: 0;
  color: #d35400;
}

.tiger-terms-card strong {
  color: #1f1f1f;
}

@media (max-width: 768px) {
  .tiger-terms-page {
    margin: 20px auto;
    padding: 0 10px;
  }

  .tiger-terms-hero,
  .tiger-terms-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .tiger-terms-hero h1 {
    font-size: 30px;
  }

  .tiger-terms-card h2 {
    font-size: 22px;
  }
}


/* =========================================
   TIGER-HITS POLICY / DISCLAIMERS PAGES
========================================= */

.tiger-policy-page {
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 16px;
  color: var(--th-text);
  box-sizing: border-box;
}

.tiger-policy-hero {
  text-align: center;
  padding: 36px 28px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ff8c00 0%, #ffb347 50%, #ff6b00 100%);
  border-radius: 24px;
  box-shadow: 0 14px 35px rgba(255, 140, 0, 0.22);
  color: #ffffff;
}

.tiger-policy-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 18px;
  background: #ffffff;
  color: #b34700;
  font-size: 14px;
  font-weight: 900;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.tiger-policy-hero h1 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.15;
  text-shadow: 1px 2px 4px rgba(0,0,0,0.22);
}

.tiger-policy-hero p {
  margin: 0;
  color: #fffaf0;
  font-size: 18px;
  line-height: 1.6;
}

.tiger-policy-card {
  background: #ffffff;
  border: 2px solid rgba(255, 140, 0, 0.20);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  color: var(--th-text);
  line-height: 1.7;
}

.tiger-policy-card h2 {
  margin-top: 34px;
  padding-bottom: 8px;
  color: #d35400;
  font-size: 26px;
  font-weight: 900;
  border-bottom: 2px solid #ffe0b2;
}

.tiger-policy-card h3 {
  color: #1f1f1f;
  font-size: 22px;
  font-weight: 900;
}

.tiger-policy-card p,
.tiger-policy-card li {
  color: #333333;
  font-size: 16px;
}

.tiger-policy-card a {
  color: #d35400;
  font-weight: 800;
  text-decoration: none;
}

.tiger-policy-card a:hover {
  text-decoration: underline;
}

.tiger-policy-toc,
.tiger-policy-links,
.tiger-policy-warning,
.tiger-policy-contact-box {
  margin: 24px 0;
  padding: 20px 22px;
  background: #fff8ef;
  border: 2px solid rgba(255, 140, 0, 0.22);
  border-left: 7px solid #ff8c00;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
}

.tiger-policy-toc {
  max-width: 520px;
}

.tiger-policy-toc h3 {
  margin-top: 0;
  color: #d35400;
}

.tiger-policy-toc ol {
  margin-bottom: 0;
  padding-left: 24px;
}

.tiger-policy-toc li {
  margin-bottom: 8px;
}

.tiger-policy-warning {
  background: #fff3cd;
  border-left-color: #d84315;
}

.tiger-policy-warning p {
  margin: 6px 0;
  font-weight: 800;
}

.tiger-policy-updated {
  margin-top: 24px;
  font-weight: 900;
  color: #d35400 !important;
}

@media (max-width: 768px) {
  .tiger-policy-page {
    margin: 20px auto;
    padding: 0 10px;
  }

  .tiger-policy-hero,
  .tiger-policy-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .tiger-policy-hero h1 {
    font-size: 30px;
  }

  .tiger-policy-card h2 {
    font-size: 22px;
  }
}

/* =========================================
   TIGER-HITS POLICY PAGES
   Use for Privacy Policy, Disclaimers, Terms,
   Anti-Spam, and other legal/policy pages.
========================================= */

.tiger-policy-page {
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 16px;
  color: var(--th-text, #1E293B);
  box-sizing: border-box;
}

.tiger-policy-page *,
.tiger-policy-page *::before,
.tiger-policy-page *::after {
  box-sizing: border-box;
}

.tiger-policy-hero {
  text-align: center;
  padding: 36px 28px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ff8c00 0%, #ffb347 50%, #ff6b00 100%);
  border-radius: 24px;
  box-shadow: 0 14px 35px rgba(255, 140, 0, 0.22);
  color: #ffffff;
}

.tiger-policy-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 18px;
  background: #ffffff;
  color: #b34700;
  font-size: 14px;
  font-weight: 900;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.tiger-policy-hero h1 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.15;
  text-shadow: 1px 2px 4px rgba(0,0,0,0.22);
}

.tiger-policy-hero p {
  margin: 0 auto;
  max-width: 760px;
  color: #fffaf0;
  font-size: 18px;
  line-height: 1.6;
}

.tiger-policy-card {
  background: #ffffff;
  border: 2px solid rgba(255, 140, 0, 0.20);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  color: var(--th-text, #1E293B);
  line-height: 1.7;
  text-align: left;
}

.tiger-policy-card h2 {
  margin-top: 34px;
  padding-bottom: 8px;
  color: #d35400;
  font-size: 26px;
  font-weight: 900;
  border-bottom: 2px solid #ffe0b2;
}

.tiger-policy-card h3 {
  margin: 24px 0 10px;
  color: #1f1f1f;
  font-size: 20px;
  font-weight: 900;
}

.tiger-policy-card p,
.tiger-policy-card li {
  color: #333333;
  font-size: 16px;
}

.tiger-policy-card a {
  color: #d35400;
  font-weight: 800;
  text-decoration: none;
}

.tiger-policy-card a:hover {
  text-decoration: underline;
}

.tiger-policy-card ul,
.tiger-policy-card ol {
  padding-left: 24px;
}

.tiger-policy-card li {
  margin-bottom: 8px;
}

.tiger-policy-toc,
.tiger-policy-link-box {
  margin: 28px 0;
  padding: 22px 24px;
  background: #fff8ef;
  border: 2px solid rgba(255, 140, 0, 0.22);
  border-left: 7px solid #ff8c00;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
}

.tiger-policy-toc {
  max-width: 560px;
}

.tiger-policy-toc h3 {
  margin-top: 0;
  color: #d35400;
}

.tiger-policy-link-box p {
  margin: 6px 0;
}

.tiger-policy-updated {
  display: inline-block;
  margin: 26px 0 14px;
  padding: 10px 16px;
  background: #fff8ef;
  border: 1px solid rgba(255, 140, 0, 0.30);
  border-radius: 999px;
  color: #b34700;
  font-weight: 900;
}

.tiger-policy-copyright {
  font-size: 14px !important;
  color: #666666 !important;
}

@media (max-width: 768px) {
  .tiger-policy-page {
    margin: 20px auto;
    padding: 0 10px;
  }

  .tiger-policy-hero,
  .tiger-policy-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .tiger-policy-hero h1 {
    font-size: 30px;
  }

  .tiger-policy-card h2 {
    font-size: 22px;
  }
}

/* =========================================
   TIGER-HITS POLICY PAGES
   Terms / Privacy / Disclaimers / Anti-Spam
========================================= */

.tiger-policy-page {
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 16px;
  color: var(--th-text);
  box-sizing: border-box;
}

.tiger-policy-page *,
.tiger-policy-page *::before,
.tiger-policy-page *::after {
  box-sizing: border-box;
}

.tiger-policy-hero {
  text-align: center;
  padding: 36px 28px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ff8c00 0%, #ffb347 50%, #ff6b00 100%);
  border-radius: 24px;
  box-shadow: 0 14px 35px rgba(255, 140, 0, 0.22);
  color: #ffffff;
}

.tiger-policy-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 18px;
  background: #ffffff;
  color: #b34700;
  font-size: 14px;
  font-weight: 900;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.tiger-policy-hero h1 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.15;
  text-shadow: 1px 2px 4px rgba(0,0,0,0.22);
}

.tiger-policy-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #fffaf0;
  font-size: 18px;
  line-height: 1.6;
}

.tiger-policy-card {
  background: #ffffff;
  border: 2px solid rgba(255, 140, 0, 0.20);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  color: var(--th-text);
  line-height: 1.7;
}

.tiger-policy-card h2 {
  margin-top: 34px;
  padding-bottom: 8px;
  color: #d35400;
  font-size: 26px;
  font-weight: 900;
  border-bottom: 2px solid #ffe0b2;
}

.tiger-policy-card h3 {
  color: #1f1f1f;
  font-size: 22px;
  font-weight: 900;
}

.tiger-policy-card p,
.tiger-policy-card li {
  color: #333333;
  font-size: 16px;
}

.tiger-policy-card a {
  color: #d35400;
  font-weight: 800;
  text-decoration: none;
}

.tiger-policy-card a:hover {
  text-decoration: underline;
}

.tiger-policy-card ul,
.tiger-policy-card ol {
  padding-left: 24px;
}

.tiger-policy-card li {
  margin-bottom: 8px;
}

.tiger-policy-toc {
  max-width: 560px;
  margin: 34px 0;
  padding: 22px 24px;
  background: #fff8ef;
  border: 2px solid rgba(255, 140, 0, 0.22);
  border-left: 7px solid #ff8c00;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
}

.tiger-policy-toc h3 {
  margin-top: 0;
  color: #d35400;
}

.tiger-policy-section {
  scroll-margin-top: 20px;
}

.tiger-policy-warning {
  margin: 18px 0;
  padding: 16px 18px;
  background: #fff3cd;
  border: 2px dashed #ff9800;
  border-radius: 16px;
  color: #5c3200;
  font-size: 17px;
  line-height: 1.6;
}

.tiger-policy-updated {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 14px;
  background: #fff8ef;
  border: 1px solid rgba(255, 140, 0, 0.25);
  border-radius: 999px;
  color: #5c3200 !important;
  font-weight: 800;
}

@media (max-width: 768px) {
  .tiger-policy-page {
    margin: 20px auto;
    padding: 0 10px;
  }

  .tiger-policy-hero,
  .tiger-policy-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .tiger-policy-hero h1 {
    font-size: 30px;
  }

  .tiger-policy-card h2 {
    font-size: 22px;
  }
}

/* =========================================
   TIGER-HITS SIDEBAR - LION HITS STYLE
========================================= */

.lfm_slidebar {
  min-width: 225px;
  max-width: 225px;
  background: linear-gradient(180deg, #fff8ef 0%, #ffffff 55%, #fff3d6 100%) !important;
  border-right: 2px solid rgba(255, 140, 0, 0.25) !important;
  box-shadow: 4px 0 18px rgba(255, 140, 0, 0.12) !important;
  padding-top: 10px;
}

.lfm_menu_logo {
  display: block;
  max-width: 170px;
  max-height: none;
  margin: 12px auto 14px !important;
}

.lfm_slidebar_mainmenu {
  width: 100%;
  padding: 0 10px 18px !important;
  margin: 0 auto !important;
  box-sizing: border-box;
}

.lfm_slidebar_mainmenu li {
  margin: 7px auto !important;
  padding: 0 !important;
  width: 100%;
  list-style: none;
}

.lfm_slidebar_mainmenu li > a {
  display: block !important;
  width: 100% !important;
  padding: 9px 11px !important;
  box-sizing: border-box !important;
  background: #ffffff !important;
  color: #2b1a05 !important;
  border: 1px solid rgba(255, 140, 0, 0.25) !important;
  border-radius: 13px !important;
  box-shadow: 0 4px 12px rgba(120, 65, 0, 0.08) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  text-align: left !important;
  text-decoration: none !important;
}

.lfm_slidebar_mainmenu li > a:hover,
.lfm_slidebar_mainmenu li > a.active {
  background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%) !important;
  color: #ffffff !important;
  border-color: #ff8c00 !important;
  transform: translateX(2px);
}

.lfm_slidebar_mainmenu li > a .fas,
.lfm_slidebar_mainmenu li > a .far,
.lfm_slidebar_mainmenu li > a i {
  width: 18px;
  text-align: center;
  margin-right: 6px;
  color: inherit !important;
}

/* Sidebar extra boxes */
.tiger-sidebar-extras {
  padding: 8px 10px 20px !important;
  text-align: center !important;
}

.tiger-sidebar-box,
.tiger-sidebar-ad {
  width: 100% !important;
  max-width: 195px !important;
  margin: 12px auto !important;
  box-sizing: border-box !important;
}

.tiger-sidebar-box {
  padding: 13px 10px !important;
  background: #ffffff !important;
  border: 1px solid rgba(255, 140, 0, 0.25) !important;
  border-radius: 15px !important;
  box-shadow: 0 5px 14px rgba(120, 65, 0, 0.10) !important;
  color: #2b1a05 !important;
  font-size: 13px !important;
}

.tiger-sidebar-box p {
  color: #2b1a05 !important;
  margin: 5px 0 !important;
}

.tiger-sidebar-box a {
  color: #d35400 !important;
  font-weight: 900 !important;
}

.tiger-sidebar-ad img {
  max-width: 100% !important;
  border-radius: 14px !important;
  border: 1px solid rgba(255, 140, 0, 0.25) !important;
  box-shadow: 0 5px 14px rgba(120, 65, 0, 0.10) !important;
}

/* Topbar match */
.lfm_topbar {
  background: linear-gradient(135deg, #ff8c00 0%, #ffb347 50%, #ff6b00 100%) !important;
  border-bottom: 2px solid rgba(255,255,255,0.35) !important;
  box-shadow: 0 4px 16px rgba(255, 140, 0, 0.25) !important;
}

.lfm_slidebar_toggleswitch {
  color: #ffffff !important;
}

.lfm_slidebar_toggleswitch:hover {
  color: #fff8d6 !important;
}

/* =========================================
   TIGER TERMS BAR + MEMBER ACTIVITY
   Lion Hits Style
========================================= */

.tiger-terms-bar {
  width: 92%;
  max-width: 200px;
  margin: 14px auto 16px;
  padding: 12px 10px;
  text-align: center;
  background: linear-gradient(180deg, #fff8ef 0%, #ffffff 100%);
  border: 1px solid rgba(255, 140, 0, 0.22);
  border-radius: 14px;
  box-shadow: 0 5px 14px rgba(120, 65, 0, 0.08);
  line-height: 1.8;
}

.tiger-terms-bar a {
  color: #d35400 !important;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none !important;
}

.tiger-terms-bar a:hover {
  color: #ff6b00 !important;
  text-decoration: underline !important;
}

.tiger-terms-bar span {
  color: #c67a2c;
  margin: 0 4px;
  font-weight: bold;
}

.tiger-member-activity {
  width: 92%;
  max-width: 200px;
  margin: 0 auto 18px;
  background: #ffffff;
  border: 1px solid rgba(255, 140, 0, 0.25);
  border-radius: 14px;
  box-shadow: 0 5px 14px rgba(120, 65, 0, 0.10);
  overflow: hidden;
  font-size: 13px;
}

.tiger-member-activity .membertd {
  background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
}

.tiger-member-activity .membertd td {
  color: #ffffff !important;
  padding: 10px;
  font-size: 13px;
  font-weight: 900;
}

.tiger-member-activity td {
  padding: 8px 10px;
  color: #2b1a05;
  border-bottom: 1px solid rgba(255, 140, 0, 0.10);
}

.tiger-member-activity tr:last-child td {
  border-bottom: none;
}

.tiger-terms-bar,
.tiger-member-activity-wrap {
  display: block;
  clear: both;
  width: 190px;
  max-width: 190px;
  margin: 12px auto;
  box-sizing: border-box;
}

.tiger-member-activity {
  width: 100%;
  max-width: 190px;
  table-layout: fixed;
}

/* =========================================
   TIGER HITS FOOTER
========================================= */

#footer,
.lfm_footer {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 35px 0 0 0 !important;
  padding: 0 !important;
  clear: both !important;

  background: linear-gradient(135deg, #f26b21 0%, #ff8c00 55%, #ffb347 100%) !important;
  border-top: 4px solid #ffd08a !important;
  box-shadow: 0 -8px 24px rgba(242,107,33,0.22) !important;
  color: #ffffff !important;
}

#footer *,
.lfm_footer * {
  color: #ffffff !important;
}

.tiger-footer-inner {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 30px 24px !important;
  text-align: center !important;
  box-sizing: border-box !important;
}

.tiger-footer-brand strong {
  display: block !important;
  font-size: 28px !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  letter-spacing: 0.5px !important;
}

.tiger-footer-brand span {
  display: block !important;
  margin-top: 6px !important;
  font-size: 15px !important;
  color: #fff4df !important;
}

.tiger-footer-links {
  width: 100% !important;
  margin: 24px auto 18px !important;
  line-height: 2 !important;
  text-align: center !important;
}

.tiger-footer-links a,
#footer a,
.lfm_footer a {
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

.tiger-footer-links a:hover,
#footer a:hover,
.lfm_footer a:hover {
  color: #fff4df !important;
  text-decoration: underline !important;
}

.tiger-footer-links span {
  color: rgba(255,255,255,0.65) !important;
  margin: 0 8px !important;
}

.tiger-footer-bottom {
  width: 100% !important;
  margin: 0 auto !important;
  padding-top: 18px !important;
  border-top: 1px solid rgba(255,255,255,0.28) !important;
}

.tiger-footer-bottom p {
  margin: 0 !important;
  color: #fff4df !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}

.tiger-footer-bottom strong {
  color: #ffffff !important;
}

@media (max-width: 768px) {
  .tiger-footer-links span {
    display: none !important;
  }

  .tiger-footer-links a {
    display: inline-block !important;
    margin: 4px 8px !important;
  }

  .tiger-footer-brand strong {
    font-size: 22px !important;
  }
}

.th-page-section {
  width: 100%;
  padding: 28px 15px;
  box-sizing: border-box;
}

.th-page-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.th-card {
  background: #ffffff;
  border: 2px solid #ffb347;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(255, 128, 0, 0.16);
  padding: 28px;
  box-sizing: border-box;
}

.th-resend-card {
  text-align: center;
}

.th-card-header h2 {
  color: #f26b21;
  font-size: 28px;
  margin: 8px 0 10px;
}

.th-card-header p {
  color: #333333;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 22px;
}

.th-eyebrow {
  color: #ff8c00;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}

.th-form-group {
  text-align: left;
  margin-bottom: 20px;
}

.th-form-group label {
  display: block;
  color: #222222;
  font-weight: bold;
  margin-bottom: 7px;
}

.th-form-group input[type="email"] {
  width: 100%;
  max-width: 420px;
  padding: 12px 14px;
  border: 2px solid #ffd08a;
  border-radius: 10px;
  font-size: 16px;
  box-sizing: border-box;
}

.th-form-group input[type="email"]:focus {
  outline: none;
  border-color: #f26b21;
  box-shadow: 0 0 0 3px rgba(242, 107, 33, 0.18);
}

.th-action-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.th-btn,
input.th-btn {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.2;
}

.th-btn-primary,
input.th-btn-primary {
  background: linear-gradient(135deg, #ff8c00, #f26b21);
  color: #ffffff;
}

.th-btn-secondary {
  background: #fff4df;
  color: #f26b21;
  border: 1px solid #ffd08a;
}

.th-message {
  border-radius: 12px;
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  margin: 18px auto;
  max-width: 560px;
}

.th-message-success {
  background: #e9fff0;
  color: #176b34;
  border: 1px solid #8ee0a8;
}

.th-message-error {
  background: #fff1f1;
  color: #9b1c1c;
  border: 1px solid #f0a0a0;
}

.th-public-header-banner {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    margin-bottom: 20px;
}

.headerimage {
    display: block;
    width: 100%;
    height: auto;
}

.tiger-topbar {
    width: 100%;
    min-height: 56px;
    background: #ffffff;
    border-bottom: 2px solid #ffb347;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    position: relative;
    z-index: 50;
}

.tiger-topbar-inner {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 18px;
    box-sizing: border-box;
}

.tiger-menu-icon {
    color: #f26b21;
    font-size: 22px;
    cursor: pointer;
}

.tiger-topbar-action {
    margin-left: auto;
}

.tiger-topbar-btn {
    display: inline-block !important;
    background: linear-gradient(135deg, #ff8c00, #f26b21);
    color: #ffffff !important;
    padding: 9px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none !important;
    line-height: 1.2;
    white-space: nowrap;
}

.tiger-topbar-btn:hover {
    background: linear-gradient(135deg, #f26b21, #ff8c00);
    color: #ffffff !important;
}

.tiger-sales-hero,
.tiger-sales-section,
.tiger-sales-bonus-section,
.tiger-sales-disclaimer-section

/* =========================================
   TIGER-HITS SALES PAGE
========================================= */

.tiger-sales-hero {
  padding: 55px 20px;
  background: linear-gradient(135deg, #fff4df 0%, #ffffff 48%, #ffe0b2 100%);
}

.tiger-sales-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.tiger-sales-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 35px;
  align-items: center;
}

.tiger-sales-copy,
.tiger-sales-card,
.tiger-sales-feature-card,
.tiger-sales-bonus-card,
.tiger-sales-disclaimer {
  background: #ffffff;
  border: 2px solid #ffd08a;
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(242,107,33,0.14);
}

.tiger-sales-copy {
  padding: 38px;
}

.tiger-sales-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff8c00, #f26b21);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(255,140,0,0.25);
}

.tiger-sales-copy h1 {
  font-size: 44px;
  line-height: 1.15;
  color: #f26b21;
  font-weight: 900;
  margin: 0 0 20px;
}

.tiger-sales-lead {
  font-size: 18px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 28px;
}

.tiger-sales-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.tiger-sales-btn-primary,
.tiger-sales-btn-secondary {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.tiger-sales-btn-primary {
  background: linear-gradient(135deg, #ff8c00, #f26b21);
  color: #ffffff !important;
  box-shadow: 0 12px 25px rgba(255,140,0,0.25);
}

.tiger-sales-btn-primary:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255,140,0,0.35);
}

.tiger-sales-btn-secondary {
  background: #fff4df;
  color: #f26b21 !important;
  border: 2px solid #ffd08a;
}

.tiger-sales-btn-secondary:hover {
  background: #ffe0b2;
  color: #d35400 !important;
}

.tiger-sales-card {
  padding: 32px;
}

.tiger-sales-card h2 {
  color: #f26b21;
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 18px;
}

.tiger-sales-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tiger-sales-card li {
  background: #fff4df;
  border-left: 5px solid #ff8c00;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
  color: #333333;
  font-weight: 700;
}

.tiger-sales-section,
.tiger-sales-bonus-section,
.tiger-sales-disclaimer-section {
  padding: 38px 20px;
  background: #ffffff;
}

.tiger-sales-section-title {
  text-align: center;
  color: #f26b21;
  font-size: 34px;
  font-weight: 900;
  margin: 0 0 28px;
}

.tiger-sales-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tiger-sales-feature-card {
  padding: 26px;
  text-align: center;
}

.tiger-sales-feature-card h3 {
  color: #f26b21;
  font-size: 21px;
  font-weight: 900;
  margin: 0 0 12px;
}

.tiger-sales-feature-card p {
  color: #333333;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.tiger-sales-bonus-section {
  background: linear-gradient(135deg, #fff4df 0%, #ffffff 100%);
}

.tiger-sales-bonus-card {
  padding: 34px;
  text-align: center;
}

.tiger-sales-bonus-card h2 {
  color: #f26b21;
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 14px;
}

.tiger-sales-bonus-card p {
  color: #333333;
  font-size: 17px;
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto 24px;
}

.tiger-sales-bonus-card strong {
  color: #d35400;
}

.tiger-sales-disclaimer {
  background: #fff8ef;
  border-left: 6px solid #ff8c00;
  padding: 20px;
  color: #333333;
  font-size: 14px;
  line-height: 1.7;
}

.tiger-sales-disclaimer strong {
  color: #f26b21;
}

@media (max-width: 900px) {
  .tiger-sales-hero-grid,
  .tiger-sales-feature-grid {
    grid-template-columns: 1fr;
  }

  .tiger-sales-copy h1 {
    font-size: 34px;
  }
}

@media (max-width: 520px) {
  .tiger-sales-hero,
  .tiger-sales-section,
  .tiger-sales-bonus-section,
  .tiger-sales-disclaimer-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .tiger-sales-copy,
  .tiger-sales-card,
  .tiger-sales-feature-card,
  .tiger-sales-bonus-card {
    padding: 24px;
  }

  .tiger-sales-actions {
    display: block;
  }

  .tiger-sales-btn-primary,
  .tiger-sales-btn-secondary {
    display: block;
    text-align: center;
    margin-bottom: 12px;
  }
}

/* =========================================
   TIGER-HITS SUSPENDED ACCOUNT PAGE
========================================= */

.tiger-suspended-section {
  padding: 45px 18px;
  background: linear-gradient(135deg, #fff4df 0%, #ffffff 48%, #ffe0b2 100%);
}

.tiger-suspended-card {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid #ffd08a;
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(242,107,33,0.16);
  padding: 34px;
}

.tiger-suspended-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff8c00, #f26b21);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.tiger-suspended-card h1 {
  color: #f26b21;
  font-size: 34px;
  font-weight: 900;
  margin: 0 0 14px;
}

.tiger-suspended-card h2 {
  color: #d35400;
  font-size: 24px;
  font-weight: 900;
  margin: 28px 0 16px;
}

.tiger-suspended-intro {
  color: #333333;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.tiger-suspended-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tiger-suspended-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff8ef;
  border: 1px solid #ffd08a;
  border-left: 6px solid #ff8c00;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
  color: #333333;
  line-height: 1.6;
}

.tiger-suspended-list i {
  color: #f26b21;
  font-size: 20px;
  margin-top: 3px;
  min-width: 24px;
  text-align: center;
}

.tiger-suspended-list a {
  color: #f26b21 !important;
  font-weight: 800;
  text-decoration: none;
}

.tiger-suspended-list a:hover {
  color: #d35400 !important;
  text-decoration: underline;
}

.tiger-suspended-notice {
  margin-top: 24px;
  background: #fff4df;
  border: 1px solid #ffd08a;
  border-radius: 16px;
  padding: 18px;
}

.tiger-suspended-notice p {
  margin: 0;
  color: #333333;
  font-size: 15px;
  line-height: 1.7;
}

.tiger-suspended-actions {
  text-align: center;
  margin-top: 24px;
}

.tiger-suspended-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff8c00, #f26b21);
  color: #ffffff !important;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none !important;
  box-shadow: 0 12px 25px rgba(255,140,0,0.25);
  transition: all 0.25s ease;
}

.tiger-suspended-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255,140,0,0.35);
}

@media (max-width: 620px) {
  .tiger-suspended-card {
    padding: 24px;
  }

  .tiger-suspended-card h1 {
    font-size: 28px;
  }

  .tiger-suspended-list li {
    display: block;
  }

  .tiger-suspended-list i {
    display: block;
    margin-bottom: 8px;
  }
}

/* =========================================
   TIGER-HITS DOWNLINE BUILDER
========================================= */

.tiger-dlb-help {
  max-width: 950px;
  margin: 30px auto;
  background: #ffffff;
  border: 2px solid #ffd08a;
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(242,107,33,0.14);
  overflow: hidden;
}

.tiger-dlb-summary {
  padding: 22px 28px;
  cursor: pointer;
  font-size: 28px;
  font-weight: 900;
  color: #f26b21;
  background: linear-gradient(135deg, #fff4df 0%, #ffffff 100%);
  list-style: none;
}

.tiger-dlb-summary::-webkit-details-marker {
  display: none;
}

.tiger-dlb-content {
  padding: 30px;
}

.tiger-dlb-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff8c00, #f26b21);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.tiger-dlb-header h2,
.tiger-dlb-section h3 {
  color: #f26b21;
  font-weight: 900;
}

.tiger-dlb-header p {
  color: #333333;
  line-height: 1.7;
  font-size: 16px;
}

.tiger-dlb-section {
  margin-top: 28px;
}

.tiger-dlb-list,
.tiger-dlb-steps {
  color: #333333;
  line-height: 1.8;
}

.tiger-dlb-list li,
.tiger-dlb-steps li {
  margin-bottom: 10px;
}

.tiger-dlb-example {
  background: #fff8ef;
  border: 1px solid #ffd08a;
  border-left: 5px solid #ff8c00;
  padding: 20px;
  border-radius: 16px;
}

.tiger-dlb-example label {
  display: block;
  font-weight: 800;
  margin-bottom: 10px;
  color: #333333;
}

.tiger-dlb-example-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tiger-dlb-example input {
  flex: 1;
  min-width: 250px;
  padding: 12px 14px;
  border: 2px solid #ffd08a;
  border-radius: 12px;
}

.tiger-dlb-example button {
  background: linear-gradient(135deg, #ff8c00, #f26b21);
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.tiger-dlb-footer {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(242,107,33,0.15);
  text-align: center;
}

.tiger-dlb-oneclick {
  display: inline-block;
  padding: 14px 18px;
  background: #fff4df;
  border: 1px solid #ffd08a;
  border-radius: 14px;
}

.tiger-dlb-footer p {
  margin-top: 14px;
  color: #555555;
}

@media (max-width: 768px) {
  .tiger-dlb-summary {
    font-size: 22px;
  }

  .tiger-dlb-content {
    padding: 20px;
  }
}

/* =========================================
   TIGER-HITS DELETED ACCOUNT PAGE
========================================= */

.tiger-deleted-section {
  padding: 45px 18px;
  background: linear-gradient(135deg, #fff4df 0%, #ffffff 48%, #ffe0b2 100%);
}

.tiger-deleted-card {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid #ffd08a;
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(242,107,33,0.16);
  padding: 34px;
}

.tiger-deleted-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff8c00, #f26b21);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.tiger-deleted-card h1 {
  color: #f26b21;
  font-size: 34px;
  font-weight: 900;
  margin: 0 0 14px;
}

.tiger-deleted-card h2 {
  color: #d35400;
  font-size: 24px;
  font-weight: 900;
  margin: 28px 0 16px;
}

.tiger-deleted-intro {
  color: #333333;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.tiger-deleted-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tiger-deleted-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff8ef;
  border: 1px solid #ffd08a;
  border-left: 6px solid #ff8c00;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
  color: #333333;
  line-height: 1.6;
}

.tiger-deleted-list i {
  color: #f26b21;
  font-size: 20px;
  margin-top: 3px;
  min-width: 24px;
  text-align: center;
}

.tiger-deleted-list a {
  color: #f26b21 !important;
  font-weight: 800;
  text-decoration: none;
}

.tiger-deleted-list a:hover {
  color: #d35400 !important;
  text-decoration: underline;
}

.tiger-deleted-notice {
  margin-top: 24px;
  background: #fff4df;
  border: 1px solid #ffd08a;
  border-radius: 16px;
  padding: 18px;
}

.tiger-deleted-notice p {
  margin: 0 0 12px;
  color: #333333;
  font-size: 15px;
  line-height: 1.7;
}

.tiger-deleted-notice p:last-child {
  margin-bottom: 0;
}

.tiger-deleted-actions {
  text-align: center;
  margin-top: 24px;
}

.tiger-deleted-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff8c00, #f26b21);
  color: #ffffff !important;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none !important;
  box-shadow: 0 12px 25px rgba(255,140,0,0.25);
  transition: all 0.25s ease;
}

.tiger-deleted-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255,140,0,0.35);
}

@media (max-width: 620px) {
  .tiger-deleted-card {
    padding: 24px;
  }

  .tiger-deleted-card h1 {
    font-size: 28px;
  }

  .tiger-deleted-list li {
    display: block;
  }

  .tiger-deleted-list i {
    display: block;
    margin-bottom: 8px;
  }
}

.tiger-content-card,
.tiger-commissions-page {
  max-width: 1000px;
  margin: 30px auto;
  background: #ffffff;
  border: 2px solid #ffd08a;
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(242,107,33,0.16);
  padding: 34px;
  color: #333333;
}

.tiger-page-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff8c00, #f26b21);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.tiger-commissions-page h2 {
  color: #f26b21;
  font-size: 28px;
  font-weight: 900;
  margin: 28px 0 12px;
}

.tiger-commissions-page h3 {
  color: #d35400;
  font-size: 21px;
  font-weight: 900;
  margin: 24px 0 10px;
}

.tiger-commissions-page p,
.tiger-commissions-page li {
  font-size: 15px;
  line-height: 1.7;
}

.tiger-commissions-page a {
  color: #f26b21 !important;
  font-weight: 800;
}

.tiger-info-box,
.tiger-compliance-note {
  background: #fff4df;
  border: 1px solid #ffd08a;
  border-left: 6px solid #ff8c00;
  border-radius: 16px;
  padding: 18px;
  margin: 22px 0;
}

.tiger-commissions-list {
  background: #fff8ef;
  border: 1px solid #ffd08a;
  border-radius: 16px;
  padding: 18px 18px 18px 36px;
}

/* =========================================
   TIGER-HITS DELETE CONFIRMATION
========================================= */

.tiger-delete-confirm-section {
  padding: 45px 18px;
  background: linear-gradient(135deg, #fff4df 0%, #ffffff 48%, #ffe0b2 100%);
}

.tiger-delete-confirm-card {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid #ffd08a;
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(242,107,33,0.16);
  padding: 34px;
}

.tiger-delete-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff8c00, #f26b21);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.tiger-delete-confirm-card h2 {
  color: #f26b21;
  font-size: 34px;
  font-weight: 900;
  margin: 0 0 16px;
}

.tiger-delete-intro {
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
}

.tiger-delete-warning {
  margin: 22px 0;
  background: #fff4df;
  border: 1px solid #ffd08a;
  border-left: 6px solid #ff8c00;
  border-radius: 16px;
  padding: 18px;
  color: #333333;
  line-height: 1.6;
}

.tiger-delete-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tiger-delete-list li {
  background: #fff8ef;
  border: 1px solid #ffd08a;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
  color: #333333;
  line-height: 1.7;
}

.tiger-delete-action-note {
  margin-top: 22px;
  padding: 18px;
  background: #ffffff;
  border: 2px dashed #ffd08a;
  border-radius: 16px;
  color: #555555;
  line-height: 1.7;
}

.tiger-delete-confirm-text {
  margin-top: 24px;
  text-align: center;
  color: #333333;
  line-height: 1.7;
}

.tiger-delete-btns {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.tiger-btn-delete,
.tiger-btn-cancel {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.tiger-btn-delete {
  background: linear-gradient(135deg, #d62828, #b71c1c);
  color: #ffffff !important;
}

.tiger-btn-delete:hover {
  transform: translateY(-2px);
}

.tiger-btn-cancel {
  background: #fff4df;
  border: 2px solid #ffd08a;
  color: #f26b21 !important;
}

.tiger-btn-cancel:hover {
  background: #ffe0b2;
}

@media (max-width: 620px) {
  .tiger-delete-confirm-card {
    padding: 24px;
  }

  .tiger-delete-confirm-card h2 {
    font-size: 28px;
  }

  .tiger-delete-btns {
    display: block;
  }

  .tiger-btn-delete,
  .tiger-btn-cancel {
    display: block;
    text-align: center;
    margin-bottom: 12px;
  }
}

/* =========================================
   TIGER-HITS DELETE CONFIRM BUTTONS
========================================= */

.tiger-delete-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.tiger-delete-submit,
.tiger-delete-cancel {
  border: none;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tiger-delete-submit {
  background: linear-gradient(135deg, #d62828, #b71c1c);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(214,40,40,0.28);
}

.tiger-delete-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(214,40,40,0.38);
}

.tiger-delete-cancel {
  background: #fff4df;
  color: #f26b21;
  border: 2px solid #ffd08a;
}

.tiger-delete-cancel:hover {
  background: #ffe0b2;
}

@media (max-width: 620px) {
  .tiger-delete-actions {
    display: block;
  }

  .tiger-delete-submit,
  .tiger-delete-cancel {
    display: block;
    width: 100%;
    margin-bottom: 12px;
  }
}

/* =========================================
   TIGER-HITS SQUARE BANNER INFO
========================================= */

.tiger-square-banner-section {
  padding: 35px 18px;
  background: linear-gradient(135deg, #fff4df 0%, #ffffff 48%, #ffe0b2 100%);
}

.tiger-square-banner-card {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid #ffd08a;
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(242,107,33,0.16);
  padding: 34px;
  text-align: center;
}

.tiger-square-banner-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff8c00, #f26b21);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.tiger-square-banner-card h2 {
  color: #f26b21;
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 18px;
}

.tiger-square-banner-intro {
  color: #333333;
  font-size: 16px;
  line-height: 1.7;
}

.tiger-square-banner-intro a {
  color: #f26b21 !important;
  font-weight: 800;
  text-decoration: none;
}

.tiger-square-banner-intro a:hover {
  color: #d35400 !important;
  text-decoration: underline;
}

.tiger-square-banner-notice {
  margin-top: 24px;
  background: #fff8ef;
  border: 1px solid #ffd08a;
  border-left: 6px solid #ff8c00;
  border-radius: 18px;
  padding: 22px;
  text-align: left;
}

.tiger-square-banner-notice p {
  color: #333333;
  line-height: 1.7;
  margin: 0 0 12px;
}

.tiger-square-banner-notice p:last-child {
  margin-bottom: 0;
}

.tiger-square-banner-actions {
  margin-top: 26px;
}

.tiger-square-banner-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff8c00, #f26b21);
  color: #ffffff !important;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none !important;
  box-shadow: 0 12px 25px rgba(255,140,0,0.25);
  transition: all 0.25s ease;
}

.tiger-square-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255,140,0,0.35);
}

@media (max-width: 620px) {
  .tiger-square-banner-card {
    padding: 24px;
  }

  .tiger-square-banner-card h2 {
    font-size: 26px;
  }

  .tiger-square-banner-notice {
    text-align: center;
  }
}

.tiger-bounce-warning {
    background: linear-gradient(135deg, #fff8e1, #ffffff);
    border: 2px solid #f59e0b;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    margin: 20px auto;
    max-width: 900px;
}

.tiger-bounce-header {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    padding: 18px 25px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

.tiger-bounce-content {
    padding: 30px;
    color: #374151;
}

.tiger-bounce-content h2 {
    color: #ea580c;
    text-align: center;
    margin-bottom: 20px;
}

.bounce-email {
    word-break: break-word;
    color: #dc2626;
}

.bounce-issues {
    margin: 15px 0 25px 25px;
}

.tiger-alert-box,
.tiger-tip-box {
    padding: 18px;
    border-radius: 14px;
    margin: 20px 0;
    text-align: center;
}

.tiger-alert-box {
    background: #fff7ed;
    border: 1px solid #fdba74;
}

.tiger-tip-box {
    background: #eff6ff;
    border: 1px solid #93c5fd;
}

.bounce-note {
    text-align: center;
    font-weight: 600;
}

.bounce-support-wrap {
    text-align: center;
    margin-top: 25px;
}

.tiger-btn-support {
    display: inline-block;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tiger-btn-support:hover {
    transform: translateY(-2px);
}

.tiger-profile-card {
    max-width: 850px;
    margin: 25px auto;
    background: #ffffff;
    border: 2px solid #f59e0b;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    overflow: hidden;
}

.tiger-profile-card-header {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #ffffff;
    text-align: center;
    padding: 22px;
}

.tiger-profile-card-header h2 {
    margin: 0 0 8px;
    color: #ffffff;
}

.tiger-profile-card-header p {
    margin: 0;
    color: #fff7ed;
}

.tiger-profile-form {
    padding: 25px;
}

.tiger-form-grid {
    display: block;
}

.tiger-form-field {
    display: grid;
    grid-template-columns: 190px 1fr;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.tiger-form-field label {
    font-weight: 700;
    color: #7c2d12;
    text-align: right;
}

.tiger-form-field input,
.tiger-form-field select {
    width: 100%;
    max-width: 420px;
    padding: 9px 11px;
    border: 1px solid #fdba74;
    border-radius: 8px;
    font-size: 14px;
}

.tiger-form-field input:focus,
.tiger-form-field select:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249,115,22,0.18);
}

.tiger-alert-box,
.tiger-warning-box,
.tiger-tip-box,
.tiger-danger-notice {
    max-width: 700px;
    margin: 18px auto;
    padding: 14px 18px;
    border-radius: 12px;
    text-align: center;
    line-height: 1.5;
}

.tiger-alert-box {
    background: #fff7ed;
    border: 1px solid #fdba74;
}

.tiger-warning-box {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    color: #78350f;
}

.tiger-tip-box {
    background: #eff6ff;
    border: 1px solid #93c5fd;
}

.tiger-danger-notice {
    background: #fee2e2;
    border: 1px solid #dc2626;
    color: #7f1d1d;
}

.tiger-checkbox-row {
    max-width: 700px;
    margin: 15px auto;
    font-weight: 700;
    color: #7c2d12;
}

.tiger-profile-actions {
    text-align: center;
    margin-top: 25px;
}

.tiger-btn {
    display: inline-block;
    margin: 6px;
    padding: 11px 20px;
    border-radius: 999px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.tiger-btn-primary {
    background: #f97316;
    color: #ffffff;
}

.tiger-btn-secondary {
    background: #ffedd5;
    color: #9a3412;
    border: 1px solid #fdba74;
}

.tiger-btn-danger {
    background: #dc2626;
    color: #ffffff;
}

@media screen and (max-width: 700px) {
    .tiger-form-field {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .tiger-form-field label {
        text-align: left;
    }

    .tiger-form-field input,
    .tiger-form-field select {
        max-width: 100%;
    }
}

/* =========================================================
   Tiger-Hits func.php Output Styling
   Add this to style.css
   ========================================================= */

/* TIGER-HITS CHANGE START: Modern pagination styling for pageNav(). */
.tiger-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin: 20px auto;
    padding: 12px;
    text-align: center;
}

.tiger-pagination-label {
    font-weight: 800;
    color: #7c2d12;
    margin-right: 4px;
}

.tiger-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid #fdba74;
    background: #fff7ed;
    color: #9a3412;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
}

.tiger-page-link:hover {
    background: #fed7aa;
    color: #7c2d12;
    transform: translateY(-1px);
}

.tiger-page-current {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #ffffff;
    border-color: #ea580c;
}

.tiger-pagination-ellipsis {
    color: #9a3412;
    font-weight: 800;
    padding: 0 4px;
}
/* TIGER-HITS CHANGE END: Modern pagination styling for pageNav(). */


/* TIGER-HITS CHANGE START: Member text ad styling for member_text(). */
.tiger-member-text-ad {
    font-size: 15px;
    color: #ea580c;
    font-weight: 800;
    text-decoration: underline;
}

.tiger-member-text-ad:hover {
    color: #c2410c;
}
/* TIGER-HITS CHANGE END: Member text ad styling for member_text(). */


/* TIGER-HITS CHANGE START: Optional global dropdown polish for Tiger-Hits forms. */
select {
    border: 1px solid #fdba74;
    border-radius: 8px;
    padding: 8px 10px;
    background-color: #ffffff;
    color: #374151;
}

select:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249,115,22,0.18);
}
/* TIGER-HITS CHANGE END: Optional global dropdown polish for Tiger-Hits forms. */


@media screen and (max-width: 600px) {
    .tiger-pagination {
        gap: 5px;
        padding: 8px;
    }

    .tiger-page-link {
        min-width: 30px;
        height: 30px;
        padding: 0 8px;
        font-size: 13px;
    }
}

.tiger-global-ads {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 18px;
    padding: 14px;
    background: linear-gradient(135deg, #fff7ed, #ffffff);
    border: 1px solid #fdba74;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.tiger-global-ads-header {
    text-align: center;
    margin-bottom: 12px;
}

.tiger-member-text-ads {
    font-size: 15px;
    font-weight: 700;
    color: #9a3412;
}

.tiger-separator {
    display: inline-block;
    margin: 0 12px;
    color: #ea580c;
    font-weight: 800;
}

.tiger-ad-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 10px 0;
}

.tiger-ad-slot {
    text-align: center;
    max-width: 100%;
    overflow: hidden;
}

.tiger-ad-slot iframe,
.tiger-ad-slot img {
    max-width: 100%;
    height: auto;
}

.tiger-square-network-ads {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #fdba74;
}

.tiger-square-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.tiger-square-item {
    flex: 0 0 auto;
    background: #ffffff;
    padding: 6px;
    border-radius: 12px;
    border: 1px solid #fed7aa;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.25s ease;
}

.tiger-square-item:hover {
    transform: translateY(-3px);
}

.tiger-square-item img {
    display: block;
    max-width: 125px;
    height: auto;
    border-radius: 8px;
}

.tiger-network-cta {
    text-align: center;
    margin-top: 18px;
}

.tiger-network-cta a {
    color: #9a3412;
    font-weight: 800;
    text-decoration: underline;
    font-size: 15px;
}

.tiger-network-cta a:hover {
    color: #ea580c;
}

.tiger-global-ads {
    width: 100%;
    max-width: 1000px;
    margin: 8px auto 18px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.tiger-member-text-ads {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #9a3412;
    margin-bottom: 10px;
}

.tiger-separator {
    display: inline-block;
    margin: 0 12px;
    color: #ea580c;
    font-weight: 800;
}

.tiger-ad-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 8px 0;
}

.tiger-ad-slot {
    text-align: center;
    max-width: 100%;
    overflow: hidden;
}

.tiger-ad-slot iframe,
.tiger-ad-slot img {
    max-width: 100%;
    height: auto;
}

.tiger-square-network-ads {
    margin-top: 10px;
}

.tiger-square-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.tiger-square-item {
    padding: 2px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.tiger-square-item img {
    display: block;
    max-width: 125px;
    height: auto;
}

.tiger-network-cta {
    text-align: center;
    margin-top: 10px;
}

.tiger-network-cta a {
    color: #9a3412;
    font-weight: 800;
    text-decoration: underline;
    font-size: 15px;
}

.tiger-network-cta a:hover {
    color: #ea580c;
}

/* =========================================================
   Tiger-Hits Payment Instruction Blocks
   Used for: Uphold, Skrill, Coinbase, Bitcoin, Wise, Cash App
   ========================================================= */

.tiger-payment-instructions {
    text-align: center;
    max-width: 620px;
    margin: 18px auto;
    padding: 16px 12px;
    color: #374151;
    line-height: 1.5;
}

.tiger-payment-brand {
    margin-bottom: 10px;
}

.tiger-payment-brand img {
    max-width: 240px;
    width: 100%;
    height: auto;
    border: 0;
}

.tiger-payment-signup {
    margin: 10px 0 16px;
}

.tiger-payment-signup a {
    color: #ea580c;
    font-size: 16px;
    font-weight: 800;
    text-decoration: underline;
}

.tiger-payment-signup a:hover {
    color: #c2410c;
}

.tiger-payment-highlight {
    max-width: 500px;
    margin: 14px auto;
    padding: 14px 16px;
    background: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: 12px;
}

.tiger-payment-value {
    margin-top: 8px;
    font-size: 19px;
    font-weight: 800;
    color: #9a3412;
    word-break: break-word;
}

.tiger-wallet-address {
    font-family: monospace;
    font-size: 16px;
    word-break: break-all;
}

.tiger-payment-note {
    max-width: 540px;
    margin: 12px auto;
    font-size: 15px;
    color: #374151;
}

.tiger-payment-note a {
    color: #ea580c;
    font-weight: 800;
    text-decoration: underline;
}

.tiger-payment-note a:hover {
    color: #c2410c;
}

.tiger-payment-availability {
    display: inline-block;
    margin: 8px auto 12px;
    padding: 8px 14px;
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 999px;
    color: #78350f;
    font-size: 14px;
    font-weight: 800;
}

@media screen and (max-width: 600px) {
    .tiger-payment-instructions {
        max-width: 100%;
        padding: 14px 8px;
    }

    .tiger-payment-brand img {
        max-width: 210px;
    }

    .tiger-payment-value {
        font-size: 17px;
    }

    .tiger-wallet-address {
        font-size: 14px;
    }
}

/* =========================================================
   Tiger-Hits PiggyBank Header
   ========================================================= */

.tiger-piggybank-header {
    max-width: 720px;
    margin: 18px auto 24px;
    padding: 16px 12px;
    text-align: center;
    color: #374151;
}

.tiger-piggybank-balance {
    font-size: 24px;
    font-weight: 800;
    color: #7c2d12;
    margin-bottom: 14px;
}

.tiger-piggybank-balance strong {
    color: #ea580c;
}

.tiger-piggybank-promo {
    margin: 12px auto;
}

.tiger-piggybank-promo a {
    color: #dc2626;
    font-size: 20px;
    font-weight: 800;
    text-decoration: underline;
}

.tiger-piggybank-promo a:hover {
    color: #b91c1c;
}

.tiger-piggybank-upgrade {
    margin: 12px auto;
}

.tiger-piggybank-upgrade a {
    display: inline-block;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.tiger-piggybank-upgrade a:hover {
    background: linear-gradient(135deg, #ea580c, #c2410c);
}

/* PiggyBank page wrapper */
.tiger-piggy-page {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

/* Deposit section */
.tiger-deposit-options-section {
    width: 100%;
    margin: 25px auto;
    text-align: center;
}

.tiger-deposit-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}

/* Each payment method */
.tiger-deposit-option {
    background: #ffffff;
    border: 1px solid #fdba74;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Keep payment method content centered */
.tiger-deposit-description,
.tiger-payment-instructions {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* Logo sizing inside payment cards */
.tiger-payment-brand img {
    max-width: 180px;
    width: 100%;
    height: auto;
    margin: 0 auto 10px;
    display: block;
}

/* Payment form stays under its matching method */
.tiger-deposit-form {
    margin-top: 14px;
    text-align: center;
}

.tiger-deposit-form input[type="text"],
.tiger-deposit-form textarea {
    width: 90%;
    max-width: 240px;
    margin: 6px auto;
    display: block;
}

.tiger-piggy-btn {
    display: inline-block;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 10px;
}

/* Tables */
.tiger-table-wrap {
    width: 100%;
    overflow-x: auto;
    margin: 15px auto;
}

.tiger-piggy-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.tiger-piggy-table th {
    background: #f97316;
    color: #ffffff;
    padding: 10px;
}

.tiger-piggy-table td {
    padding: 9px;
    border-bottom: 1px solid #fed7aa;
}

/* Responsive */
@media screen and (max-width: 900px) {
    .tiger-deposit-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .tiger-deposit-options-grid {
        grid-template-columns: 1fr;
    }
}

.tiger-bounce-update-section {
    max-width: 850px;
    margin: 20px auto;
    padding: 10px;
}

.tiger-bounce-template-wrap {
    margin-bottom: 20px;
}

.tiger-bounce-email-form {
    max-width: 620px;
    margin: 20px auto;
    padding: 18px;
    text-align: center;
}

.tiger-bounce-email-form .tiger-form-field {
    margin-bottom: 16px;
}

.tiger-bounce-email-form label {
    display: block;
    font-weight: 800;
    color: #7c2d12;
    margin-bottom: 6px;
}

.tiger-bounce-email-form input[type="text"] {
    width: 100%;
    max-width: 420px;
    padding: 10px 12px;
    border: 1px solid #fdba74;
    border-radius: 8px;
}

.tiger-bounce-actions {
    margin-top: 18px;
    text-align: center;
}

/* Standardize ALL Tiger-Hits sidebar ad images */
.tiger-sidebar-ad {
    text-align: center;
    margin: 12px auto;
    width: 100%;
}

.tiger-sidebar-ad a {
    display: block;
    text-align: center;
}

.tiger-sidebar-ad img {
    width: 125px;
    height: 125px;
    max-width: 125px;
    max-height: 125px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

/* Optional owner/admin box alignment cleanup */
.tiger-owner-box {
    width: 125px;
    margin: 12px auto;
    text-align: center;
}

/* =========================================================
   Tiger-Hits Team Surf Styling
   ========================================================= */

.tiger-team-header {
    max-width: 950px;
    margin: 20px auto;
    padding: 10px;
    color: #374151;
    line-height: 1.6;
}

.tiger-team-section {
    margin-bottom: 24px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #fed7aa;
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.tiger-team-section h3 {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 800;
    color: #9a3412;
    border-bottom: 2px solid #fdba74;
    padding-bottom: 8px;
}

.tiger-team-section h4 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 800;
    color: #7c2d12;
}

.tiger-team-section p {
    margin: 10px 0;
    font-size: 15px;
    color: #374151;
}

.tiger-team-section strong {
    color: #ea580c;
    font-weight: 800;
}

.tiger-team-list {
    margin: 12px 0 12px 20px;
    padding: 0;
}

.tiger-team-list li {
    margin-bottom: 6px;
    font-size: 15px;
}

.tiger-team-prizes {
    margin-top: 18px;
    padding: 16px;
    background: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: 12px;
}

.tiger-team-prizes ol {
    margin: 10px 0 0 22px;
    padding: 0;
}

.tiger-team-prizes li {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #7c2d12;
}

/* Optional alert/info box styling if reused elsewhere */
.tiger-team-info-box {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 14px;
    color: #78350f;
    font-weight: 700;
}

/* Mobile */
@media screen and (max-width: 768px) {
    .tiger-team-header {
        padding: 6px;
    }

    .tiger-team-section {
        padding: 14px;
    }

    .tiger-team-section h3 {
        font-size: 19px;
    }

    .tiger-team-section h4 {
        font-size: 16px;
    }

    .tiger-team-section p,
    .tiger-team-list li,
    .tiger-team-prizes li {
        font-size: 14px;
    }
}

/* Fix Team Surf page footer alignment */
.tiger-team-header {
    max-width: 950px;
    margin: 20px auto;
    padding: 10px;
    color: #374151;
    line-height: 1.6;
    clear: both;
    display: block;
    overflow: hidden;
}

/* Force footer below floated content */
#footer,
.footer,
.tiger-footer {
    clear: both;
    width: 100%;
    display: block;
}

.tiger-team-header::after {
    content: "";
    display: table;
    clear: both;
}

/* =========================================================
   Tiger-Hits Team Surf Plugin - Phase 1 Layout Safety CSS
   Add this to style.css after existing Team Surf CSS
   ========================================================= */

.tiger-teamsurf-page {
    width: 100%;
    max-width: 980px;
    margin: 20px auto;
    padding: 0 10px;
    clear: both;
    display: block;
    box-sizing: border-box;
}

.tiger-teamsurf-wrap {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
}

.tiger-teamsurf-intro {
    margin: 0 auto 18px;
    padding: 16px;
    background: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: 14px;
}

.tiger-teamsurf-intro h2 {
    margin: 0 0 10px;
    color: #9a3412;
    font-size: 24px;
    font-weight: 800;
}

.tiger-teamsurf-intro p {
    max-width: 760px;
    margin: 0 auto;
    color: #374151;
    line-height: 1.5;
}

.tiger-teamsurf-message {
    max-width: 760px;
    margin: 14px auto;
    padding: 12px 16px;
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 12px;
    color: #78350f;
    text-align: center;
}

.tiger-teamsurf-tab-panel {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 20px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #fed7aa;
    border-radius: 14px;
    box-sizing: border-box;
    overflow-x: auto;
}

.tiger-teamsurf-info-content {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
}

#teamtabs.shadetabs {
    max-width: 900px;
    margin: 0 auto 12px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    border-bottom: none;
}

#teamtabs.shadetabs li {
    list-style: none;
    margin: 0;
    padding: 0;
}

#teamtabs.shadetabs li a {
    display: inline-block;
    padding: 9px 13px;
    background: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: 999px;
    color: #9a3412;
    font-weight: 800;
    text-decoration: none;
}

#teamtabs.shadetabs li a.selected,
#teamtabs.shadetabs li a:hover {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #ffffff;
}

.tiger-teamsurf-page table {
    max-width: 100%;
}

.tiger-teamsurf-page input[type="submit"],
.tiger-teamsurf-page input[type="button"],
.tiger-teamsurf-page button {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 800;
    cursor: pointer;
}

.tiger-teamsurf-page input[type="text"],
.tiger-teamsurf-page select,
.tiger-teamsurf-page textarea {
    border: 1px solid #fdba74;
    border-radius: 8px;
    padding: 7px 9px;
}

@media screen and (max-width: 700px) {
    .tiger-teamsurf-page {
        padding: 0 6px;
    }

    .tiger-teamsurf-tab-panel {
        padding: 10px;
    }

    #teamtabs.shadetabs li a {
        font-size: 13px;
        padding: 8px 10px;
    }
}

/* =========================================================
   Tiger-Hits Team Surf Plugin - Phase 2 UI Polish
   Add AFTER the Phase 1 Team Surf CSS in style.css
   ========================================================= */

/* Main page polish */
.tiger-teamsurf-page {
    color: #374151;
    font-family: Verdana, Arial, Helvetica, sans-serif;
}

/* Keep old plugin tables contained and visually consistent */
.tiger-teamsurf-page table {
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
}

.tiger-teamsurf-tab-panel > div {
    box-sizing: border-box;
}

/* General tab content area */
.tiger-teamsurf-page .tabcontent,
.tiger-teamsurf-page #team6 {
    width: 100%;
    box-sizing: border-box;
    color: #374151;
}

/* Legacy font cleanup inside plugin output */
.tiger-teamsurf-page font {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: inherit;
}

/* Tables inside Team Surf tabs */
.tiger-teamsurf-page .tabcontent table,
.tiger-teamsurf-page #team6 table {
    width: 100%;
    max-width: 100%;
    background: #ffffff;
}

.tiger-teamsurf-page .tabcontent td,
.tiger-teamsurf-page #team6 td {
    padding: 8px;
    vertical-align: middle;
    color: #374151;
}

/* Subtle row separation without relying on old inline HR tags */
.tiger-teamsurf-page .tabcontent tr,
.tiger-teamsurf-page #team6 tr {
    border-bottom: 1px solid #fed7aa;
}

/* Headline styling inside plugin tabs */
.tiger-teamsurf-page b {
    color: #7c2d12;
}

/* Links */
.tiger-teamsurf-page a {
    color: #ea580c;
    font-weight: 800;
    text-decoration: none;
}

.tiger-teamsurf-page a:hover {
    color: #c2410c;
    text-decoration: underline;
}

/* Top Teams / Top Members table-like sections */
.tiger-teamsurf-page hr {
    border: 0;
    height: 1px;
    background: #fed7aa;
    width: 96%;
    margin: 8px auto;
}

/* Member photos */
.tiger-teamsurf-page img[src*="teamsurf_photo.php"] {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fdba74;
    background: #fff7ed;
}

/* Make contact/member forms cleaner */
.tiger-teamsurf-page form {
    margin: 8px 0;
}

.tiger-teamsurf-page input[type="submit"] {
    min-width: 90px;
    text-align: center;
}

.tiger-teamsurf-page select {
    max-width: 220px;
}

/* Captain area visual emphasis */
.tiger-teamsurf-page form[action*="creditmember"],
.tiger-teamsurf-page form[action*="cashmember"],
.tiger-teamsurf-page form[action*="removemember"],
.tiger-teamsurf-page form[action*="newteam"] {
    max-width: 520px;
    margin: 14px auto;
    padding: 14px;
    background: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: 14px;
    text-align: center;
}

/* Inputs inside captain/start team forms */
.tiger-teamsurf-page form[action*="creditmember"] input[type="text"],
.tiger-teamsurf-page form[action*="cashmember"] input[type="text"],
.tiger-teamsurf-page form[action*="newteam"] input[type="text"],
.tiger-teamsurf-page form[action*="newteam"] textarea {
    margin: 6px auto;
    max-width: 280px;
}

/* Rewards panel */
#team5 p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Team info content from template */
.tiger-teamsurf-info-content .tiger-team-header {
    margin-top: 0;
}

.tiger-teamsurf-info-content .tiger-team-section {
    text-align: left;
}

/* Confirmation-style legacy screens if this CSS is loaded there */
.tiger-teamsurf-page center > font,
.tiger-teamsurf-page center b {
    line-height: 1.6;
}

/* Mobile table handling */
@media screen and (max-width: 768px) {
    .tiger-teamsurf-tab-panel {
        overflow-x: auto;
    }

    .tiger-teamsurf-page .tabcontent table,
    .tiger-teamsurf-page #team6 table {
        min-width: 520px;
    }

    .tiger-teamsurf-page img[src*="teamsurf_photo.php"] {
        width: 60px;
        height: 60px;
    }

    .tiger-teamsurf-page form[action*="creditmember"],
    .tiger-teamsurf-page form[action*="cashmember"],
    .tiger-teamsurf-page form[action*="removemember"],
    .tiger-teamsurf-page form[action*="newteam"] {
        max-width: 100%;
        padding: 12px;
    }
}

/* Team Surf confirmation cards */
.tiger-confirm-card {
    max-width: 520px;
    margin: 50px auto;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #fdba74;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    text-align: center;
}

.tiger-confirm-card h2 {
    margin: 0 0 14px;
    color: #9a3412;
    font-size: 26px;
    font-weight: 800;
}

.tiger-confirm-card p {
    margin-bottom: 22px;
    font-size: 16px;
    color: #374151;
    line-height: 1.5;
}

.tiger-confirm-btn {
    display: inline-block;
    padding: 12px 22px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff !important;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    margin: 10px 0;
}

.tiger-cancel-link {
    display: block;
    margin-top: 16px;
    color: #6b7280;
    font-weight: 700;
    text-decoration: none;
}

.tiger-captain-area {
    max-width: 760px;
    margin: 28px auto;
    padding: 20px;
    background: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: 16px;
    text-align: center;
}

.tiger-captain-area h3 {
    color: #9a3412;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 18px;
}

.tiger-captain-action {
    margin-bottom: 20px;
}

.tiger-captain-link {
    color: #ea580c;
    font-weight: 800;
    text-decoration: underline;
}

.tiger-captain-form {
    margin: 18px auto;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #fed7aa;
    border-radius: 14px;
    max-width: 520px;
}

.tiger-captain-form h4 {
    color: #7c2d12;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
}

.tiger-captain-form select,
.tiger-captain-form input[type="text"] {
    display: block;
    width: 90%;
    max-width: 260px;
    margin: 8px auto;
}

.tiger-team-btn {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 9px 18px;
    font-weight: 800;
    cursor: pointer;
}

.tiger-team-btn-danger {
    background: #dc2626;
}

.tiger-captain-danger {
    border-color: #fecaca;
}

/* Team Surf Start Team tab */
.tiger-start-team-box {
    max-width: 620px;
    margin: 20px auto;
    padding: 22px;
    background: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: 16px;
    text-align: center;
}

.tiger-start-team-box h3 {
    margin: 0 0 14px;
    color: #9a3412;
    font-size: 24px;
    font-weight: 800;
}

.tiger-start-team-box p {
    color: #374151;
    font-size: 15px;
    line-height: 1.5;
}

.tiger-start-team-intro {
    font-weight: 700;
}

.tiger-start-team-form {
    max-width: 420px;
    margin: 18px auto;
}

.tiger-start-team-form label {
    display: block;
    margin: 10px 0 5px;
    color: #7c2d12;
    font-weight: 800;
    text-align: left;
}

.tiger-start-team-form input[type="text"],
.tiger-start-team-form textarea {
    width: 100%;
    max-width: 100%;
    padding: 9px 10px;
    border: 1px solid #fdba74;
    border-radius: 8px;
}

.tiger-start-team-note {
    margin-top: 18px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    color: #374151;
    line-height: 1.5;
}

.tiger-start-team-note strong {
    color: #ea580c;
}

.tiger-start-team-locked {
    background: #fef3c7;
    border-color: #f59e0b;
}

.tiger-myteam-wrap {
    max-width: 900px;
    margin: 20px auto;
    text-align: center;
}

.tiger-myteam-header {
    background: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 22px;
}

.tiger-myteam-header h3 {
    margin: 0 0 16px;
    color: #9a3412;
    font-size: 24px;
    font-weight: 800;
}

.tiger-myteam-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.tiger-myteam-stats div {
    background: #ffffff;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    padding: 12px;
}

.tiger-myteam-stats strong,
.tiger-myteam-stats span {
    display: block;
}

.tiger-myteam-stats strong {
    color: #7c2d12;
    font-size: 14px;
}

.tiger-myteam-stats span {
    color: #ea580c;
    font-size: 18px;
    font-weight: 800;
}

.tiger-leave-team-btn {
    display: inline-block;
    background: #dc2626;
    color: #ffffff !important;
    border-radius: 999px;
    padding: 9px 18px;
    font-weight: 800;
    text-decoration: none;
}

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

.tiger-member-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #fed7aa;
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.tiger-captain-card {
    border-color: #f97316;
    background: linear-gradient(180deg, #fff7ed, #ffffff);
}

.tiger-member-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f97316;
    color: #ffffff;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 11px;
    font-weight: 800;
}

.tiger-member-badge-member {
    background: #f59e0b;
}

.tiger-member-photo {
    width: 78px;
    height: 78px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fdba74;
    margin-bottom: 10px;
}

.tiger-member-card h4 {
    color: #9a3412;
    margin: 8px 0 10px;
    font-size: 18px;
    font-weight: 800;
}

.tiger-member-details {
    text-align: left;
    font-size: 13px;
    margin: 12px auto;
}

.tiger-member-details p {
    margin: 6px 0;
}

.tiger-team-empty {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: 16px;
    text-align: center;
}

.tiger-team-empty-card {
    grid-column: 1 / -1;
}

@media screen and (max-width: 850px) {
    .tiger-member-card-grid,
    .tiger-myteam-stats {
        grid-template-columns: 1fr;
    }
}

/* Team Surf Top Teams tab */
.tiger-top-teams-wrap {
    max-width: 920px;
    margin: 20px auto;
    text-align: center;
}

.tiger-top-teams-wrap h3 {
    margin: 0 0 18px;
    color: #9a3412;
    font-size: 24px;
    font-weight: 800;
}

.tiger-top-teams-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.tiger-top-team-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #fed7aa;
    border-radius: 16px;
    padding: 18px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.tiger-team-rank {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #ffffff;
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 13px;
    font-weight: 800;
}

.tiger-team-card-body h4 {
    margin: 0 60px 8px 0;
    color: #9a3412;
    font-size: 18px;
    font-weight: 800;
}

.tiger-team-card-body p {
    margin: 0 0 14px;
    color: #374151;
    font-size: 14px;
    line-height: 1.5;
}

.tiger-team-card-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 14px 0;
}

.tiger-team-card-stats div {
    background: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
}

.tiger-team-card-stats strong,
.tiger-team-card-stats span {
    display: block;
}

.tiger-team-card-stats strong {
    color: #7c2d12;
    font-size: 12px;
}

.tiger-team-card-stats span {
    color: #ea580c;
    font-size: 17px;
    font-weight: 800;
}

.tiger-ask-captain-btn {
    display: inline-block;
    margin-top: 8px;
    text-align: center;
}

@media screen and (max-width: 800px) {
    .tiger-top-teams-grid {
        grid-template-columns: 1fr;
    }
}

/* Team Surf Top Members tab */
.tiger-top-members-wrap {
    max-width: 880px;
    margin: 20px auto;
    text-align: center;
}

.tiger-top-members-wrap h3 {
    margin: 0 0 16px;
    color: #9a3412;
    font-size: 24px;
    font-weight: 800;
}

.tiger-member-rank-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    margin-bottom: 18px;
}

.tiger-member-rank-links a {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    background: #fff7ed;
    border: 1px solid #fdba74;
    color: #9a3412;
    font-weight: 800;
    text-decoration: none;
}

.tiger-member-rank-links a:hover {
    background: #fed7aa;
}

.tiger-top-members-list {
    display: grid;
    gap: 10px;
}

.tiger-top-member-row {
    display: grid;
    grid-template-columns: 70px 1fr 150px auto;
    gap: 12px;
    align-items: center;
    background: #ffffff;
    border: 1px solid #fed7aa;
    border-radius: 14px;
    padding: 12px;
    text-align: left;
}

.tiger-top-member-rank {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #ffffff;
    border-radius: 999px;
    padding: 7px 10px;
    text-align: center;
    font-weight: 800;
}

.tiger-top-member-name strong {
    color: #9a3412;
    font-size: 16px;
}

.tiger-member-captain-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #fef3c7;
    color: #92400e;
    font-size: 11px;
    font-weight: 800;
}

.tiger-top-member-points {
    text-align: center;
}

.tiger-top-member-points strong,
.tiger-top-member-points span {
    display: block;
}

.tiger-top-member-points strong {
    color: #ea580c;
    font-size: 18px;
}

.tiger-top-member-points span {
    color: #7c2d12;
    font-size: 12px;
    font-weight: 700;
}

.tiger-top-member-action {
    text-align: right;
}

@media screen and (max-width: 750px) {
    .tiger-top-member-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tiger-top-member-action {
        text-align: center;
    }
}

.tiger-team-btn,
.tiger-team-btn:link,
.tiger-team-btn:visited {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #ffffff !important;
    border: none;
    border-radius: 999px;
    padding: 9px 18px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.tiger-team-btn:hover {
    color: #ffffff !important;
    text-decoration: none;
}

.tiger-rewards-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 25px;
  background: #ffffff;
  border: 2px solid #ffb703;
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  color: #2b2b2b;
}

.tiger-rewards-wrap h3,
.tiger-weekly-prizes h4 {
  margin: 0 0 18px;
  color: #d35400;
  text-align: center;
}

.tiger-rewards-wrap p {
  font-size: 15px;
  line-height: 1.6;
  margin: 12px 0;
}

.tiger-rewards-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 20px 0;
}

.tiger-rewards-stats div {
  background: #fff4d6;
  border: 1px solid #ffb703;
  border-radius: 14px;
  padding: 15px;
  text-align: center;
}

.tiger-rewards-stats strong {
  display: block;
  font-size: 26px;
  color: #d35400;
}

.tiger-rewards-stats span {
  display: block;
  font-size: 13px;
  font-weight: bold;
}

.tiger-weekly-prizes {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 2px dashed #ffb703;
}

.tiger-prize-list {
  margin-top: 15px;
}

.tiger-prize-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 12px;
  margin-bottom: 8px;
  background: #fffaf0;
  border-radius: 10px;
  border: 1px solid #ffe0a3;
}

.tiger-prize-rank {
  font-weight: bold;
  color: #d35400;
}

.tiger-prize-name {
  text-align: right;
}

@media screen and (max-width: 700px) {
  .tiger-rewards-stats {
    grid-template-columns: 1fr;
  }

  .tiger-prize-row {
    flex-direction: column;
    text-align: center;
  }

  .tiger-prize-name {
    text-align: center;
  }
}

.tiger-teamsurf-info-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 25px;
  background: #ffffff;
  border: 2px solid #ffb703;
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  color: #2b2b2b;
}

.tiger-teamsurf-info-card h3 {
  margin: 0 0 18px;
  text-align: center;
  color: #d35400;
}

.tiger-teamsurf-info-content {
  font-size: 15px;
  line-height: 1.6;
}

.tiger-teamsurf-info-content p {
  margin: 12px 0;
}

.tiger-teamsurf-info-content table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
}

.tiger-teamsurf-info-content img {
  max-width: 100%;
  height: auto;
}

.tiger-teamsurf-info-content a {
  color: #d35400;
  font-weight: bold;
}

.tiger-teamsurf-info-content a:hover {
  color: #ff8c00;
}

#teamtabs.shadetabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 20px 0;
  padding: 0;
  list-style: none;
  border-bottom: 2px solid #ffb703;
}

#teamtabs.shadetabs li {
  margin: 0;
  padding: 0;
}

#teamtabs.shadetabs li a {
  display: inline-block;
  padding: 10px 16px;
  background: #fff4d6;
  color: #2b2b2b;
  border: 1px solid #ffb703;
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

#teamtabs.shadetabs li a:hover {
  background: #ffb703;
  color: #ffffff;
}

#teamtabs.shadetabs li a.selected {
  background: #d35400;
  color: #ffffff;
  border-color: #d35400;
}

.tiger-teamsurf-tab-panel {
  max-width: 980px;
  margin: 0 auto 25px;
  padding: 20px 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

@media screen and (max-width: 700px) {
  #teamtabs.shadetabs {
    flex-direction: column;
    align-items: stretch;
  }

  #teamtabs.shadetabs li a {
    display: block;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #ffb703;
  }

.tiger-teamsurf-tab-panel {
  padding: 12px 0;
  border-radius: 0;
}
}


/* =========================================================
   Tiger-Hits Member Dashboard
   Converted from Bear-Hits member page classes.
   Add to style.css after existing Tiger-Hits styles.
   ========================================================= */

.tiger-member-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px;
  color: #2b2b2b;
  font-family: Verdana, Arial, sans-serif;
}

.tiger-grid {
  display: grid;
  grid-template-columns: minmax(260px, 34%) minmax(0, 66%);
  gap: 22px;
  align-items: start;
}

.tiger-card {
  background: #ffffff;
  border: 2px solid #ffb703;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  overflow: hidden;
}

.tiger-card h2,
.tiger-card h3,
.tiger-card h4,
.tiger-section-title {
  color: #d35400;
  margin-top: 0;
}

.tiger-card p,
.tiger-card li {
  font-size: 14px;
  line-height: 1.55;
}

.tiger-card a {
  color: #d35400;
  font-weight: bold;
}

.tiger-card a:hover {
  color: #ff8c00;
}

.tiger-center {
  text-align: center;
}

.tiger-input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  margin: 6px 0 10px;
  border: 1px solid #ffb703;
  border-radius: 10px;
  background: #fffaf0;
  color: #2b2b2b;
}

.tiger-btn,
.tiger-card button,
.tiger-card input[type="submit"],
.tiger-ad-btn {
  display: inline-block;
  padding: 10px 14px;
  margin: 5px 3px;
  background: #d35400;
  color: #ffffff !important;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0,0,0,0.18);
  transition: transform 0.15s ease, background 0.15s ease;
}

.tiger-btn:hover,
.tiger-card button:hover,
.tiger-card input[type="submit"]:hover,
.tiger-ad-btn:hover {
  background: #ff8c00;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.tiger-blue {
  background: #e8f5ff;
  border-color: #2d9cdb;
}

.tiger-green {
  background: #eaf9ea;
  border-color: #34a853;
}

.tiger-red {
  background: #fff0f0;
  border-color: #e74c3c;
}

.tiger-orange {
  background: #fff4d6;
  border-color: #ffb703;
}

.tiger-purple {
  background: #f5efff;
  border-color: #8e44ad;
}

.tiger-yellow {
  background: #fff9dc;
  border-color: #f1c40f;
}

.tiger-ads-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tiger-ad-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: #fffaf0;
  border: 1px solid #ffe0a3;
  border-radius: 14px;
}

.tiger-ad-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: #ffb703;
  border-radius: 50%;
  font-size: 20px;
}

.tiger-ad-info h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.tiger-ad-info p {
  margin: 0;
  font-size: 13px;
}

.tiger-stats-grid,
.tiger-rewards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tiger-stat-box {
  background: #fffaf0;
  border: 1px solid #ffe0a3;
  border-radius: 14px;
  padding: 15px;
  text-align: center;
}

.tiger-stat-box span {
  display: block;
  font-size: 13px;
  font-weight: bold;
}

.tiger-stat-box strong {
  display: block;
  margin-top: 6px;
  color: #d35400;
  font-size: 22px;
}



.tiger-side-banners {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0;
}

.tiger-partners {
  text-align: center;
}

.tiger-partners a {
  display: inline-block;
  margin: 8px;
}

.tiger-partners img,
.tiger-card img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 900px) {
  .tiger-grid {
    grid-template-columns: 1fr;
  }

  .tiger-ads-grid,
  .tiger-stats-grid,
  .tiger-rewards-grid {
    grid-template-columns: 1fr;
  }

  .tiger-ad-card {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .tiger-ad-btn {
    grid-column: 1 / -1;
    text-align: center;
  }
}

.tiger-grid {


/* =========================================================
   Tiger-Hits Member Dashboard
   Converted from Bear-Hits member page classes.
   Add to style.css after existing Tiger-Hits styles.
   ========================================================= */

.tiger-member-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px;
  color: #2b2b2b;
  font-family: Verdana, Arial, sans-serif;
}

.tiger-grid {
  display: grid;
  grid-template-columns: minmax(260px, 34%) minmax(0, 66%);
  gap: 22px;
  align-items: start;
}

.tiger-card {
  background: #ffffff;
  border: 2px solid #ffb703;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  overflow: hidden;
}

.tiger-card h2,
.tiger-card h3,
.tiger-card h4,
.tiger-section-title {
  color: #d35400;
  margin-top: 0;
}

.tiger-card p,
.tiger-card li {
  font-size: 14px;
  line-height: 1.55;
}

.tiger-card a {
  color: #d35400;
  font-weight: bold;
}

.tiger-card a:hover {
  color: #ff8c00;
}

.tiger-center {
  text-align: center;
}

.tiger-input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  margin: 6px 0 10px;
  border: 1px solid #ffb703;
  border-radius: 10px;
  background: #fffaf0;
  color: #2b2b2b;
}

.tiger-btn,
.tiger-card button,
.tiger-card input[type="submit"],
.tiger-ad-btn {
  display: inline-block;
  padding: 10px 14px;
  margin: 5px 3px;
  background: #d35400;
  color: #ffffff !important;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0,0,0,0.18);
  transition: transform 0.15s ease, background 0.15s ease;
}

.tiger-btn:hover,
.tiger-card button:hover,
.tiger-card input[type="submit"]:hover,
.tiger-ad-btn:hover {
  background: #ff8c00;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.tiger-blue {
  background: #e8f5ff;
  border-color: #2d9cdb;
}

.tiger-green {
  background: #eaf9ea;
  border-color: #34a853;
}

.tiger-red {
  background: #fff0f0;
  border-color: #e74c3c;
}

.tiger-orange {
  background: #fff4d6;
  border-color: #ffb703;
}

.tiger-purple {
  background: #f5efff;
  border-color: #8e44ad;
}

.tiger-yellow {
  background: #fff9dc;
  border-color: #f1c40f;
}

.tiger-ads-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tiger-ad-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: #fffaf0;
  border: 1px solid #ffe0a3;
  border-radius: 14px;
}

.tiger-ad-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: #ffb703;
  border-radius: 50%;
  font-size: 20px;
}

.tiger-ad-info h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.tiger-ad-info p {
  margin: 0;
  font-size: 13px;
}

.tiger-stats-grid,
.tiger-rewards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tiger-stat-box {
  background: #fffaf0;
  border: 1px solid #ffe0a3;
  border-radius: 14px;
  padding: 15px;
  text-align: center;
}

.tiger-stat-box span {
  display: block;
  font-size: 13px;
  font-weight: bold;
}

.tiger-stat-box strong {
  display: block;
  margin-top: 6px;
  color: #d35400;
  font-size: 22px;
}



.tiger-side-banners {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0;
}

.tiger-partners {
  text-align: center;
}

.tiger-partners a {
  display: inline-block;
  margin: 8px;
}

.tiger-partners img,
.tiger-card img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 900px) {
  .tiger-grid {
    grid-template-columns: 1fr;
  }

  .tiger-ads-grid,
  .tiger-stats-grid,
  .tiger-rewards-grid {
    grid-template-columns: 1fr;
  }

  .tiger-ad-card {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .tiger-ad-btn {
    grid-column: 1 / -1;
    text-align: center;
  }
}

/* Member page requested revisions */
.tiger-promo-code-card {
  background: linear-gradient(135deg, #fff4d6 0%, #ffffff 100%);
  border-color: #ffb703;
}

.tiger-promo-code-card h3 {
  color: #d35400;
}

.tiger-promo-code-card .tiger-input {
  background: #ffffff;
  border: 2px solid #ffb703;
}

.tiger-priority-grid {
  align-items: stretch;
  margin-bottom: 20px;
}

.tiger-surf-goal-card,
.tiger-promo-events-card {
  height: auto;
}

.tiger-surf-goal-card .tiger-btn,
.tiger-promo-code-card .tiger-btn,
.tiger-card button.tiger-btn {
  background: #d35400;
  color: #ffffff !important;
}

.tiger-surf-goal-card .tiger-btn:hover,
.tiger-promo-code-card .tiger-btn:hover,
.tiger-card button.tiger-btn:hover {
  background: #ff8c00;
  color: #ffffff !important;
}


/* Final Tiger-Hits member page polish */
.tiger-card {
  background: linear-gradient(135deg, #ffffff 0%, #fffaf0 100%);
  border-color: #ffb703;
}

.tiger-card h2 {
  font-size: 22px;
  line-height: 1.25;
  color: #d35400;
}

.tiger-card h3,
.tiger-card h4,
.tiger-section-title {
  font-size: 18px;
  line-height: 1.25;
  color: #d35400;
}

.tiger-card h4 {
  font-size: 16px;
}

.tiger-blue,
.tiger-green,
.tiger-red,
.tiger-orange,
.tiger-purple,
.tiger-yellow,
.tiger-reward-card,
.tiger-surf-goal-card,
.tiger-promo-events-card {
  background: linear-gradient(135deg, #fff4d6 0%, #ffffff 100%);
  border-color: #ffb703;
  color: #2b2b2b;
}

.tiger-claim-rewards-grid {
  margin-bottom: 20px;
}

.tiger-reward-card {
  text-align: center;
}

.tiger-skyscraper-pair {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 10px;
}


@media screen and (max-width: 420px) {
  .tiger-skyscraper-pair {
    flex-wrap: wrap;
  }
}



/* =========================================================
   Tiger-Hits Member Dashboard
   Converted from Bear-Hits member page classes.
   Add to style.css after existing Tiger-Hits styles.
   ========================================================= */

.tiger-member-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px;
  color: #2b2b2b;
  font-family: Verdana, Arial, sans-serif;
}

.tiger-grid {
  display: grid;
  grid-template-columns: minmax(260px, 34%) minmax(0, 66%);
  gap: 22px;
  align-items: start;
}

.tiger-card {
  background: #ffffff;
  border: 2px solid #ffb703;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  overflow: hidden;
}

.tiger-card h2,
.tiger-card h3,
.tiger-card h4,
.tiger-section-title {
  color: #d35400;
  margin-top: 0;
}

.tiger-card p,
.tiger-card li {
  font-size: 14px;
  line-height: 1.55;
}

.tiger-card a {
  color: #d35400;
  font-weight: bold;
}

.tiger-card a:hover {
  color: #ff8c00;
}

.tiger-center {
  text-align: center;
}

.tiger-input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  margin: 6px 0 10px;
  border: 1px solid #ffb703;
  border-radius: 10px;
  background: #fffaf0;
  color: #2b2b2b;
}

.tiger-btn,
.tiger-card button,
.tiger-card input[type="submit"],
.tiger-ad-btn {
  display: inline-block;
  padding: 10px 14px;
  margin: 5px 3px;
  background: #d35400;
  color: #ffffff !important;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0,0,0,0.18);
  transition: transform 0.15s ease, background 0.15s ease;
}

.tiger-btn:hover,
.tiger-card button:hover,
.tiger-card input[type="submit"]:hover,
.tiger-ad-btn:hover {
  background: #ff8c00;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.tiger-blue {
  background: #e8f5ff;
  border-color: #2d9cdb;
}

.tiger-green {
  background: #eaf9ea;
  border-color: #34a853;
}

.tiger-red {
  background: #fff0f0;
  border-color: #e74c3c;
}

.tiger-orange {
  background: #fff4d6;
  border-color: #ffb703;
}

.tiger-purple {
  background: #f5efff;
  border-color: #8e44ad;
}

.tiger-yellow {
  background: #fff9dc;
  border-color: #f1c40f;
}

.tiger-ads-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tiger-ad-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: #fffaf0;
  border: 1px solid #ffe0a3;
  border-radius: 14px;
}

.tiger-ad-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: #ffb703;
  border-radius: 50%;
  font-size: 20px;
}

.tiger-ad-info h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.tiger-ad-info p {
  margin: 0;
  font-size: 13px;
}

.tiger-stats-grid,
.tiger-rewards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tiger-stat-box {
  background: #fffaf0;
  border: 1px solid #ffe0a3;
  border-radius: 14px;
  padding: 15px;
  text-align: center;
}

.tiger-stat-box span {
  display: block;
  font-size: 13px;
  font-weight: bold;
}

.tiger-stat-box strong {
  display: block;
  margin-top: 6px;
  color: #d35400;
  font-size: 22px;
}



.tiger-side-banners {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0;
}

.tiger-partners {
  text-align: center;
}

.tiger-partners a {
  display: inline-block;
  margin: 8px;
}

.tiger-partners img,
.tiger-card img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 900px) {
  .tiger-grid {
    grid-template-columns: 1fr;
  }

  .tiger-ads-grid,
  .tiger-stats-grid,
  .tiger-rewards-grid {
    grid-template-columns: 1fr;
  }

  .tiger-ad-card {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .tiger-ad-btn {
    grid-column: 1 / -1;
    text-align: center;
  }
}

/* Member page requested revisions */
.tiger-promo-code-card {
  background: linear-gradient(135deg, #fff4d6 0%, #ffffff 100%);
  border-color: #ffb703;
}

.tiger-promo-code-card h3 {
  color: #d35400;
}

.tiger-promo-code-card .tiger-input {
  background: #ffffff;
  border: 2px solid #ffb703;
}

.tiger-priority-grid {
  align-items: stretch;
  margin-bottom: 20px;
}

.tiger-surf-goal-card,
.tiger-promo-events-card {
  height: auto;
}

.tiger-surf-goal-card .tiger-btn,
.tiger-promo-code-card .tiger-btn,
.tiger-card button.tiger-btn {
  background: #d35400;
  color: #ffffff !important;
}

.tiger-surf-goal-card .tiger-btn:hover,
.tiger-promo-code-card .tiger-btn:hover,
.tiger-card button.tiger-btn:hover {
  background: #ff8c00;
  color: #ffffff !important;
}


/* Final Tiger-Hits member page polish */
.tiger-card {
  background: linear-gradient(135deg, #ffffff 0%, #fffaf0 100%);
  border-color: #ffb703;
}

.tiger-card h2 {
  font-size: 22px;
  line-height: 1.25;
  color: #d35400;
}

.tiger-card h3,
.tiger-card h4,
.tiger-section-title {
  font-size: 18px;
  line-height: 1.25;
  color: #d35400;
}

.tiger-card h4 {
  font-size: 16px;
}

.tiger-blue,
.tiger-green,
.tiger-red,
.tiger-orange,
.tiger-purple,
.tiger-yellow,
.tiger-reward-card,
.tiger-surf-goal-card,
.tiger-promo-events-card {
  background: linear-gradient(135deg, #fff4d6 0%, #ffffff 100%);
  border-color: #ffb703;
  color: #2b2b2b;
}

.tiger-claim-rewards-grid {
  margin-bottom: 20px;
}

.tiger-reward-card {
  text-align: center;
}

.tiger-skyscraper-pair {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 10px;
}


@media screen and (max-width: 420px) {
  .tiger-skyscraper-pair {
    flex-wrap: wrap;
  }
}


/* Tiger-Hits member page follow-up revisions */
.tiger-promo-code-card .tiger-promo-submit,
.tiger-promo-code-card button[type="submit"] {
  display: inline-block;
  min-width: 120px;
  background: #d35400 !important;
  color: #ffffff !important;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  text-align: center;
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-text-fill-color: #ffffff;
}

.tiger-promo-code-card .tiger-promo-submit:hover,
.tiger-promo-code-card button[type="submit"]:hover {
  background: #ff8c00 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
}

.tiger-claim-rewards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.tiger-vote-card {
  text-align: center;
}

.tiger-vote-widget {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

@media screen and (max-width: 1000px) {
  .tiger-claim-rewards-grid {
    grid-template-columns: 1fr;
  }
}

.tiger-two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tiger-one-col {
  grid-template-columns: 1fr;
}

.tiger-stacked-rewards {
  display: grid;
  gap: 16px;
}

/* Tiger Hits Member Dashboard */

.tiger-member-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px;
  box-sizing: border-box;
  color: #2b2b2b;
}

.tiger-grid {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.tiger-card {
  background: #fffaf0;
  border: 2px solid #ffb703;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 16px;
  color: #2b2b2b;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  box-sizing: border-box;
}

.tiger-card h2 {
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 14px;
  color: #d35400;
}

.tiger-card h3 {
  font-size: 19px;
  line-height: 1.25;
  margin: 0 0 12px;
  color: #d35400;
}

.tiger-card p {
  font-size: 15px;
  line-height: 1.55;
}

.tiger-card a {
  color: #d35400;
  font-weight: bold;
}

.tiger-center {
  text-align: center;
}

.tiger-btn,
button.tiger-btn,
input.tiger-btn {
  display: inline-block;
  background: #d35400 !important;
  color: #ffffff !important;
  padding: 10px 16px;
  border: 0;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  margin: 4px;
  box-sizing: border-box;
}

.tiger-btn:hover,
button.tiger-btn:hover,
input.tiger-btn:hover {
  background: #ff8c00 !important;
  color: #ffffff !important;
}

.tiger-input {
  width: 100%;
  padding: 10px;
  margin: 8px 0 12px;
  border: 1px solid #ffb703;
  border-radius: 8px;
  box-sizing: border-box;
  background: #ffffff;
  color: #2b2b2b;
}

.tiger-promo-card {
  background: #fff4d6;
  border-color: #ffb703;
}

.tiger-rewards-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.tiger-two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tiger-one-col {
  grid-template-columns: 1fr;
}

.tiger-stacked-rewards {
  display: grid;
  gap: 16px;
}

.tiger-stacked-rewards .tiger-card {
  margin-bottom: 0;
}

.tiger-big-number {
  font-size: 30px;
  margin: 8px 0;
}

.tiger-blue,
.tiger-green,
.tiger-red,
.tiger-orange,
.tiger-purple,
.tiger-yellow {
  background: #fffaf0;
  border-color: #ffb703;
  color: #2b2b2b;
}

.tiger-blue h3,
.tiger-green h3,
.tiger-red h3,
.tiger-orange h3,
.tiger-purple h3,
.tiger-yellow h3 {
  color: #d35400;
}


.tiger-side-banners {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.tiger-side-banners {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: nowrap;
  margin: 12px 0;
}

.tiger-skyscraper-ad {
  width: 160px;
  min-width: 160px;
  min-height: 600px;
  flex: 0 0 160px;
  padding: 2px !important;   /* reduced */
}

.tiger-square-ad {
  width: 125px;
  min-height: 125px;
}

.tiger-banner-ad {
  width: 350px;
  min-height: 45px;
}

.tiger-vote-card #widget240 {
  display: flex;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 900px) {
  .tiger-grid,
  .tiger-two-col {
    grid-template-columns: 1fr;
  }

  .tiger-member-page {
    padding: 12px;
  }

  .tiger-card {
    padding: 16px;
  }

  .tiger-side-banners {
    flex-direction: column;
    align-items: center;
  }
}

/* Tiger Hits Member Dashboard */

.tiger-member-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px;
  box-sizing: border-box;
  color: #2b2b2b;
}

.tiger-grid {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.tiger-card {
  background: #fffaf0;
  border: 2px solid #ffb703;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 16px;
  color: #2b2b2b;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  box-sizing: border-box;
}

.tiger-card h2 {
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 14px;
  color: #d35400;
}

.tiger-card h3 {
  font-size: 19px;
  line-height: 1.25;
  margin: 0 0 12px;
  color: #d35400;
}

.tiger-card p {
  font-size: 15px;
  line-height: 1.55;
}

.tiger-card a {
  color: #d35400;
  font-weight: bold;
}

.tiger-center {
  text-align: center;
}

.tiger-btn,
button.tiger-btn,
input.tiger-btn {
  display: inline-block;
  background: #d35400 !important;
  color: #ffffff !important;
  padding: 10px 16px;
  border: 0;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  margin: 4px;
  box-sizing: border-box;
}

.tiger-btn:hover,
button.tiger-btn:hover,
input.tiger-btn:hover {
  background: #ff8c00 !important;
  color: #ffffff !important;
}

.tiger-input {
  width: 100%;
  padding: 10px;
  margin: 8px 0 12px;
  border: 1px solid #ffb703;
  border-radius: 8px;
  box-sizing: border-box;
  background: #ffffff;
  color: #2b2b2b;
}

.tiger-promo-card {
  background: #fff4d6;
  border-color: #ffb703;
}

.tiger-rewards-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.tiger-two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tiger-one-col {
  grid-template-columns: 1fr;
}

.tiger-stacked-rewards {
  display: grid;
  gap: 16px;
}

.tiger-stacked-rewards .tiger-card {
  margin-bottom: 0;
}

.tiger-big-number {
  font-size: 30px;
  margin: 8px 0;
}

.tiger-blue,
.tiger-green,
.tiger-red,
.tiger-orange,
.tiger-purple,
.tiger-yellow {
  background: #fffaf0;
  border-color: #ffb703;
  color: #2b2b2b;
}

.tiger-blue h3,
.tiger-green h3,
.tiger-red h3,
.tiger-orange h3,
.tiger-purple h3,
.tiger-yellow h3 {
  color: #d35400;
}



.tiger-side-banners {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0;
}


.tiger-square-ad {
  width: 125px;
  min-height: 125px;
}

.tiger-banner-ad {
  width: 350px;
  min-height: 45px;
}

.tiger-vote-card #widget240 {
  display: flex;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 900px) {
  .tiger-grid,
  .tiger-two-col,
  .tiger-action-vote-grid {
    grid-template-columns: 1fr;
  }

  .tiger-member-page {
    padding: 12px;
  }

  .tiger-card {
    padding: 16px;
  }

  .tiger-side-banners {
    flex-direction: column;
    align-items: center;
  }
}


.tiger-action-vote-grid {
  grid-template-columns: minmax(220px, 0.75fr) minmax(300px, 1.25fr);
  align-items: stretch;
}

.tiger-action-vote-grid .tiger-vote-card {
  margin-bottom: 0;
}

.tiger-action-vote-grid .tiger-stacked-rewards {
  height: 100%;
}

.tiger-action-vote-grid .tiger-stacked-rewards .tiger-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* Tiger Hits Member Dashboard - Member Friendly Redesign */

.tiger-member-page {
  max-width: 1220px;
  margin: 0 auto;
  padding: 18px;
  box-sizing: border-box;
  color: #2b2b2b;
}

.tiger-card {
  background: #fffaf0;
  border: 2px solid #ffb703;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 16px;
  color: #2b2b2b;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  box-sizing: border-box;
}

.tiger-card h2 {
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 14px;
  color: #d35400;
}

.tiger-card h3 {
  font-size: 19px;
  line-height: 1.25;
  margin: 0 0 12px;
  color: #d35400;
}

.tiger-card p {
  font-size: 15px;
  line-height: 1.55;
}

.tiger-card a {
  color: #d35400;
  font-weight: bold;
}

.tiger-center {
  text-align: center;
}

.tiger-dashboard-hero {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr) 300px;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.tiger-dashboard-hero .tiger-card {
  margin-bottom: 0;
}

.tiger-dashboard-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: start;
}

.tiger-member-level {
  font-weight: bold;
}

.tiger-btn,
button.tiger-btn,
input.tiger-btn {
  display: inline-block;
  background: #d35400 !important;
  color: #ffffff !important;
  padding: 10px 16px;
  border: 0;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  margin: 4px;
  box-sizing: border-box;
}

.tiger-btn:hover,
button.tiger-btn:hover,
input.tiger-btn:hover {
  background: #ff8c00 !important;
  color: #ffffff !important;
}

.tiger-primary-btn {
  background: #d35400 !important;
  color: #ffffff !important;
}

.tiger-input {
  width: 100%;
  padding: 10px;
  margin: 8px 0 12px;
  border: 1px solid #ffb703;
  border-radius: 8px;
  box-sizing: border-box;
  background: #ffffff;
  color: #2b2b2b;
}

.tiger-copy-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}

.tiger-copy-row .tiger-input {
  margin: 0;
}

.tiger-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.tiger-action-tile {
  display: block;
  background: #fff4d6;
  border: 1px solid #ffb703;
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  text-decoration: none;
  color: #2b2b2b !important;
}

.tiger-action-tile span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: #d35400;
  color: #ffffff;
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 8px;
}

.tiger-action-tile strong {
  display: block;
  color: #d35400;
  margin-bottom: 4px;
}

.tiger-action-tile small {
  display: block;
  color: #2b2b2b;
  font-size: 12px;
}

.tiger-progress-stat {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-weight: bold;
  margin: 12px 0;
}

.tiger-progress-bar {
  width: 100%;
  height: 14px;
  background: #ffffff;
  border: 1px solid #ffb703;
  border-radius: 999px;
  overflow: hidden;
  margin: 12px 0;
}

.tiger-progress-fill {
  width: 55%;
  height: 100%;
  background: #d35400;
  border-radius: 999px;
}

.tiger-prize-line {
  font-size: 18px;
  color: #d35400;
}

.tiger-server-time {
  font-size: 12px;
  margin-top: 12px;
}

.tiger-rewards-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.tiger-two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tiger-action-vote-grid {
  grid-template-columns: minmax(220px, 0.75fr) minmax(300px, 1.25fr);
  align-items: stretch;
}

.tiger-stacked-rewards {
  display: grid;
  gap: 16px;
}

.tiger-stacked-rewards .tiger-card,
.tiger-action-vote-grid .tiger-vote-card {
  margin-bottom: 0;
}

.tiger-action-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tiger-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.tiger-contact-grid .tiger-btn {
  display: block;
  margin: 0;
  text-align: center;
}

.tiger-promo-card,
.tiger-community-card,
.tiger-events-card,
.tiger-winners-card,
.tiger-tools-card,
.tiger-start-card {
  background: #fffaf0;
  border-color: #ffb703;
}

.tiger-promo-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.tiger-promo-form .tiger-input {
  margin: 0;
}

.tiger-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.tiger-tools-grid a {
  display: block;
  text-align: center;
  background: #fff4d6;
  border: 1px solid #ffb703;
  border-radius: 10px;
  padding: 10px;
  text-decoration: none;
}


.tiger-side-banners {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;          /* reduced from 12px */
  flex-wrap: nowrap;
  margin: 8px 0;     /* reduced from 12px */
}

.tiger-square-ad {
  width: 125px;
  min-height: 125px;
}

.tiger-banner-ad {
  width: 350px;
  min-height: 45px;
}

.tiger-vote-card #widget240 {
  display: flex;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 1050px) {
  .tiger-dashboard-hero,
  .tiger-dashboard-main {
    grid-template-columns: 1fr;
  }

  .tiger-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 700px) {
  .tiger-member-page {
    padding: 12px;
  }

  .tiger-card {
    padding: 16px;
  }

  .tiger-two-col,
  .tiger-action-vote-grid,
  .tiger-quick-actions,
  .tiger-contact-grid,
  .tiger-promo-form,
  .tiger-copy-row {
    grid-template-columns: 1fr;
  }

  .tiger-side-banners {
    flex-direction: column;
    align-items: center;
  }

  .tiger-tools-grid {
    grid-template-columns: 1fr;
  }
}

/* Tiger Hits Member Dashboard - Compact Action Layout */

.tiger-member-page {
  max-width: 1220px;
  margin: 0 auto;
  padding: 18px;
  box-sizing: border-box;
  color: #2b2b2b;
}

.tiger-card {
  background: #fffaf0;
  border: 2px solid #ffb703;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 16px;
  color: #2b2b2b;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  box-sizing: border-box;
}

.tiger-card h2 {
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 12px;
  color: #d35400;
}

.tiger-card h3 {
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 10px;
  color: #d35400;
}

.tiger-card p {
  font-size: 15px;
  line-height: 1.5;
}

.tiger-card a {
  color: #d35400;
  font-weight: bold;
}

.tiger-center {
  text-align: center;
}

.tiger-top-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.tiger-top-right {
  min-width: 0;
}

.tiger-welcome-compact {
  padding: 16px;
}

.tiger-welcome-compact img {
  max-width: 120px;
  height: auto;
}

.tiger-member-level {
  font-weight: bold;
  margin: 8px 0;
}

.tiger-dashboard-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: start;
}

.tiger-btn,
button.tiger-btn,
input.tiger-btn {
  display: inline-block;
  background: #d35400 !important;
  color: #ffffff !important;
  padding: 9px 14px;
  border: 0;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  margin: 4px;
  box-sizing: border-box;
}

.tiger-btn:hover,
button.tiger-btn:hover,
input.tiger-btn:hover {
  background: #ff8c00 !important;
  color: #ffffff !important;
}

.tiger-primary-btn {
  background: #d35400 !important;
  color: #ffffff !important;
}

.tiger-input {
  width: 100%;
  padding: 9px;
  margin: 8px 0 10px;
  border: 1px solid #ffb703;
  border-radius: 8px;
  box-sizing: border-box;
  background: #ffffff;
  color: #2b2b2b;
}

.tiger-copy-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.tiger-copy-row .tiger-input {
  margin: 0;
}

.tiger-contact-grid {
  display: grid;
  gap: 8px;
}

.tiger-contact-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tiger-contact-grid .tiger-btn {
  display: block;
  margin: 0;
  text-align: center;
}

.tiger-rewards-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.tiger-top-actions {
  margin-bottom: 0;
}

.tiger-two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tiger-action-vote-grid {
  grid-template-columns: minmax(220px, 0.75fr) minmax(300px, 1.25fr);
  align-items: stretch;
}

.tiger-stacked-rewards {
  display: grid;
  gap: 16px;
}

.tiger-stacked-rewards .tiger-card,
.tiger-action-vote-grid .tiger-vote-card {
  margin-bottom: 0;
}

.tiger-action-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tiger-big-number {
  font-size: 28px;
  margin: 6px 0;
  color: #d35400;
}

.tiger-prize-line {
  font-size: 17px;
  color: #d35400;
}

.tiger-server-time {
  font-size: 12px;
  margin-top: 10px;
}

.tiger-promo-card,
.tiger-community-card,
.tiger-events-card,
.tiger-winners-card,
.tiger-tools-card,
.tiger-start-card,
.tiger-progress-card {
  background: #fffaf0;
  border-color: #ffb703;
}

.tiger-promo-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.tiger-promo-form .tiger-input {
  margin: 0;
}

.tiger-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.tiger-tools-grid a {
  display: block;
  text-align: center;
  background: #fff4d6;
  border: 1px solid #ffb703;
  border-radius: 10px;
  padding: 10px;
  text-decoration: none;
}


.tiger-side-banners {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0;
}


.tiger-square-ad {
  width: 125px;
  min-height: 125px;
}

.tiger-banner-ad {
  width: 350px;
  min-height: 45px;
}

.tiger-vote-card #widget240 {
  display: flex;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 1050px) {
  .tiger-top-layout,
  .tiger-dashboard-main {
    grid-template-columns: 1fr;
  }

  .tiger-contact-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tiger-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 700px) {
  .tiger-member-page {
    padding: 12px;
  }

  .tiger-card {
    padding: 16px;
  }

  .tiger-two-col,
  .tiger-action-vote-grid,
  .tiger-contact-row,
  .tiger-promo-form,
  .tiger-copy-row {
    grid-template-columns: 1fr;
  }

  .tiger-side-banners {
    flex-direction: column;
    align-items: center;
  }

  .tiger-tools-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   TIGER HITS MEMBER DASHBOARD
   LEFT WELCOME RAIL LAYOUT
========================================= */

.tiger-member-page {
  max-width: 1220px;
  margin: 0 auto;
  padding: 18px;
  box-sizing: border-box;
  color: #2b2b2b;
}

/* CARD SYSTEM */
.tiger-card {
  background: #fffaf0;
  border: 2px solid #ffb703;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 16px;
  color: #2b2b2b;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  box-sizing: border-box;
}

.tiger-card h2 {
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 10px;
  color: #d35400;
}

.tiger-card h3 {
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 10px;
  color: #d35400;
}

.tiger-card p {
  font-size: 15px;
  line-height: 1.5;
}

.tiger-card a {
  color: #d35400;
  font-weight: bold;
}

.tiger-center {
  text-align: center;
}

/* TOP LAYOUT */
.tiger-top-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.tiger-left-rail {
  min-width: 0;
}

.tiger-top-right {
  min-width: 0;
}

/* WELCOME CARD */
.tiger-welcome-compact {
  padding: 14px;
  text-align: center;
}

.tiger-welcome-compact img {
  max-width: 95px !important;
  height: auto !important;
  margin: 0 auto 8px;
  display: block;
}

.tiger-member-level {
  font-weight: bold;
  margin: 6px 0;
}

/* QUICK STATS */
.tiger-quick-stats-card p {
  margin: 6px 0;
  font-size: 14px;
}

/* MAIN DASHBOARD */
.tiger-dashboard-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: start;
}

/* BUTTONS */
.tiger-btn,
button.tiger-btn,
input.tiger-btn,
.tiger-submit-btn {
  display: inline-block;
  background: #d35400 !important;
  color: #ffffff !important;
  padding: 9px 14px;
  border: 0 !important;
  border-radius: 10px;
  text-decoration: none !important;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  margin: 4px;
  box-sizing: border-box;
  min-height: 36px;
}

.tiger-btn:hover,
button.tiger-btn:hover,
input.tiger-btn:hover,
.tiger-submit-btn:hover {
  background: #ff8c00 !important;
  color: #ffffff !important;
}

.tiger-primary-btn {
  background: #d35400 !important;
  color: #ffffff !important;
}

/* INPUTS */
.tiger-input {
  width: 100%;
  padding: 9px;
  margin: 8px 0 10px;
  border: 1px solid #ffb703;
  border-radius: 8px;
  box-sizing: border-box;
  background: #ffffff;
  color: #2b2b2b;
}

/* COPY ROW */
.tiger-copy-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  align-items: center;
  margin-bottom: 8px;
}

.tiger-copy-row .tiger-input {
  margin: 0;
}

.tiger-copy-btn {
  width: 100%;
  margin: 0 !important;
}

/* CONTACT BUTTON GRID */
.tiger-contact-grid {
  display: grid;
  gap: 8px;
}

.tiger-contact-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tiger-contact-grid .tiger-btn {
  display: block;
  margin: 0;
  text-align: center;
}

/* GRID SECTIONS */
.tiger-rewards-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.tiger-two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tiger-action-vote-grid {
  grid-template-columns: minmax(220px, 0.75fr) minmax(300px, 1.25fr);
  align-items: stretch;
}

/* STACKED ACTION CARDS */
.tiger-stacked-rewards {
  display: grid;
  gap: 16px;
}

.tiger-stacked-rewards .tiger-card,
.tiger-action-vote-grid .tiger-vote-card {
  margin-bottom: 0;
}

.tiger-action-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* SURF GOAL */
.tiger-big-number {
  font-size: 28px;
  margin: 6px 0;
  color: #d35400;
}

.tiger-prize-line {
  font-size: 17px;
  color: #d35400;
}

.tiger-server-time {
  font-size: 12px;
  margin-top: 10px;
}

/* PROMO / COMMUNITY / INFO CARDS */
.tiger-promo-card,
.tiger-community-card,
.tiger-events-card,
.tiger-winners-card,
.tiger-tools-card,
.tiger-start-card,
.tiger-progress-card {
  background: #fffaf0;
  border-color: #ffb703;
}

/* PROMO FORM */
.tiger-promo-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.tiger-promo-form .tiger-input {
  margin: 0;
}

.tiger-promo-form .tiger-submit-btn {
  margin: 0 !important;
  white-space: nowrap;
}

/* TOOLS GRID */
.tiger-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.tiger-tools-grid a {
  display: block;
  text-align: center;
  background: #fff4d6;
  border: 1px solid #ffb703;
  border-radius: 10px;
  padding: 10px;
  text-decoration: none;
}

/* ADS */
.tiger-adborder {
  display: inline-block;
  max-width: 100%;
  margin: 6px auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  overflow: hidden;
}

.tiger-side-banners {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0;
}


.tiger-square-ad {
  width: 125px;
  min-height: 125px;
}

.tiger-banner-ad {
  width: 350px;
  min-height: 45px;
}

/* VOTE WIDGET */
.tiger-vote-card #widget240 {
  display: flex;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
}

/* RESPONSIVE */
@media screen and (max-width: 1050px) {
  .tiger-top-layout,
  .tiger-dashboard-main {
    grid-template-columns: 1fr;
  }

  .tiger-contact-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tiger-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 700px) {
  .tiger-member-page {
    padding: 12px;
  }

  .tiger-card {
    padding: 16px;
  }

  .tiger-two-col,
  .tiger-action-vote-grid,
  .tiger-contact-row,
  .tiger-promo-form {
    grid-template-columns: 1fr;
  }

  .tiger-side-banners {
    flex-direction: column;
    align-items: center;
  }

  .tiger-tools-grid {
    grid-template-columns: 1fr;
  }
}

.tiger-three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tiger-three-col .tiger-card {
  margin-bottom: 0;
}

@media screen and (max-width: 900px) {
  .tiger-three-col {
    grid-template-columns: 1fr;
  }
}

.tiger-menu-vote-card {
  width: 200px;
  margin: 0 auto 12px;
  padding: 10px;
  background: #fffaf0;
  border: 2px solid #ffb703;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}



.tiger-menu-vote-card #widget240 {
  max-width: 100%;
  overflow: hidden;
}

/* FORCE 160x600 BANNERS SIDE BY SIDE */

.tiger-skyscraper-pair {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 4px !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 8px auto !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.tiger-skyscraper-pair script {
    display: inline-block !important;
    width: 160px !important;
    min-width: 160px !important;
    max-width: 160px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* =========================================
   Tiger-Hits Thank You / Bridge Page
========================================= */

.tiger-thankyou-page {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto 60px;
    padding: 20px;
    box-sizing: border-box;
}

.tiger-thankyou-card {
    background: linear-gradient(180deg, #ffffff 0%, #fff8ef 100%);
    border: 1px solid #ffd28a;
    border-top: 6px solid #ff8c00;
    border-radius: 18px;
    padding: 45px;
    box-shadow: 0 10px 30px rgba(122, 46, 0, 0.12);
    text-align: center;
}

.tiger-thankyou-card h1 {
    font-size: 40px;
    color: #b84e00;
    margin: 0 0 20px;
    font-weight: 800;
    line-height: 1.2;
}

.tiger-thankyou-card h2 {
    font-size: 28px;
    color: #d46a00;
    margin: 0 0 18px;
    font-weight: 700;
}

.tiger-thankyou-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #333333;
    margin: 0 0 18px;
}

.tiger-alert-box {
    background: #fff8e7;
    border-left: 6px solid #ff8c00;
    border-radius: 12px;
    padding: 22px;
    margin: 30px 0;
    text-align: left;
}

.tiger-alert-box strong {
    color: #b84e00;
}

.tiger-main-button {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 20px;
    background: linear-gradient(135deg, #ff8c00, #ffb347);
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 17px;
    border-radius: 10px;
    box-shadow: 0 5px 14px rgba(255, 140, 0, 0.28);
    transition: all 0.2s ease;
}

.tiger-main-button:hover {
    background: linear-gradient(135deg, #d45f00, #ff9f1c);
    transform: translateY(-2px);
}

.tiger-secondary-button {
    display: inline-block;
    padding: 14px 26px;
    margin: 10px;
    background: #2f2f2f;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.tiger-secondary-button:hover {
    background: #111111;
}

.tiger-button-row {
    margin-top: 30px;
}

@media only screen and (max-width: 768px) {
    .tiger-thankyou-page {
        padding: 15px;
        margin: 25px auto 40px;
    }

    .tiger-thankyou-card {
        padding: 28px 20px;
    }

    .tiger-thankyou-card h1 {
        font-size: 30px;
    }

    .tiger-thankyou-card h2 {
        font-size: 22px;
    }

    .tiger-thankyou-card p {
        font-size: 16px;
    }

    .tiger-main-button,
    .tiger-secondary-button {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 12px auto;
    }
}

.tiger-info-accordion .panel {
    border: 2px solid #f57c00;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.tiger-info-accordion .panel-heading {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    padding: 0;
}

.tiger-info-accordion .panel-title a {
    display: block;
    padding: 15px 20px;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
}

.tiger-info-accordion .panel-title a:hover,
.tiger-info-accordion .panel-title a:focus {
    color: #fff;
    text-decoration: none;
}

.tiger-info-accordion .panel-body {
    background: #fffdf7;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

.tiger-splash-header {
  text-align: center;
  margin: 20px auto;
}

.tiger-splash-header h3 {
  color: #f57c00;
  font-weight: 800;
  margin-bottom: 15px;
}

.tiger-splash-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 22px;
  border: 2px solid #f57c00;
  border-radius: 14px;
  background: #fffdf7;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  text-align: center;
}

.tiger-splash-card h4 {
  color: #d84315;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.tiger-splash-card p {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.tiger-splash-link-box {
  background: #ffffff;
  border: 1px dashed #f57c00;
  border-radius: 8px;
  padding: 12px;
  margin: 15px 0;
  word-break: break-all;
}

.tiger-splash-link-box a {
  color: #d84315;
  font-weight: 700;
  text-decoration: none;
}

.tiger-copy-btn {
  background: #f57c00;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 11px 20px;
  font-weight: 700;
  cursor: pointer;
}

.tiger-copy-btn:hover {
  background: #d84315;
}

.tiger-loyalty-card {
    max-width: 900px;
    margin: 20px auto;
    background: #111;
    border: 3px solid #f7931e;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(247,147,30,.35);
}

.tiger-loyalty-image img {
    width: 100%;
    display: block;
}

.tiger-loyalty-content {
    padding: 25px;
    color: #ffffff;
    background: linear-gradient(
        180deg,
        #1a1a1a 0%,
        #111111 100%
    );
}

.tiger-loyalty-content h3 {
    color: #ffb347;
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.tiger-loyalty-content p {
    font-size: 18px;
    text-align: center;
    line-height: 1.6;
}

.tiger-reward-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.tiger-reward-list li {
    background: rgba(247,147,30,.12);
    border-left: 4px solid #f7931e;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 6px;
    font-size: 18px;
}

.tiger-loyalty-footer {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #ffb347;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.15);
}

/* ==========================================
   Tiger-Hits Loyalty Rewards
   ========================================== */

hr{
  border:0;
  clear:both;
  display:block;
  width:96%;
  height:2px;
  background:linear-gradient(90deg,#f26b21,#ffb347,#f26b21);
  margin:25px auto;
}

.tiger-loyalty-header{
  max-width:900px;
  width:95%;
  margin:20px auto;
  padding:25px 35px;
  background:linear-gradient(180deg,#fffaf2 0%,#fff4df 100%);
  border:3px solid #f7931e;
  border-radius:15px;
  box-shadow:0 6px 18px rgba(242,107,33,.25);
  box-sizing:border-box;
}

.tiger-loyalty-header h2{
  text-align:center;
  color:#f26b21;
  font-size:36px;
  font-weight:700;
  margin:0 0 20px;
}

.tiger-loyalty-header p{
  color:#333;
  font-size:16px;
  line-height:1.7;
  text-align:left;
}

.tiger-loyalty-calendar{
  color:#f26b21;
  font-weight:bold;
  cursor:pointer;
}

.rewardoptionouter{
  clear:both;
  width:95%;
  max-width:960px;
  margin:25px auto;
  text-align:center;
  box-sizing:border-box;
}

.rewardoptionouter h2{
  display:block;
  width:100%;
  text-align:center;
  color:#f26b21;
  font-size:32px;
  margin:10px 0 20px;
}

.rewardoptioninner,
.rewardoptioninner.vcenter,
.vcenter.rewardoptioninner{
  float:none !important;
  display:inline-block !important;
  vertical-align:top !important;
  width:420px !important;
  max-width:95% !important;
  min-height:450px !important;
  margin:10px !important;
  padding:20px !important;
  background:linear-gradient(180deg,#fffaf2 0%,#fff4df 100%) !important;
  border:3px solid #f7931e !important;
  border-radius:15px !important;
  box-shadow:0 6px 18px rgba(242,107,33,.25) !important;
  text-align:center !important;
  box-sizing:border-box !important;
}

.rewardoptioninner > div{
  width:100% !important;
}

.rewardname{
  display:block;
  font-size:28px !important;
  font-weight:700 !important;
  color:#f26b21 !important;
  text-align:center !important;
  margin:0 0 10px !important;
}

.rewardoptioninner h3{
  color:#f26b21 !important;
  font-size:24px !important;
  margin:10px 0 !important;
}

.rewardoptioninner p{
  color:#333 !important;
  font-size:16px !important;
  line-height:1.6 !important;
}

.rewardoptioninner img{
  max-width:250px !important;
  width:100% !important;
  height:auto !important;
}

.rewardoptioninner input[type="submit"]{
  background:linear-gradient(180deg,#ffb347 0%,#f26b21 100%) !important;
  color:#fff !important;
  border:none !important;
  border-radius:8px !important;
  padding:12px 25px !important;
  font-size:16px !important;
  font-weight:700 !important;
  cursor:pointer !important;
  text-transform:uppercase !important;
  box-shadow:0 3px 8px rgba(0,0,0,.25) !important;
}

.rewardoptioninner input[type="submit"]:hover{
  background:linear-gradient(180deg,#ffc766 0%,#ff7f27 100%) !important;
}

.rewardoptionouter{
  clear:both;
  width:95%;
  max-width:960px;
  margin:25px auto;
  text-align:center;
}

.rewardoptioninner{
  display:inline-block;
  vertical-align:top;
  width:420px;
  max-width:95%;
  min-height:450px;
  margin:10px;
  padding:20px;
  background:linear-gradient(180deg,#fffaf2 0%,#fff4df 100%);
  border:3px solid #f7931e;
  border-radius:15px;
  box-shadow:0 6px 18px rgba(242,107,33,.25);
  text-align:center;
  box-sizing:border-box;
}

.rewardoptioncard{
  width:100%;
}

.rewardname{
  font-size:28px;
  font-weight:700;
  color:#f26b21;
  text-align:center;
  margin:0 0 10px;
}