```css
/* =========================================================
   SAVINGS OR INVESTMENT — GLOBAL STYLES
   Clean, consolidated, responsive CSS
   ========================================================= */


/* =========================================================
   GLOBAL RESET
   ========================================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background-color: #0b0f19;
    background-image: url("images/SORI-LLC.png");
    background-repeat: repeat;
    background-position: center;
    background-size: auto;
    color: #e5e7eb;
    font-family: "Ink Free", "Courier New", monospace;
    line-height: 1.6;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.centered-font {
    margin: 15px 0 8px;
    text-align: center;
    color: #000000;
    font-family: "Ink Free", "Courier New", monospace;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
}

.text h1 {
    margin-bottom: 4px;
    color: #000000;
    font-size: 15px;
}

.text h3 {
    margin-bottom: 10px;
    color: #f9fafb;
    font-size: 15px;
}

.text h5 {
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 14px;
}

.text p,
p {
    margin-bottom: 15px;
    color: #d1d5db;
    font-family: "Ink Free", "Courier New", monospace;
    font-size: 12px;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

nav {
    padding: 4px 0;
    background: #ffffff;
    border-top: 2px solid #1f2937;
    border-bottom: 2px solid #1f2937;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
}

nav ul li a {
    display: inline-block;
    padding: 2px 5px;
    border-radius: 4px;
    color: #000000;
    font-size: 14px;
    text-decoration: none;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

nav ul li a:hover,
nav ul li a:focus-visible {
    background: #2563eb;
    color: #ffffff;
}


/* =========================================================
   CANVAS / MAIN CARD
   ========================================================= */

.canvas {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px 10px;
}

.box {
    width: 100%;
    max-width: 700px;
    padding: 20px;
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}


/* =========================================================
   GENERAL FORM CONTROLS
   ========================================================= */

input,
textarea,
select,
button {
    font: inherit;
}

input,
textarea,
select {
    width: 100%;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 4px;
    color: #111111;
    font-family: inherit;
}

input,
select {
    min-height: 32px;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

input.error,
textarea.error,
select.error {
    border-color: #dc3545;
}

select {
    margin-bottom: 10px;
}

button {
    cursor: pointer;
}

button:disabled,
.submit-button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}


/* =========================================================
   GENERAL FORM
   ========================================================= */

.form-group {
    margin-bottom: 10px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.char-counter {
    display: block;
    margin-top: -4px;
    margin-bottom: 8px;
    color: #666666;
    font-size: 10px;
    text-align: right;
}

.char-counter.limit-reached {
    color: #dc3545;
}

.submit-button {
    width: 100%;
    padding: 8px 10px;
    background: #007bff;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    font-size: 10px;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        opacity 0.3s ease;
}

.submit-button:hover:not(:disabled) {
    background: #0056b3;
}


/* =========================================================
   STATUS / MESSAGE BOXES
   ========================================================= */

.message {
    display: none;
    margin-top: 15px;
    padding: 8px;
    border-radius: 4px;
}

.message.success {
    display: block;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.message.error {
    display: block;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.message.warning {
    display: block;
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
}


/* =========================================================
   GENERAL BUTTON LINKS
   ========================================================= */

.btn-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 10px;
    background: #119675;
    border-radius: 5px;
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.btn-link:hover,
.btn-link:focus-visible {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-short {
    display: block;
    width: fit-content;
    min-width: 70px;
    margin: 0 auto;
    padding: 4px 10px;
    background: #008000;
    border: none;
    border-radius: 20px;
    color: #ffffff;
    font-size: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-short:hover {
    background: #006400;
}

.white-link {
    color: #ffffff;
    text-decoration: none;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 10px;
    background: #000000;
    text-align: center;
}

.site-footer a {
    color: #0066cc;
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    text-decoration: underline;
}


/* =========================================================
   DASHBOARD / METRICS
   ========================================================= */

.metrics {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.metric-box {
    flex: 1;
    padding: 10px;
    background: #1e1e1e;
    border-radius: 10px;
    text-align: center;
}

table {
    width: 90%;
    margin-top: 5px;
    border-collapse: collapse;
}

th,
td {
    padding: 4px;
    border: 1px solid #444444;
    text-align: center;
}


/* =========================================================
   CALLOUT CARDS
   ========================================================= */

.Call-out-container {
    display: flex;
    max-width: 600px;
    gap: 5px;
    margin: 20px auto;
}

.call-out {
    flex: 1;
    padding: 30px;
    background: #808080;
    border: 1px solid #1f2937;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
}


/* =========================================================
   PAYMENT PLATFORM
   ========================================================= */

.payment-platform {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 20vh;
    padding: 40px 10px;
    background: linear-gradient(
        135deg,
        #0f172a,
        #111827,
        #1e293b
    );
}

.payment-card {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
}

.payment-content {
    color: #ffffff;
}

.tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 4px 15px;
    background: #22c55e;
    border-radius: 999px;
    color: #ffffff;
    font-size: 10px;
    font-weight: bold;
}

.payment-content h1 {
    margin-bottom: 15px;
    font-size: 32px;
    line-height: 1.1;
}

.payment-content h3 {
    margin-bottom: 15px;
    color: #94a3b8;
    font-size: 20px;
}

.payment-content p {
    max-width: 600px;
    color: #cbd5e1;
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(120px, 1fr)
    );
    gap: 10px;
    margin-top: 40px;
}

.feature-box {
    padding: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.feature-box h4 {
    margin-bottom: 12px;
    color: #22c55e;
    font-size: 10px;
}

.feature-box p {
    color: #cbd5e1;
    font-size: 10px;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 35px;
}

.primary-btn,
.secondary-btn {
    padding: 10px 22px;
    border-radius: 14px;
    font-weight: bold;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}

.primary-btn {
    background: #22c55e;
    color: #ffffff;
}

.primary-btn:hover,
.primary-btn:focus-visible {
    background: #16a34a;
    transform: scale(1.05);
}

.secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.secondary-btn:hover,
.secondary-btn:focus-visible {
    background: rgba(255, 255, 255, 0.08);
}


/* =========================================================
   PHOTO GALLERY
   ========================================================= */

.photo-gallery {
    margin-top: 5px;
}

.photo-gallery h4 {
    margin-bottom: 10px;
    color: #333333;
    font-size: 18px;
    text-align: center;
}

.gallery {
    display: grid;
    grid-auto-rows: 120px;
    grid-template-columns: repeat(
        auto-fit,
        minmax(220px, 1fr)
    );
    gap: 15px;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.gallery img:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
    transform: scale(1.04);
}

.large {
    grid-column: span 2;
    grid-row: span 2;
}

.wide {
    grid-column: span 2;
}

.tall {
    grid-row: span 2;
}


/* =========================================================
   ACCOUNT / LOGIN / JOIN LINKS
   ========================================================= */

.join-link {
    display: inline-block;
    padding: 5px 10px;
    background: #d4af37;
    border-radius: 5px;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.join-link:hover,
.join-link:focus-visible {
    background: #b8962e;
    color: #ffffff;
}

.forgot-password {
    color: #007bff;
    text-decoration: none;
}

.forgot-password:hover,
.forgot-password:focus-visible {
    color: #0056b3;
    text-decoration: underline;
}

.login-link {
    color: #d4af37;
    text-decoration: none;
}

.login-link:hover,
.login-link:focus-visible {
    color: #b8962e;
    text-decoration: underline;
}

.free-join-container,
.login-container {
    margin: 15px 0;
    text-align: center;
}

.free-join-box,
.login-box {
    display: inline-block;
    background: #d4af37;
    border: 1px solid #b8962e;
    border-radius: 3px;
    color: #000000;
    font-family: "Ink Free", "Comic Sans MS", cursive;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
}

.free-join-box {
    padding: 10px 20px;
}

.login-box {
    padding: 10px 25px;
}

.free-join-box:hover,
.login-box:hover,
.free-join-box:focus-visible,
.login-box:focus-visible {
    background: #f0d36b;
    color: #000000;
}


/* =========================================================
   LOGIN PAGE
   ========================================================= */

.login-container {
    width: 90%;
    max-width: 430px;
    margin: 15px auto;
    padding: 30px 32px;
    background: #000000;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-align: left;
}

.login-container h2 {
    margin: 0 0 8px;
    text-align: center;
    color: #ffffff;
    font-size: 30px;
    font-family: "Ink Free", cursive;
}

.login-subtitle {
    margin: 0 0 25px;
    color: #ffffff;
    text-align: center;
    font-size: 18px;
}

.login-container .form-group {
    margin-bottom: 18px;
}

.login-container .form-group label {
    display: block;
    margin-bottom: 7px;
    color: #ffffff;
    font-size: 15px;
    font-weight: bold;
}

.login-container .form-group input {
    width: 100%;
    padding: 11px 13px;
    background: #ffffff;
    border: 1px solid #999999;
    border-radius: 5px;
    color: #000000;
    font-size: 15px;
}

.login-container .form-group input:focus {
    outline: none;
    border: 2px solid #c9a227;
    box-shadow: 0 0 5px rgba(201, 162, 39, 0.35);
}

.login-error {
    min-height: 20px;
    margin-bottom: 10px;
    color: #ff6b6b;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

.login-button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.login-button {
    width: 100%;
    padding: 11px 20px;
    background: gold;
    border: none;
    border-radius: 5px;
    color: #000000;
    font-family: "Ink Free", cursive;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.login-button:hover {
    background: #d4af37;
    transform: translateY(-1px);
}

.login-container .join-link {
    display: block;
    margin-top: 20px;
    padding: 0;
    background: transparent;
    text-align: center;
    font-size: 14px;
}

.login-container .join-link a {
    color: #d4af37;
    font-weight: bold;
    text-decoration: underline;
}


/* =========================================================
   FORGOT PASSWORD
   ========================================================= */

.forgot-password-container {
    width: 90%;
    max-width: 430px;
    margin: 15px auto;
    padding: 30px 32px;
    background: #000000;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-align: left;
}

.forgot-password-container h2 {
    margin: 0 0 8px;
    color: #ffffff;
    text-align: center;
    font-size: 28px;
    font-family: "Ink Free", cursive;
}

.forgot-subtitle {
    margin: 0 0 25px;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
}

.forgot-password-container .form-group {
    margin-bottom: 18px;
}

.forgot-password-container .form-group label {
    display: block;
    margin-bottom: 7px;
    color: #ffffff;
    font-size: 15px;
    font-weight: bold;
}

.forgot-password-container .form-group input {
    width: 100%;
    padding: 11px 13px;
    background: #ffffff;
    border: 1px solid #999999;
    border-radius: 5px;
    color: #000000;
    font-size: 15px;
}

.forgot-password-container .form-group input:focus {
    outline: none;
    border: 2px solid #c9a227;
    box-shadow: 0 0 5px rgba(201, 162, 39, 0.35);
}

.password-message {
    min-height: 20px;
    margin-bottom: 10px;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}


.reset-button-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.reset-button {
    width: 100%;
    padding: 11px 20px;
    background: gold;
    border: none;
    border-radius: 5px;
    color: #000000;
    font-family: "Ink Free", cursive;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.reset-button:hover {
    background: #d4af37;
    transform: translateY(-1px);
}

.back-login,
.forgot-join {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

.forgot-join {
    margin-top: 15px;
}

.back-login a,
.forgot-join a {
    color: #d4af37;
    font-weight: bold;
    text-decoration: underline;
}


/* =========================================================
   MEMBER DASHBOARD
   ========================================================= */

.member-page {
    width: 80%;
    max-width: 400px;
    margin: 10px auto;
}

.member-header {
    margin-bottom: 15px;
    text-align: center;
}

.member-header h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-family: "Ink Free", cursive;
    font-size: 20px;
}

.member-header p {
    margin: 0;
    font-size: 12px;
}

.member-card {
    margin-bottom: 10px;
    padding: 15px;
    background: #000000;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.member-card h3 {
    margin: 0 0 10px;
    color: #ffffff;
    text-align: center;
    font-family: "Ink Free", cursive;
    font-size: 18px;
}

.member-status,
.membership-type {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    color: #ffffff;
    border-bottom: 1px solid #444444;
}

.membership-type {
    border-bottom: none;
}

.status-label {
    font-weight: bold;
}

.status-active {
    color: #3fb950;
    font-weight: bold;
}

.profile-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 0;
    color: #ffffff;
    border-bottom: 1px solid #444444;
}

.profile-row:last-child {
    border-bottom: none;
}

.profile-row strong {
    min-width: 100px;
}

.member-options {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.member-action {
    padding: 6px 11px;
    background: gold;
    border: none;
    border-radius: 5px;
    color: #000000;
    font-family: "Ink Free", cursive;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.member-action:hover {
    background: #d4af37;
    transform: translateY(-1px);
}

.member-message {
    min-height: 20px;
    color: #ffffff;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
}


/* =========================================================
   VERIFY ACCOUNT
   ========================================================= */

.verify-container {
    width: 90%;
    max-width: 430px;
    margin: 15px auto;
    padding: 30px 32px;
    background: #000000;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-align: left;
}

.verify-container h2 {
    margin: 0 0 8px;
    color: #ffffff;
    text-align: center;
    font-size: 28px;
    font-family: "Ink Free", cursive;
}

.verify-subtitle {
    margin: 0 0 25px;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
}

.verify-container .form-group {
    margin-bottom: 18px;
}

.verify-container .form-group label {
    display: block;
    margin-bottom: 7px;
    color: #ffffff;
    font-size: 15px;
    font-weight: bold;
}

.verify-container .form-group input {
    width: 100%;
    padding: 11px 13px;
    background: #ffffff;
    border: 1px solid #999999;
    border-radius: 5px;
    color: #000000;
    font-size: 15px;
}

.verify-container .form-group input:focus {
    outline: none;
    border: 2px solid #c9a227;
    box-shadow: 0 0 5px rgba(201, 162, 39, 0.35);
}

.verify-message {
    min-height: 20px;
    margin-bottom: 10px;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

.verify-button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.verify-button {
    width: 100%;
    padding: 11px 20px;
    background: gold;
    border: none;
    border-radius: 5px;
    color: #000000;
    font-family: "Ink Free", cursive;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.verify-button:hover {
    background: #d4af37;
    transform: translateY(-1px);
}

.resend-code {
    margin-top: 20px;
    color: #ffffff;
    text-align: center;
    font-size: 14px;
}

.resend-code p {
    margin: 0 0 8px;
}

.resend-button {
    padding: 8px 18px;
    background: #ffffff;
    border: 1px solid #999999;
    border-radius: 5px;
    color: #000000;
    font-size: 14px;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.resend-button:hover {
    background: #d4af37;
    color: #000000;
}

.verify-login {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

.verify-login a {
    color: #d4af37;
    font-weight: bold;
    text-decoration: underline;
}


/* =========================================================
   SORI JOIN PAGE
   ========================================================= */

.join-container {
    width: 85%;
    max-width: 460px;
    margin: 0 auto;
}

.join-subtitle {
    margin-bottom: 25px;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
}

.join-form {
    width: 100%;
}

.join-field {
    margin-bottom: 15px;
}

.join-field label {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
}

.join-field input,
.join-field select {
    width: 100%;
    padding: 12px 14px;
    background: #ffffff;
    border: 1px solid #777777;
    border-radius: 7px;
    color: #000000;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.join-field input:focus,
.join-field select:focus {
    outline: none;
    border: 2px solid #d4af37;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.25);
}

.required {
    color: #ff4d4d;
}

.join-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
    color: #ffffff;
    font-family: "Ink Free", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.5;
}

.join-terms input {
    width: auto;
    min-width: 16px;
    margin-top: 4px;
}

.join-terms label {
    margin: 0;
}

.sori-join-button {
    width: 100%;
    padding: 12px 15px;
    background: #d4af37;
    border: none;
    border-radius: 6px;
    color: #000000;
    font-family: "Ink Free", "Segoe Print", cursive;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.sori-join-button:hover:not(:disabled) {
    background: #f0cf5c;
    transform: translateY(-1px);
}

.sori-join-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.join-login-link {
    margin-top: 22px;
    color: #ffffff;
    text-align: center;
    font-family: Ink Free, sans-serif;
}

.join-login-link a {
    color: #d4af37;
    text-decoration: none;
}

.join-login-link a:hover {
    text-decoration: underline;
}

.join-message {
    display: none;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 5px;
    font-family: "Ink Free", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.5;
}

.join-message.error {
    display: block;
    background: #451919;
    border: 1px solid #f85149;
    color: #ffffff;
}

.join-message.success {
    display: block;
    background: #173d21;
    border: 1px solid #3fb950;
    color: #ffffff;
}


/* =========================================================
   JOIN VERIFICATION
   ========================================================= */

#confirmationSection {
    display: none;
}

.confirmation-text {
    margin-bottom: 25px;
    color: #ffffff;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    text-align: center;
}

.confirmation-email {
    color: #d4af37;
    font-weight: bold;
    word-break: break-word;
}

.confirmation-code {
    text-align: center;
    font-size: 15px !important;
    letter-spacing: 5px;
}

.secondary-button {
    width: 100%;
    margin-top: 12px;
    padding: 12px 15px;
    background: transparent;
    border: 1px solid #d4af37;
    border-radius: 6px;
    color: #d4af37;
    font-family: Arial, sans-serif;
    font-size: 12px;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.secondary-button:hover {
    background: #d4af37;
    color: #000000;
}


/* =========================================================
   JOIN SUCCESS
   ========================================================= */

#successSection {
    display: none;
    color: #ffffff;
    text-align: center;
    font-family: "Ink Free", Arial, sans-serif;
}

#successSection h3 {
    color: #d4af37;
    font-size: 20px;
}

#successSection p {
    color: #ffffff;
    line-height: 1.6;
}

.success-login-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background: #d4af37;
    border-radius: 8px;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.success-login-button:hover {
    background: #f0cf5c;
    transform: translateY(-1px);
}


/* =========================================================
   AD CONTAINER
   ========================================================= */

.my-ad-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 768px) {

    .centered-font {
        font-size: 32px;
    }

    .Call-out-container {
        flex-direction: column;
        align-items: center;
    }

    .call-out {
        width: 90%;
    }

    .metrics {
        flex-direction: column;
    }

    .gallery {
        grid-template-columns: repeat(
            auto-fit,
            minmax(160px, 1fr)
        );
    }

    .payment-content h1 {
        font-size: 28px;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 468px) {

    nav ul {
        gap: 4px;
    }

    nav ul li a {
        padding: 4px 6px;
        font-size: 10px;
    }

    .centered-font {
        margin-top: 5px;
        font-size: 24px;
    }

    .canvas {
        padding: 10px 5px;
    }

    .box {
        padding: 12px;
        border-radius: 6px;
    }

    .payment-platform {
        padding: 30px 10px;
    }

    .payment-card {
        padding: 20px;
        border-radius: 12px;
    }

    .payment-content h1 {
        font-size: 22px;
    }

    .payment-content h3 {
        font-size: 15px;
    }

    .payment-content p {
        font-size: 12px;
    }

    .button-group {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 160px;
    }

    .large,
    .wide,
    .tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .login-container,
    .forgot-password-container,
    .verify-container {
        width: 92%;
        padding: 24px 20px;
    }

    .login-container h2 {
        font-size: 27px;
    }

    .forgot-password-container h2,
    .verify-container h2 {
        font-size: 25px;
    }

    .join-container {
        width: 94%;
    }

    .member-page {
        width: 92%;
    }

    .profile-row {
        flex-direction: column;
        gap: 2px;
    }

    .profile-row strong {
        min-width: auto;
    }

    .member-options {
        flex-direction: column;
    }

    .member-action {
        width: 100%;
    }
}


/* =========================================================
   VERY SMALL SCREENS
   ========================================================= */

@media (max-width: 360px) {

    .centered-font {
        font-size: 20px;
    }

    nav ul {
        gap: 2px;
    }

    nav ul li a {
        padding: 3px 5px;
        font-size: 9px;
    }

    .box {
        padding: 10px;
    }

    .login-container,
    .forgot-password-container,
    .verify-container {
        width: 96%;
        padding: 20px 15px;
    }

    .join-container {
        width: 96%;
    }

    .join-field input,
    .join-field select {
        padding: 10px;
        font-size: 13px;
    }

    .sori-join-button {
        font-size: 14px;
    }

    .confirmation-code {
        font-size: 14px !important;
        letter-spacing: 3px;
    }
}
```
