
footer {
    background-color: #0E0E1500;
    padding: 20px;
    text-align: center;
    color: #F7F7F7;
    font-size: 12px;
    position: relative;
    z-index: 1; /* Ensure the footer stays above any background elements */
    margin-top: auto; /* Push the footer to the bottom */
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to bottom, #13151A, #0E0E15);
    color: #F7F7F7;
    position: relative;
    overflow-x: hidden; /* Prevent horizontal scroll due to the SVG */
}

#lightning-bolt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Make sure it covers the entire viewport height */
    z-index: -1; /* Place behind all other content */
}

#content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    min-height: 100vh;
    z-index: 1; /* Ensure content is above the SVG */
    position: relative;
}

/* Header/Banner Panel Styles */
.banner-panel {
    height: 80px;
    width: 100%;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    background: transparent; /* Transparent background to blend with the page */
    margin-bottom: 50px;
}

.banner-panel[custom-background] {
    background: var(--custom-background, linear-gradient(to bottom, #13151A, #0E0E15));
}

.banner-logo {
    height: 75px;
    margin-right: 45px;
}

.banner-button {
    font-family: 'Montserrat', sans-serif;
    color: #6a6a6a;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    margin-right: 45px; /* Left-to-right order */
    user-select: none;
}

.banner-button:hover {
    color: #FFC617;
}

.banner-button:active {
    color: #F8E43D;
}

/* Container for right-to-left elements */
.rtl-container {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.rtl-container > * {
    margin-left: 24px;
}

.rtl-container > *:first-child {
    margin-left: 0; /* No left margin for the first right-to-left element */
}


.image-button-wrapper {
    display: inline-flex;
    align-items: center;
    text-decoration: none; /* Remove underline */
}

.image-button {
    cursor: pointer;
    transition: fill 0.3s ease;
    width: 20px; /* Adjust size as needed */
    height: 20px; /* Adjust size as needed */
    fill: #F7F7F7; /* Default white color */
}

.image-button:hover {
    fill: #FFC617; /* Orange accent on hover */
}

.image-button:active {
    fill: #F8E43D; /* Yellow accent on click */
}

.download-button {
    width: 200px;
    height: 40px;
    background-color: #FFC617; /* Default color */
    color: #13151A;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: -1px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    border-radius: 2px;
    user-select: none;
}

.download-button:hover {
    background-color: #FFC617;
}

.download-button:active {
    background-color: #F8E43D;
}

/* Body Panel Styles */
.body-panel {
    padding: 30px 0;
    background-color: transparent;
    text-align: center;
}

.body-panel-title {
    font-size: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    background: linear-gradient(to right, #FFC617, #F8E43D);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #FFC617;
    margin-bottom: 10px;
}

.body-panel-body {
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    color: #cacaca;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Support Options Panel */
.support-options-panel {
    display: flex;
    justify-content: space-around;
    padding: 30px;
    user-select: none;
}

.support-option {
    background-color: #1e1e28f0;
    padding-top: 20px; /* Set top padding to 10px */
    padding-right: 10px; /* Maintain other paddings */
    padding-bottom: 20px;
    padding-left: 10px;
    border-radius: 8px;
    width: 30%;
    transition: background-color 0.3s ease;
    text-align: center;
}

.support-option h2 {
    font-size: 28px;
    color: #FFC617;
    margin-bottom: 15px;
}

.support-option p {
    font-size: 14px;
    color: #F7F7F7;
    margin-bottom: 20px;
}

.option-link {
    font-size: 16px;
    color: #F8E43D;
    text-decoration: none;
    font-weight: bold;
}
.mt-0{margin-top: 0px;}
.support-option:hover {
    background-color: #292933f0;
}
@media (max-width: 768px) {
.support-options-panel{display: inline; }
.support-option{width: 94%; margin-bottom: 10px;}
}
@media (max-width: 480px) {
.support-options-panel{padding: 0px 30px; }
.support-option{background: none;}
}
