/* Footer Styles */
footer {
    background-color: #0E0E1500;
    padding: 30px;
    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); /* Fallback background color */
    color: #F7F7F7;
    position: relative;
    overflow-x: hidden; /* Prevents scrollbar from appearing due to SVG */
}

#content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    min-height: 100vh;
    z-index: 2; /* Content is above the line */
}

#lightning-bolt {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Set a negative z-index to ensure it's at the bottom */
    pointer-events: none; /* Allows interaction with elements above the SVG */
}

/* 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; /* Scaled-down logo size */
    margin-right: 45px; /* Default margin for left-to-right order */
}

.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; /* Orange accent on hover */
}

.banner-button:active {
    color: #F8E43D; /* Yellow accent on click */
}

/* 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 Section */
.download-section {
    text-align: center;
    margin-bottom: 40px;
}

.download-section h1 {
    font-size: 48px;
    background: linear-gradient(to right, #E6A404, #F8E43D);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #E6A404; /* Fallback color */
    margin-bottom: 10px;
}

.download-section p {
    font-size: 18px;
    color: #cacaca;
    margin-bottom: 30px;
}

/* Download Button Styles */
.banner-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;
}

.banner-download-button:hover {
    background-color: #E1A823; /* Orange accent on hover */
}

.banner-download-button:active {
    background-color: #F8E43D; /* Yellow accent on click */
}

.download-button {
    width: 280px;
    height: 45px;
    background-color: #FFC617;
    color: #13151A;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    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;
    margin: 0 auto;
}

.download-button:hover {
    background-color: #FFC617;
}

.download-button:active {
    background-color: #F8E43D;
}

/* Steps Section */
.steps-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.step-box {
    background-color: #1e1e28;
    border-radius: 8px;
    padding: 20px 0px;
    width: 30%;
    text-align: center;
    margin-right: 10px;
}

.step-number {
    background-color: #FFC617;
    font-size: 24px;
    font-weight: bold;
    color: #13151A;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: -30px auto 10px auto;
}

.step-title {
    font-size: 24px;
    font-weight: bold;
    color: #F7F7F7;
    margin-bottom: 10px;
}

.step-description {
    font-size: 16px;
    color: #cacaca;
}
@media (max-width: 992px) {
    .steps-container{display: flex; flex-direction: column; padding: 0px; width: 50%;}
    .step-box{width: 100%; margin-bottom: 20px;}
  
}
@media (max-width: 480px) {
    .step-title{font-size: 22px;}
    .download-button{width: 90% !important; margin-left: 10px !important;}
    .step-box{background-color: inherit;}
}