/* INDEX PAGE — CLEAN DARK MODE */

body {
    background: #000; /* pure black */
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
}

/* WRAPPER */
#indexWrapper {
    width: 90%;
    max-width: 900px;
    margin: auto;
    padding-top: 25px;
}

/* LOGIN AREA */
#loginArea {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

/* SMALL LOGIN BLOCKS */
.loginBlock {
    background: #111;
    padding: 10px;
    width: 140px;              /* MUCH smaller */
    border-radius: 6px;
    border: 1px solid #333;    /* subtle */
    box-shadow: 0 0 8px rgba(255,255,255,0.08);
    text-align: center;
}

.loginBlock h3 {
    margin-bottom: 5px;
    font-size: 13px;
    color: #ddd;
}

.loginBlock input {
    width: 90%;
    padding: 6px;
    margin-top: 6px;
    border: 1px solid #555;
    border-radius: 4px;
    font-size: 13px;
    background: #222;
    color: #fff;
}

.loginBlock button {
    margin-top: 8px;
    padding: 6px 12px;
    background: #ffcf00;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 13px;
}

.loginBlock button:hover {
    background: #ffe45c;
}

/* TITLE IMAGE */
#titleArea {
    text-align: center;
    margin-bottom: 15px;
}

#titleImage {
    width: 100%;
    max-width: 700px;
    filter: drop-shadow(0 0 12px #ffcf00);
}

/* PLAY BUTTON */
#playArea {
    text-align: center;
    margin-bottom: 20px;
}

#playArea button {
    padding: 12px 30px;
    font-size: 18px;
    background: #ffcf00;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
}

#playArea button:hover {
    background: #ffe45c;
}

/* COLLAPSIBLE SECTIONS — SMALLER, DARKER */
.section {
    background: #111;
    border: 1px solid #333;
    margin-bottom: 8px;
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 0 6px rgba(255,255,255,0.05);
    color: #ddd;
}

.section h2 {
    cursor: pointer;
    font-size: 15px; /* smaller */
    color: #ffcf00;
}

.sectionContent {
    display: none;
    padding: 8px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #ccc;
}

/* FOOTER */
#footer {
    margin-top: 25px;
    text-align: center;
    font-size: 12px;
    color: #888;
    padding-bottom: 30px;
}
.affiliate-gold-btn {
    background: gold;
    color: #000;
    font-weight: bold;
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    border: none;
    display: block;
    margin: 25px auto;
    text-align: center;
    transition: 0.25s ease;
}

.affiliate-gold-btn:hover {
    background: #000;
    color: gold;
    box-shadow: 0 0 12px gold;
}
/* ============================
   AFFILIATE PAGE — MOBILE FIXES
============================ */

#indexWrapper {
    width: 100%;
    max-width: 900px;
    margin: auto;
    padding: 15px;
    box-sizing: border-box;
}

#titleArea {
    text-align: center;
    margin-bottom: 20px;
}

#titleImage {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 10px;
}

.shareBtn {
    background: #222;
    color: #ffd700;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    font-size: 18px;
    margin: 10px auto;
    width: 90%;
    max-width: 300px;
    display: block;
    cursor: pointer;
}

.shareBtn:hover {
    background: #333;
}

/* ============================
   MOBILE RESPONSIVE
============================ */
@media (max-width: 600px) {

    #indexWrapper {
        padding: 10px;
    }

    h2, h3, p {
        text-align: center;
        font-size: 16px;
        line-height: 1.4;
    }

    ul {
        padding-left: 20px;
        font-size: 15px;
    }

    .shareBtn {
        width: 100%;
        font-size: 16px;
        padding: 14px;
    }

    #playArea button {
        width: 100%;
        padding: 15px;
        font-size: 18px;
    }
}
/* ============================
   AFFILIATE PAGE — FULL MOBILE FIX
============================ */

#indexWrapper {
    width: 100%;
    max-width: 900px;
    margin: auto;
    padding: 20px;
    box-sizing: border-box;
}

#titleArea {
    text-align: center;
    margin-bottom: 20px;
}

#titleImage {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 10px;
}

/* Share buttons */
.shareBtn {
    background: #222;
    color: #ffd700;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    font-size: 18px;
    margin: 10px auto;
    width: 90%;
    max-width: 300px;
    display: block;
    cursor: pointer;
}

.shareBtn:hover {
    background: #333;
}

/* ============================
   MOBILE RESPONSIVE OVERRIDES
============================ */
@media (max-width: 600px) {

    /* shrink container padding */
    #indexWrapper {
        padding: 10px;
    }

    /* shrink headings */
    h2 {
        font-size: 22px;
        text-align: center;
        line-height: 1.3;
    }

    h3 {
        font-size: 18px;
        text-align: center;
        line-height: 1.3;
    }

    /* shrink paragraphs */
    p {
        font-size: 15px;
        line-height: 1.4;
        text-align: center;
        margin: 10px 0;
    }

    /* shrink list text */
    ul {
        font-size: 15px;
        padding-left: 20px;
        line-height: 1.4;
    }

    /* shrink share buttons */
    .shareBtn {
        width: 100%;
        font-size: 16px;
        padding: 14px;
    }

    /* shrink back button */
    #playArea button {
        width: 100%;
        padding: 15px;
        font-size: 18px;
    }

    /* shrink the black commission box */
    .commissionBox {
        font-size: 15px !important;
        padding: 12px !important;
    }
}
/* ============================
   FULL MOBILE FIX FOR SALE PAGES
============================ */
@media (max-width: 768px) {

    /* Make wrapper fit phone width */
    #indexWrapper {
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px !important;
    }

    /* Stack login blocks vertically */
    #loginArea {
        flex-direction: column !important;
        gap: 10px !important;
        align-items: center !important;
    }

    .loginBlock {
        width: 100% !important;
        max-width: 300px !important;
    }

    /* Make title image fit phone */
    #titleImage {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Make collapsible sections full width */
    .section {
        width: 100% !important;
        font-size: 16px !important;
        padding: 12px !important;
    }

    .sectionContent {
        font-size: 15px !important;
    }

    /* Make buttons full width */
    #playArea button,
    .affiliate-gold-btn,
    .shareBtn {
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px !important;
        font-size: 18px !important;
    }
}
.nonprofit-disclosure {
  padding: 15px;
  font-size: 0.95em;
  line-height: 1.5em;
  color: #ddd;
}

.nonprofit-disclosure h3,
.nonprofit-disclosure h4 {
  color: #ffd54f;
  margin-top: 20px;
  margin-bottom: 10px;
}

.nonprofit-disclosure a {
  color: #80c8ff;
  text-decoration: underline;
}
