/* =========================================
   PLATFORMCLOUDS — GLOBAL THEME VARIABLES
   Dark Mode = Default
========================================= */
:root {
    --bg: #000000;
    --text: #ffffff;
    --accent: #ffcc00;

    --box-bg: #111111;
    --box-border: #ffcc00;

    --button-bg: #ffcc00;
    --button-text: #000000;

    --link: #ffcc00;
}

/* =========================================
   LIGHT THEME OVERRIDES
========================================= */
body.light {
    --bg: #ffffff;
    --text: #000000;
    --accent: #ffcc00;

    --box-bg: #f5f5f5;
    --box-border: #000000;

    --button-bg: #000000;
    --button-text: #ffcc00;

    --link: #000000;
}

/* =========================================
   GLOBAL ELEMENTS
========================================= */
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, sans-serif;
    transition: background 0.25s ease, color 0.25s ease;
}

/* LINKS */
a {
    color: var(--link);
    text-decoration: none;
    transition: color 0.25s ease;
}

/* CONTAINER */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* GOLD BOX */
.gold-box {
    border: 2px solid var(--box-border);
    border-radius: 14px;
    padding: 40px;
    background: var(--box-bg);
    margin-bottom: 40px;
    transition: background 0.25s ease, border-color 0.25s ease;
}

/* BUTTONS */
.button {
    display: inline-block;
    padding: 12px 24px;
    background: var(--button-bg);
    color: var(--button-text);
    font-weight: 700;
    border-radius: 8px;
    margin-top: 20px;
    transition: box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button:hover {
    box-shadow: 0 0 20px var(--accent);
}

/* =========================================
   FOOTER (THEME-AWARE)
========================================= */
.footer-wrapper {
    width: 100%;
    background: var(--bg);
    color: var(--text);
    padding: 60px 0 40px 0;
    border-top: 2px solid rgba(255,255,255,0.12);
    margin-top: 60px;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

body.light .footer-wrapper {
    border-top: 2px solid rgba(0,0,0,0.12);
}

.footer-grid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
}

.footer-col h3 {
    color: var(--accent);
    font-size: 22px;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.footer-col p,
.footer-col a {
    font-size: 16px;
    line-height: 1.6;
}

.footer-col a {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.15);
    color: #ccc;
    font-size: 15px;
    transition: border-color 0.25s ease;
}

body.light .footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.15);
}

/* POLICY BUTTONS */
.footer-policy-links a {
    color: #000 !important;
    background: var(--accent);
    padding: 8px 16px;
    border-radius: 6px;
    margin: 4px;
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
    transition: box-shadow 0.25s ease;
}

.footer-policy-links a:hover {
    box-shadow: 0 0 20px var(--accent);
}

/* MOBILE */
@media (max-width: 600px) {
    .footer-wrapper {
        padding: 50px 0 30px 0;
    }
    .footer-col h3 {
        font-size: 20px;
    }
}

/* ================================
   GLOBAL MOBILE RESPONSIVE RESET
   ================================ */

/* Ensure the viewport scales correctly */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Make ALL elements scale inside the screen */
* {
    box-sizing: border-box;
    max-width: 100%;
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive tables */
table {
    width: 100% !important;
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
}

/* Responsive iframes / embeds */
iframe, embed, video {
    max-width: 100%;
    height: auto;
}

/* Responsive typography */
h1, h2, h3, h4, h5, h6, p, li {
    word-wrap: break-word;
}

/* ================================
   MOBILE BREAKPOINT (Phones)
   ================================ */
@media (max-width: 768px) {

    /* Reduce padding on all sections */
    section, div, .gold-frame {
        padding: 20px !important;
        margin: 20px auto !important;
    }

    /* Headings scale down */
    h1 { font-size: 34px !important; }
    h2 { font-size: 28px !important; }
    h3 { font-size: 24px !important; }

    /* Paragraphs scale down */
    p, li {
        font-size: 18px !important;
        line-height: 1.7 !important;
    }

    /* Buttons scale properly */
    a, button {
        display: block;
        width: 100%;
        text-align: center;
        padding: 16px !important;
        font-size: 20px !important;
        margin-bottom: 15px;
    }

    /* Prevent horizontal overflow from borders/shadows */
    .gold-frame {
        border-width: 2px !important;
        box-shadow: none !important;
    }
}

        .buy-btn {
            display:inline-block;
            padding:14px 26px;
            background:#ffcc00;
            color:#000;
            font-size:20px;
            font-weight:700;
            border-radius:10px;
            text-decoration:none;
            transition:0.2s ease-in-out;
            border:2px solid #ffcc00;
        }
        .buy-btn:hover {
            background:#000;
            color:#ffcc00;
            border-color:#ffcc00;
        }
        .pricing-card {
            border:3px solid #ffcc00;
            border-radius:18px;
            padding:30px;
            margin:20px auto;
            max-width:360px;
            text-align:center;
            box-shadow:0 0 30px #ffcc00;
        }
        .pricing-table th, .pricing-table td {
            padding:14px;
            border-bottom:1px solid #444;
        }
        .pricing-table th {
            border-bottom:2px solid #ffcc00;
     }
     
     img {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100% !important;
    height: auto !important;
}

h1, h2 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    display: block !important;
}

.gold-box {
    align-items: center;
}
