:root {
  --primary-bg: #041723;
  --secondary-bg: #1a2332;
  --tertiary-bg: #062030;
  --accent-blue: #85c5eb;
  --accent-green: #ba6;
  --text-primary: #fff;
  --text-secondary: #ddd;
  --text-muted: rgba(255, 255, 255, 0.8);
  --border-color: rgba(255, 255, 255, 0.12);
  --overlay-bg: rgba(0, 0, 0, 0.6);
  --card-bg: rgba(6, 32, 48, 0.5);
  --gradient-bg: linear-gradient(135deg, var(--primary-bg) 0%, #0a2738 50%, var(--tertiary-bg) 100%);
}


html, body {
  overflow-x: hidden !important;
  max-width: 100% !important;
}

body {
  font-family: "Lato", "Aktiv-grotesk", "Futura-PT", sans-serif !important;
  background: var(--gradient-bg) !important;
  background-attachment: fixed;
  color: var(--text-primary) !important;
}


* {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", "Lato", sans-serif !important;
  color: var(--text-primary) !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
}

.container {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.currentValue {
  background: var(--card-bg) !important;
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color) !important;
  border-radius: 12px !important;
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); */
  max-width: 800px !important;
}

.currentValue:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.btn-blue {
  background: linear-gradient(135deg, var(--accent-blue), #6bb3d9) !important;
  border: none !important;
  border-radius: 8px !important;
  color: var(--primary-bg) !important;
  font-family: "Lato", sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 15px rgba(133, 197, 235, 0.3);
  backdrop-filter: blur(10px);
}

.btn-blue:hover {
  background: linear-gradient(135deg, #a8d4f0, var(--accent-blue)) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(133, 197, 235, 0.4);
  color: var(--primary-bg) !important;
}

.progressBar li {
  color: var(--text-secondary) !important;
  font-family: "Lato", sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px !important;
}

.progressBar li:before {
  background: var(--secondary-bg) !important;
  border: 2px solid var(--border-color) !important;
  color: var(--text-muted) !important;
  font-family: "Lato", sans-serif !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.progressBar li.active {
  color: var(--accent-blue) !important;
  font-weight: 600 !important;
}

.progressBar li.active:before {
  background: linear-gradient(135deg, var(--accent-blue), #6bb3d9) !important;
  border-color: var(--accent-blue) !important;
  color: var(--primary-bg) !important;
  box-shadow: 0 4px 15px rgba(133, 197, 235, 0.4);
}

.progressBar li.active:after {
  background: var(--accent-blue) !important;
  box-shadow: 0 1px 3px rgba(133, 197, 235, 0.3);
}

.subTag {
  color: var(--text-primary) !important;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 500 !important;
}

.subTagTwo {
  color: var(--text-muted) !important;
  font-family: "Lato", sans-serif !important;
  font-weight: 400 !important;
}


.stepWrap {
  background: transparent !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}

.stepperQuantity img {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.stepperQuantity img:hover {
  transform: scale(1.05);
}

.containerWrapper {
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 20px 0 0 !important;
}

.containerWrapper > .container {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.mainWrap {
    flex: 1 !important; 
    padding: 24px 30px;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden !important;
    background: transparent !important;
}

.stepWrap {
    flex-direction: column;
    gap: 30px;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

.sectionWrap {
     margin-top: auto !important;
    background: var(--secondary-bg);
    border-top: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    width: 100% !important; 
    margin: 0 !important; 
    padding: 20px 0;
    box-sizing: border-box !important;
}

.sectionWrap .container {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

.sectionWrap .row {
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.sectionPara {
    text-align: center;
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.sectionPara p {
    font-family: "Lato", sans-serif !important;
    color: var(--text-secondary) !important;
    margin: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
}

.sectionPara a {
    color: var(--accent-blue) !important;
    font-family: "Lato", sans-serif !important;
    font-weight: 500 !important;
    transition: all 0.2s ease;
    text-decoration: underline;
}

.sectionPara a:hover {
    color: var(--accent-green) !important;
    text-shadow: 0 0 8px rgba(187, 170, 102, 0.5);
}

.sectionPara b {
    display: none !important; 
}

.disabled {
    background: var(--secondary-bg) !important;
    color: var(--text-muted) !important;
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

.preggressWrap {
    flex-shrink: 0; 
}

.purchase-form-wrapper {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 40px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.15),
        0 8px 40px rgba(0, 0, 0, 0.1),
        0 16px 80px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
    max-width: 800px !important;
    width: 100% !important;
    text-align: center;
}

.form-container:hover {
    transform: translateY(-4px);
    
}

.input-group-wrapper {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.input-label {
    color: var(--text-primary) !important;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600 !important;
    font-size: 18px;
    text-align: center;
    margin-bottom: 8px;
}

.coinInputWrap {
    background: rgba(26, 35, 50, 0.9) !important;
    border: 2px solid var(--border-color) !important;
    border-radius: 12px !important;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3);
    padding: 12px 20px !important;
    
    transition: all 0.3s ease;
}

.coinInputWrap:focus-within {
    border-color: var(--accent-blue) !important;
    box-shadow: 0 0 0 4px rgba(133, 197, 235, 0.2), inset 0 2px 6px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

.coinInputWrap input {
    background: transparent !important;
    color: var(--text-primary) !important;
    font-family: "Lato", sans-serif !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    border: none !important;
    outline: none !important;
    width: 100% !important;
    padding: 0 !important;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btnWidth {
    width: 100%;
    max-width: 280px;
    padding: 14px 30px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    border-radius: 12px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    display: inline-block;
    text-align: center;
}

.form-notice {
    margin-top: 5px;
}

.form-notice .subTagTwo {
    font-size: 14px;
    color: var(--text-muted) !important;
    font-style: italic;
    line-height: 1.4;
}

.currentValue table {
    border-spacing: 0;
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.currentValue th {
    padding: 15px !important;
    vertical-align: top;
    box-sizing: border-box !important;
}

.currentValue th:first-child {
    padding: 15px !important;
    text-align: center;
}

.currentValue th:nth-child(2) {
    padding: 15px 20px !important;
}

.currentValue h3 {
    color: var(--accent-blue) !important;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600 !important;
    margin: 0 0 15px 0 !important; 
    padding-top: 0 !important; 
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.currentValue h5 {
    color: var(--text-secondary) !important;
    font-family: "Lato", sans-serif !important;
    font-weight: 500 !important;
    margin: 0 0 10px 0 !important;
    padding-top: 0 !important; 
}

.currentValue ol {
    color: var(--text-muted) !important;
    font-family: "Lato", sans-serif !important;
    line-height: 1.6;
    margin: 0 !important; 
    padding-left: 20px !important;
}

.currentValue ol li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 5px;
}

.currentValue ol li::marker {
    color: var(--accent-blue);
    font-weight: 600;
}

.currentValue img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    max-width: 100% !important;
    height: auto !important;
}

.currentValue img:hover {
    transform: scale(1.02);
}

.preggressDiv {
    margin: 0 15px;
}

.progressBar {
    padding: 0;
    margin: 0;
}

.progressBar li {
    font-size: 16px;
    padding: 0 5px;
}

/* Large screens (1200px and down) */
@media screen and (max-width: 1200px) {
    .containerWrapper {
        height: initial;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .mainWrap {
        /* padding: 20px 15px; */
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .currentValue {
        padding: 30px 15px;
        margin: 0 15px;
        max-width: 800px !important;
        box-sizing: border-box !important;
    }
    
    .currentValue table {
        width: 100%;
        max-width: 100% !important;
    }
    
    .currentValue th {
        padding: 15px;
        box-sizing: border-box !important;
    }

    .form-container {
        box-shadow: 
            0 3px 15px rgba(0, 0, 0, 0.12),
            0 6px 30px rgba(0, 0, 0, 0.08),
            0 12px 60px rgba(0, 0, 0, 0.04),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
    
    .form-container:hover {
        transform: translateY(-3px);
        /* box-shadow: 
            0 6px 25px rgba(0, 0, 0, 0.18),
            0 12px 50px rgba(0, 0, 0, 0.12),
            0 18px 100px rgba(0, 0, 0, 0.08),
            0 0 30px rgba(133, 197, 235, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.12); */
    }
}

/* Tablet landscape (992px and down) */
@media screen and (max-width: 992px) {
    .rbHolder {
        padding: 60px 0 0 0;
    }
    
    .rbTabs {
        bottom: initial;
        right: 0;
        height: 60px;
        width: initial;
    }
    
    .rbTabsIn {
        padding: 20px 0;
        text-align: center;
    }
    
    .rbTabsIn div {
        display: inline-block;
        padding-left: 0;
        margin: 0 10px;
        font-size: 18px;
    }
    
    .rbTabsIn div:after {
        display: none;
    }
    
    .rbTabsIn div:before {
        z-index: 1;
        left: calc(50% - 10px);
        top: -30px;
    }
    
    .dashboardMenu {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        background: #040404;
        z-index: 100;
        left: -300px;
        transition: all .2s;
    }
    
    .hamburger {
        display: inline-block;
    }
    
    .dashboardMenuShow {
        left: 0;
    }
    
    .dmLogoHolderArea {
        display: none;
    }
    
    .mobileLogo {
        display: inline-block;
        margin-left: 10px;
        height: 35px;
    }
    
    .currentValue {
        max-width: 100% !important;
        margin: 15px 0 !important;
        padding: 20px 15px !important;
        box-sizing: border-box !important;
    }
    
    .currentValue table {
        display: block;
        overflow-x: visible !important; 
        white-space: normal !important; 
        max-width: 100% !important;
    }
    
    .currentValue th {
        display: block;
        text-align: center;
        padding: 15px 10px;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .currentValue th:first-child {
        margin-bottom: 20px;
    }
    
    .coinInputWrap {
        width: 100%;
        /* max-width: 400px; */
        margin: 0 auto;
        box-sizing: border-box !important;
    }
    
    .btnWidth {
        width: 100%;
        max-width: 300px;
        box-sizing: border-box !important;
    }
}

/* Tablet portrait (768px and down) */
@media screen and (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100% !important;
    }
    
    .ccNotes img {
        margin: 0 5px;
        border-radius: 5px;
        height: 150px;
        max-width: 100% !important;
    }
    
    .rbContent {
        padding: 30px;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Heading responsiveness */
    h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .rbTabsIn div {
        font-size: 15px;
    }
    
    .dlButtons a {
        margin: 10px 0;
        width: 100%;
    }
    
    .dlStatement {
        font-size: 20px;
    }
    
    .dlButtons {
        margin: 20px 0 0;
    }
    
    .rbHolder {
        margin-bottom: 10px;
    }
    

    .stepperQuantity {
        padding: 0 15px;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .subTag {
        font-size: 24px;
        padding: 0 15px;
    }

   .form-container {
        padding: 25px 20px;
        margin: 0 15px;
        border-radius: 12px;
    }
    
    .input-label {
        font-size: 16px;
    }
    
    
    .btnWidth {
        max-width: 100%;
        padding: 12px 25px !important;
        font-size: 15px !important;
    }
    
    .currentValue {
        margin: 20px 0 !important;
        padding: 20px 15px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .currentValue table {
        width: 100%;
        max-width: 100% !important;
        overflow-x: visible !important;
    }
    
    .currentValue th {
        display: block;
        width: 100% !important;
        text-align: center;
        padding: 15px 5px !important;
        box-sizing: border-box !important;
    }
    
    .currentValue th img {
        width: 160px !important;
        height: auto !important;
        max-width: 100% !important;
    }
    
    .currentValue h3 {
        font-size: 24px;
        margin: 0 0 15px 0 !important;
        padding-top: 0 !important;
    }
    
    .currentValue h5 {
        font-size: 18px;
        margin: 0 0 10px 0 !important;
        padding-top: 0 !important;
    }
    
    .currentValue ol {
        font-size: 16px;
        line-height: 1.4;
        margin: 0 0 15px 0 !important;
    }
    
    .progressBar li {
        font-size: 14px;
        width: 33.33%;
    }
    
    .progressBar li:before {
        width: 25px;
        height: 25px;
        line-height: 20px;
        font-size: 12px;
    }
    
    .sectionWrap {
        padding: 15px 0;
        width: 100% !important;
        margin: 0 !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    .sectionPara {
        padding: 0 15px;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .sectionPara p {
        font-size: 16px;
        line-height: 1.8;
        text-align: center;
        flex-direction: column !important;
        gap: 10px !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .sectionPara a {
        display: block;
        color: var(--accent-blue) !important;
        text-decoration: underline;
        margin: 0 auto;
        width: fit-content;
    }
    
    .sectionPara a:hover {
        color: var(--accent-green) !important;
    }
    
    .sectionPara b {
        display: none !important;
    }
    
    .sectionPara a::after {
        display: none !important;
    }

    .form-container {
        padding: 25px 20px;
        margin: 0 15px;
        border-radius: 12px;
        box-shadow: 
            0 2px 12px rgba(0, 0, 0, 0.1),
            0 4px 24px rgba(0, 0, 0, 0.06),
            0 8px 48px rgba(0, 0, 0, 0.03),
            inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }
    
    .form-container:hover {
        transform: translateY(-2px);
        /* box-shadow: 
            0 4px 20px rgba(0, 0, 0, 0.15),
            0 8px 40px rgba(0, 0, 0, 0.1),
            0 12px 80px rgba(0, 0, 0, 0.06),
            0 0 25px rgba(133, 197, 235, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.1); */
    }
}

/* Mobile landscape (576px and down) */
@media screen and (max-width: 576px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100% !important;
    }
    
    .rbContent {
        padding: 15px;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .ccNotes img {
        margin: 0 2px;
        border-radius: 5px;
        height: 110px;
        max-width: 100% !important;
    }
    
    .cardWrap {
        width: 100% !important;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box !important;
    }
    
    input.inputBoxTwo {
        width: 100% !important;
        max-width: 220px;
        box-sizing: border-box !important;
    }
    
    .mainWrap {
        padding: 15px ;
        max-width: 100% !important;
        overflow-x: hidden !important;
    } 
    
    h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
        text-align: center;
    }
    
    h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        text-align: center;
    }
    
    h3 {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    .stepperQuantity {
        padding: 0 10px;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .stepperQuantity img {
        width: 80px;
        max-width: 100% !important;
    }
    
    .subTag {
        font-size: 20px;
        padding: 0 10px;
        line-height: 1.3;
    }

    .input-group-wrapper {
        margin-bottom: 10px;
    }
    
    .coinInputWrap {
        width: 100%;
        box-sizing: border-box !important;
    }
    
    .coinInputWrap input {
        font-size: 18px;
        padding: 8px;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .coinInputWrap input::placeholder {
        font-size: 16px;
    }
    
    .btnWidth {
        width: 100%;
        max-width: none;
        margin: 15px 0;
        font-size: 16px;
        padding: 12px 20px;
        box-sizing: border-box !important;
    }
    
    .subTagTwo {
        font-size: 16px;
        padding: 0 10px;
        line-height: 1.4;
    }
    
    .currentValue {
        margin: 15px 0 !important;
        padding: 15px 10px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .currentValue th {
        padding: 10px 5px !important;
        box-sizing: border-box !important;
    }
    
    .currentValue th img {
        max-width: 150px !important;
        height: auto !important;
        width: 100% !important;
    }
    
    .currentValue h3 {
        font-size: 20px;
        margin: 0 0 10px 0 !important;
        padding-top: 0 !important;
    }
    
    .currentValue h5 {
        font-size: 16px;
        margin: 0 0 8px 0 !important;
        padding-top: 0 !important;
    }
    
    .currentValue ol {
        font-size: 14px;
        line-height: 1.3;
        padding-left: 20px;
        margin: 0 !important;
    }
    
    .currentValue ol li {
        margin-bottom: 8px;
    }
    
  .progressBar {
        display: flex !important;
        justify-content: space-between !important;
        padding: 0 10px !important;
        margin: 0 !important;
        list-style: none !important;
        position: relative !important;
        width: 100% !important;
        counter-reset: step-counter !important;
    }
    
    .progressBar li {
        font-size: 12px !important;
        padding: 0 !important;
        width: 33.33% !important;
        text-align: center !important;
        position: relative !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        float: none !important; 
    }
    
    .progressBar li:before {
        width: 30px !important;
        height: 30px !important;
        line-height: 30px !important;
        font-size: 14px !important;
        border-radius: 50% !important;
        background: var(--secondary-bg) !important;
        border: 2px solid var(--border-color) !important;
        color: var(--text-muted) !important;
        font-family: "Lato", sans-serif !important;
        font-weight: 600 !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
        margin: 0 auto 8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        position: relative !important;
        z-index: 2 !important;
    }
    
    .progressBar li:nth-child(1):before {
        content: "1" !important;
    }
    
    .progressBar li:nth-child(2):before {
        content: "2" !important;
    }
    
    .progressBar li:nth-child(3):before {
        content: "3" !important;
    }
    
    .progressBar li.active:before {
        background: linear-gradient(135deg, var(--accent-blue), #6bb3d9) !important;
        border-color: var(--accent-blue) !important;
        color: var(--primary-bg) !important;
        box-shadow: 0 4px 15px rgba(133, 197, 235, 0.4) !important;
    }
    
    .progressBar li:nth-child(1):after,
    .progressBar li:nth-child(2):after {
        content: '' !important;
        position: absolute !important;
        top: 15px !important;
        left: calc(50% + 15px) !important;
        width: calc(100vw / 3 - 30px) !important;
        height: 2px !important;
        background: var(--border-color) !important;
        z-index: 1 !important;
        display: block !important;
    }
    
    .progressBar li:nth-child(3):after {
        display: none !important;
    }
    
    .progressBar li.active:nth-child(1):after,
    .progressBar li.active:nth-child(2):after {
        background: var(--accent-blue) !important;
        box-shadow: 0 1px 3px rgba(133, 197, 235, 0.3) !important;
    }
    
    .wrapper-progressBar {
        width: 100% !important;
        overflow: hidden !important;
    }
    
    .preggressDiv {
        margin: 0 15px !important;
        overflow: hidden !important;
    }
}

/* Extra small mobile fix (480px and down) */
@media screen and (max-width: 480px) {

    .containerWrapper {
        padding: 60px 0 0 !important;
    }

    .sectionWrap {
        padding: 15px 0;
        width: 100% !important;
        margin: 0 !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    .sectionPara {
        padding: 0 15px;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .sectionPara p {
        font-size: 16px;
        line-height: 1.8;
        text-align: center;
        gap: 10px !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .sectionPara b {
        display: none !important;
    }
    
    .sectionPara a {
        display: inline-block;
        color: var(--accent-blue) !important;
        text-decoration: underline;
        font-size: 16px;
    }
    
    .sectionPara a:hover {
        color: var(--accent-green) !important;
    }
    
    .input-label {
        font-size: 14px;
        line-height: 1.3;
    }
    
    
    .form-notice .subTagTwo {
        font-size: 12px;
    }

    .currentValue th img {
        width: 140px !important;
    }

    .stepWrap {
        gap: 10px;
    }


    h1 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 12px;
        text-align: center;
        padding: 0 5px;
    }
    
    h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        text-align: center;
    }
    
    h3 {
        font-size: 1.125rem;
        line-height: 1.3;
    }
    
    .stepperQuantity img {
        width: 70px;
        max-width: 100% !important;
    }
    
    .subTag {
        font-size: 18px;
        padding: 0 5px;
    }
    
    .coinInputWrap {
        /* margin: 15px 0; */
        height: 45px;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .coinInputWrap input {
        font-size: 16px;
        padding: 6px;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .btnWidth {
        font-size: 14px;
        padding: 10px 15px;
        height: 45px;
        line-height: 25px;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .subTagTwo {
        font-size: 14px;
    }
    
    .currentValue {
        padding: 15px 8px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .currentValue th img {
        max-width: 120px;
        width: 100% !important;
    }
    
    .currentValue h3 {
        font-size: 18px;
        margin: 0 0 8px 0 !important;
        padding-top: 0 !important;
    }
    
    .currentValue h5 {
        font-size: 14px;
        margin: 0 0 6px 0 !important;
        padding-top: 0 !important;
    }
    
    .currentValue ol {
        font-size: 13px;
        padding-left: 15px;
        margin: 0 !important;
    }
    
  .progressBar li {
        font-size: 10px;
    }
    
    .progressBar li:before {
        width: 25px !important;
        height: 25px !important;
        line-height: 25px !important;
        font-size: 12px !important;
        margin-bottom: 6px;
    }
    
    .progressBar li:not(:last-child):after {
        top: 12.5px !important;
        left: calc(50% + 12.5px) !important;
        width: calc(100vw / 3 - 25px) !important;
        transform: translateY(0) !important;
    }
	
    .sectionWrap {
        padding: 15px 0;
        width: 100% !important;
        margin: 0 !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    .sectionPara {
        padding: 0 10px;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .sectionPara p {
        font-size: 15px;
        line-height: 1.8;
        text-align: center;
        gap: 8px !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .sectionPara b {
        display: none !important;
    }
    
    .sectionPara a {
        display: inline-block;
        color: var(--accent-blue) !important;
        text-decoration: underline;
        font-size: 15px;
    }

    .form-container {
        padding: 20px 15px;
        margin: 0 10px;
        border-radius: 10px;
        box-shadow: 
            0 1px 8px rgba(0, 0, 0, 0.08),
            0 2px 16px rgba(0, 0, 0, 0.04),
            0 4px 32px rgba(0, 0, 0, 0.02),
            inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }
    
    .form-container:hover {
        transform: translateY(-1px);
        /* box-shadow: 
            0 2px 15px rgba(0, 0, 0, 0.12),
            0 4px 30px rgba(0, 0, 0, 0.08),
            0 8px 60px rgba(0, 0, 0, 0.04),
            0 0 20px rgba(133, 197, 235, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.08); */
    }
}

/* Ultra small screens (360px and down) */
@media screen and (max-width: 360px) {
    h1 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 10px;
        text-align: center;
        padding: 0 5px;
    }
    
    h2 {
        font-size: 1.25rem;
        line-height: 1.3;
        text-align: center;
    }
    
    h3 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .currentValue th {
        padding: 10px 5px;
        box-sizing: border-box !important;
    }
    
    .currentValue th img {
        max-width: 100px;
        width: 100% !important;
    }
    
    .currentValue h3 {
        font-size: 16px;
        margin: 0 0 6px 0 !important;
        padding-top: 0 !important;
    }
    
    .currentValue h5 {
        margin: 0 0 5px 0 !important;
        padding-top: 0 !important;
    }
    
    .currentValue ol {
        font-size: 12px;
        margin: 0 !important;
    }
    
    
    .subTag {
        font-size: 16px;
    }
    
    .subTagTwo {
        font-size: 12px;
    }

	 .progressBar {
        padding: 0 5px !important;
    }
    
    .progressBar li {
        font-size: 9px !important;
    }
    
    .progressBar li:before {
        width: 22px !important;
        height: 22px !important;
        line-height: 22px !important;
        font-size: 11px !important;
        margin-bottom: 5px !important;
    }
    
    .progressBar li:after {
        top: 11px !important;
    }

    .sectionWrap {
        padding: 15px 0;
        width: 100% !important;
        margin: 0 !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    .sectionPara {
        padding: 0 10px;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .sectionPara p {
        font-size: 14px;
        line-height: 1.8;
        text-align: center;
        gap: 6px !important;
        flex-direction: column !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .sectionPara a {
        display: block;
        margin: 4px auto;
        color: var(--accent-blue) !important;
        text-decoration: underline;
        font-size: 14px;
        width: fit-content;
    }
    
    .sectionPara b {
        display: none !important;
    }

     .form-container {
        padding: 18px 12px;
        margin: 0 8px;
        border-radius: 8px;
        box-shadow: 
            0 1px 6px rgba(0, 0, 0, 0.06),
            0 2px 12px rgba(0, 0, 0, 0.03),
            0 4px 24px rgba(0, 0, 0, 0.01),
            inset 0 1px 0 rgba(255, 255, 255, 0.03);
    }
    
    .form-container:hover {
        transform: translateY(-1px);
        /* box-shadow: 
            0 2px 12px rgba(0, 0, 0, 0.1),
            0 4px 24px rgba(0, 0, 0, 0.06),
            0 6px 48px rgba(0, 0, 0, 0.03),
            0 0 15px rgba(133, 197, 235, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 0.06); */
    }
}

.form-container:focus-within {
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.18),
        0 12px 50px rgba(0, 0, 0, 0.12),
        0 18px 100px rgba(0, 0, 0, 0.08),
        0 0 0 3px rgba(133, 197, 235, 0.3),
        0 0 35px rgba(133, 197, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    border-color: var(--accent-blue);
}

/* Landscape orientation adjustments for mobile */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .containerWrapper {
        height: initial;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .stepWrap {
        padding-top: 20px;
    }
    
    .currentValue {
        margin: 10px 0;
        padding: 20px 15px;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .progressBar li:before {
        margin-bottom: 5px;
    }
}

@media screen and (min-width: 1400px) {
    .mainWrap {
        max-width: 1200px;
    }
    
    .currentValue {
        max-width: 800px !important;
        margin: 20px auto;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .btn-blue,
    .coinInputWrap,
    .progressBar li:before,
    .progressBar li:after {
        transition: none;
    }

     .form-container {
        transition: box-shadow 0.2s ease;
    }
    
    .form-container:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .coinInputWrap {
        border-width: 2px;
    }
    
    .btn-blue {
        border: 2px solid #fff;
    }
    
    .progressBar li:before {
        border-width: 3px;
    }

    .form-container {
        box-shadow: 
            0 4px 20px rgba(0, 0, 0, 0.3),
            0 8px 40px rgba(0, 0, 0, 0.2);
        border-width: 2px;
    }
}

/* ADDITIONAL FIXES to prevent any horizontal scroll */
* {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

*:not(html):not(body) {
    max-width: 100% !important;
}

.container,
.container-fluid,
.row,
.col,
[class*="col-"] {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

img,
video,
canvas,
svg {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
}

/* Iframes get the same overflow protection but must NOT have their height
   forced to auto — PayPal sizes its own button/card-form iframes via inline
   height, and `height: auto !important` collapsed them (clipped the Debit or
   Credit Card button and broke the card form when it expanded). */
iframe {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

table {
    max-width: 100% !important;
    table-layout: fixed !important;
    word-wrap: break-word !important;
}

p, div, span, h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
}

input, select, textarea, button {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

[class*="col-"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

body > * {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

@media screen and (max-width: 1200px) {
    .currentValue * {
        margin-top: 0 !important;
    }
    
    .currentValue h3:first-child,
    .currentValue th:first-child h3 {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
}

@media screen and (max-width: 768px) {
    * {
        max-width: 100% !important;
        word-break: break-word !important;
    }
    
    .currentValue table,
    .currentValue th,
    .currentValue td {
        width: 100% !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    
    .currentValue th:first-child {
        padding-top: 15px !important;
        margin-top: 0 !important;
    }
    
    .currentValue th:first-child * {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}

html {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    position: relative !important;
}

*::before,
*::after {
    max-width: 100% !important;
    box-sizing: border-box !important;
}
/* Two-column purchase form: purchase form on the LEFT, free-book offer on the RIGHT */
.form-columns {
    display: flex;
    flex-wrap: nowrap;          /* keep the two columns side by side */
    align-items: flex-start;    /* top-align so the book stays put when the
                                   PayPal card form expands the left column */
    justify-content: center;
    gap: 36px;
}

.form-col-left {
    flex: 1 1 auto;
    min-width: 0;               /* allow shrinking so the columns stay in one row */
}

.form-col-right {
    flex: 0 0 230px;            /* fixed-width book column */
    text-align: center;
}

/* Stack only on genuinely narrow screens */
@media screen and (max-width: 560px) {
    .form-columns { flex-wrap: wrap; }
    .form-col-right { flex-basis: 100%; margin-top: 10px; }
}

/* Tighten the gap under the PayPal buttons */
.button-group { gap: 10px; }

/* The three PayPal buttons keep the dark theme (no panel) by default. When the
   inline Debit/Credit card form is opened, index.php adds .card-form-open and
   we swap to a light surface. PayPal renders that form inside its own
   (cross-origin) iframe and draws the section labels ("Billing address",
   "Ship to billing address", the legal text, "Powered by PayPal") in a fixed
   dark gray designed for a LIGHT page — we cannot recolor that text from here,
   so we give the form a light background (it shows through PayPal's transparent
   iframe) to restore contrast, only while the form is on screen. */
#paypal-button-container.card-form-open {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 14px;
}
#payNotice:empty { display: none; }   /* no empty gap when there is no message */
.form-notice { margin-top: 4px; }

.freebook-header {
    color: #85C5EB;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 26px;           /* more space between the header and the cover */
}

.freebook-image {
    display: block;
    width: 230px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;                 /* border sits directly on the image, no padding */
    border: 3px solid #d9b866;  /* gold frame to lift the cover off the background */
    border-radius: 3px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.65);   /* drop shadow for depth */
    background: none;
}
