/* Color Variables */
:root {
    --primary-orange: #fc8601;
    --secondary-orange: #FFA800;
    --dark-bg: #0e0f16;
    --light-text: #ffffff;
    --gray-text: #b3b3b3;
    --dark-card: #1a1a1a;
    --hover-orange: #e67700;
    --opacity-orange: #fc86016e;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Optimize for smooth scrolling */
* {
    -webkit-overflow-scrolling: touch;
}

html, body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Adjust this value based on your header height */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header Styles */
.header-section {
    background: radial-gradient(circle, transparent 0%, rgba(18, 19, 27, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    will-change: background-color, backdrop-filter;
    transform: translateZ(0);
}

.navbar {
    padding: 0.5rem 0;
}

.logo {
    width: 100px;   
    /* height: 100px; */
    object-fit: cover;
    margin-right: 0.5rem;
    margin-left: 10px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-orange);
}

.language-select {
    background-color: transparent;
    border: 1px solid var(--gray-text);
    color: var(--light-text);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    width: 100px;
    min-width: 100px;
}

.language-select option {
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.btn-signin {
    background-color: var(--primary-orange);
    border: none;
    color: var(--light-text) !important;
    padding: 0.5rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 3px !important;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
    white-space: nowrap;
    height: 45px;
    box-shadow: 2px 2px 4px rgb(0 0 0 / 50%);
}

.btn-signin:hover {
    background-color: var(--hover-orange);
    color: var(--light-text);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://cdn.blazespinsmail.com/core/modules/hero/hero-banner-primary.jpg') center/cover no-repeat;
    will-change: transform;
    transform: translateZ(0);
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 19, 27, 0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, transparent 0%, rgba(18, 19, 27, 0.8) 100%);
}

.hero-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 350px;
}
.hero-section .container.custom-sep-height{
    padding-top: 15%;
}
.hero-section .container.custom-sep-height.custom-affiliate-height{
    padding-top: 10%;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    /* max-width: 75%; */
    margin: 0 auto;
    margin-bottom: 1rem;
    /* text-shadow: 2px 2px 4px rgba(0,0,0,0.8); */
    background: linear-gradient(to right, #ffffff, #fed7aa, #fb923c);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--gray-text);
}

.hero-signup {
    margin-top: 2rem;
}


.signup-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.email-form {
    max-width: 600px;
    margin: 0 auto;
}


.get-started-btn {
    background-color: var(--primary-orange);
    border: none;
    color: var(--light-text) !important;
    padding: 0.5rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 3px !important;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
    white-space: nowrap;
    height: 45px;
    box-shadow: 2px 2px 4px rgb(0 0 0 / 50%);
}

.get-started-btn:hover {
    background-color: var(--hover-orange);
    color: var(--light-text) !important;
    text-decoration: none;
}

.get-started-btn i {
    transition: transform 0.3s ease;
    font-size: 1.025rem;
}

.get-started-btn:hover i {
    transform: translateX(4px);
}

/* Curved Border */
.curve-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.curve-border svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

/* Trending Section */
.trending-section {
    padding: 4rem 0;
    background-color: var(--dark-bg);
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.trending-slider-container {
    position: relative;
    margin: 0 -15px;
    padding: 20px 15px;
}

.trending-slider {
    position: relative;
}

.trending-item {
    position: relative;
    cursor: pointer;
    padding: 10px;
}

.trending-item:hover {
    transform: scale(1.05);
}

.trending-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 30px;
    background-color: var(--primary-orange);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
}

.trending-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Owl Carousel Custom Styles */
.owl-nav {
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    pointer-events: none;
}

.owl-prev,
.owl-next {
    position: absolute;
    width: 40px !important;
    height: 40px !important;
    background-color: var(--primary-orange) !important;
    border-radius: 50% !important;
    color: var(--light-text) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: background-color 0.3s;
}

.owl-prev:hover,
.owl-next:hover {
    background-color: var(--hover-orange) !important;
}

.owl-prev {
    left: -20px;
}

.owl-next {
    right: -20px;
}

.owl-dots {
    display: none;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background-color: var(--dark-card);
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(252, 134, 1, 0.3);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.feature-card p {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: var(--dark-bg);
}

.accordion-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background-color: transparent;
    color: var(--light-text);
    border: none;
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: left;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(252, 134, 1, 0.1);
    color: var(--light-text);
    box-shadow: none;
}

.accordion-button::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-orange);
    font-weight: bold;
    background-image: none;
    transition: transform 0.3s;
}

.accordion-button:not(.collapsed)::after {
    content: '×';
    transform: rotate(0deg);
}

.accordion-body {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--gray-text);
    padding: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

/* Footer */
.footer {
    background-color: var(--dark-card);
    padding: 3rem 0 2rem;
    color: var(--gray-text);
    text-align: center !important;
}

.footer-contact {
    margin-bottom: 2rem;
    font-size: 1rem;
}

.footer-contact a {
    color: var(--gray-text);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--primary-orange);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.language-select-footer {
    background-color: transparent;
    border: 1px solid var(--gray-text);
    color: var(--light-text);
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    width: 150px;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.language-select-footer option {
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.footer-country {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin-top: 1rem;
}

/* Netflix-style Curved Divider */
.netflix-curve-divider {
    overflow-x: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6.25rem;
    z-index: 1;
}

.curve-container {
    position: relative;
    height: 100%;
}

.curve-element {
    position: absolute;
    height: 100%;
    top: 0;
    margin: auto;
    display: flex;
    align-items: center;
    border: solid 0.25rem transparent;
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    border-bottom: none;
    background: radial-gradient(50% 500% at 50% -420%, rgba(252, 134, 1, 0.4) 80%, rgba(0, 0, 0, 0.1) 100%), #101118;
    background-clip: padding-box;
    width: 120%;
    left: -10%;
}

.curve-element:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin-top: -0.25rem;
    border-radius: inherit;
    background: linear-gradient(
        to right, 
        rgba(18, 19, 27, 1) 16%, 
        rgba(252, 134, 1, 0.8), 
        var(--primary-orange), 
        rgba(255, 168, 0, 0.8), 
        rgba(18, 19, 27, 1) 84%
    );
}

.curve-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: var(--dark-bg); */
    z-index: -2;
}
.input-group{
    justify-content: center;
}
.bottom-form {
    padding-top: 50px;
}

/* About/Promo Section Styles */
.about-section {
    padding: 1rem 0;
    background-color: var(--dark-bg);
}

.promo-bar {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-icon {
    color: var(--primary-orange);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.promo-message {
    flex: 1;
    color: var(--light-text);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.promo-subtitle {
    color: var(--gray-text);
    font-weight: normal;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.promo-action {
    display: flex;
    align-items: center;
}

.btn-learn {
    color: var(--light-text);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 3px;
    transition: background-color 0.3s;
    height: 45px;
    font-size: 1.125rem;
}

.btn-learn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--light-text);
}
/* Countdown Timer Styles */
.september-timer-section {
    position: relative;
}
.september-timer {
    margin: 2rem 0;
    display: none; /* Hidden by default, shown only for 100wfs */
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    bottom: -100px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.countdown-container {
    /* background-color: #1A1A1Ab8;
    border: 1px solid var(--primary-orange); */
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    /* box-shadow: 0 0 20px rgba(252, 134, 1, 0.3); */
    max-width: 600px;
    margin: 0 auto;
}

.countdown-display {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.countdown-box {
    background-color: #282828;
    border: 1px solid var(--opacity-orange);
    border-radius: 6px;
    padding: 0.5rem;
    min-width: 80px;
    text-align: center;
}

.countdown-number {
    color: var(--primary-orange);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    color: #CCCCCC;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-expiry {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #CCCCCC;
    font-size: 0.8rem;
}

.lightning-icon {
    color: var(--primary-orange);
    font-size: 1rem;
}

.expiry-date {
    color: var(--primary-orange);
    /* font-weight: bold; */
}
.affiliate-with-logo-desktop-container {
    display: none;
}
.affiliate-with-logo-mobile-container {
    display: block;
    margin-bottom: 0;
    /* opacity: 0.7; */
}
.affiliate-with-logo-mobile .row {
    margin-bottom: 10%;
    border-radius: 5px;
    background-color: #c0541a0a;
    padding: 2%;
    flex-direction: column;
    position: relative;
    /* box-shadow: 2px 2px 4px rgb(0 0 0 / 50%);
    box-shadow: rgb(0 0 0 / 32%) 0px 30px 60px -12px inset, rgb(0 0 0 / 23%) 0px 18px 36px -18px inset;
    border: 1px solid #ffffff0a; */
    border: 2px solid #c0541a2b;
    backdrop-filter: blur(9px);
}
.affiliate-with-logo-mobile .row:before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px;
    height: 2px;
    width: 50px;
    background: #fc8601;
    margin: 0 auto;
}
.affiliate-with-logo-mobile-image-container img {
    width: 130px;
}
.affiliate-with-logo-mobile .exc-bonus-text {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 0px !important;
}

@media (min-width: 1921px) {
    /* .september-timer {
        top: 70.5%;
    } */
    .hero-section .container {
        padding-top: 16%;
    }
    .hero-section .container.custom-sep-height {
        padding-top: 12%;
    }
    .hero-section {
        min-height: 75vh;
    }
    .hero-title {
        font-size: 4rem;
    }
    .hero-subtitle {
        font-size: 1.5rem;
    }
    .get-started-btn {
        font-size: 1.1rem;
    }
    .btn-signin {
        font-size: 1.1rem;
    }
    .language-select {
        font-size: 0.9rem;
    }
    .language-select option {
        font-size: 0.9rem;
    }
    .promo-bar {
        font-size: 1.1rem;
    }
    .promo-message {
        font-size: 1.1rem;
    }
    .promo-subtitle {
        font-size: 0.9rem;
    }
    .btn-learn {
        font-size: 1.1rem;
    }
    .btn-learn:hover {
        font-size: 1.1rem;
    }
    .accordion-button {
        font-size: 1.1rem;
    }
    .accordion-button:hover {
        font-size: 1.1rem;
    }
    .accordion-body {
        font-size: 1.1rem;
    }
    .trending-number {
        font-size: 1.1rem;
    }
    .trending-image {
        font-size: 1.1rem;
    }
    .trending-item {
        font-size: 1.1rem;
    }
}
@media (max-width: 1920px) {
    .hero-section .container.custom-sep-height{
        padding-top: 20%;
    }
    .hero-section .container.custom-sep-height.custom-affiliate-height{
        padding-top: 12%;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .promo-bar {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
    }

    .promo-message {
        flex-direction: column;
        gap: 0.25rem;
    }

    .promo-subtitle {
        margin-left: 0;
    }
    .affiliate-with-logo-desktop-container {
        display: none;
    }
    .affiliate-with-logo-mobile-container {
        display: block;
        margin-bottom: 5%;
    }
    .affiliate-with-logo-mobile .row {
        margin-bottom: 0;
        border-radius: 35px;
        background: none;
        padding: 2%;
        /* box-shadow: 2px 2px 4px rgb(0 0 0 / 50%);
        box-shadow: rgb(0 0 0 / 32%) 0px 30px 60px -12px inset, rgb(0 0 0 / 23%) 0px 18px 36px -18px inset;
        border: 1px solid #ffffff0a; */
        border: none;
        backdrop-filter: none;
    }
    .affiliate-with-logo-mobile .row:before {
        display: none;
    }
    .affiliate-with-logo-mobile-image-container img {
        width: 100px;
    }
    .affiliate-with-logo-mobile .exc-bonus-text {
        font-size: 0.9rem;
        color: var(--gray-text);
        margin-bottom: 5px !important;
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: row !important;
        gap: 0.5rem;
        margin-right: 11px;
    }
    .hero-background{
        background-position-x: 70% !important;
    }
    
    .language-select {
        width: 80px;
        min-width: 80px;
        font-size: 0.8rem;
        padding: 0.25rem;
    }
    
    .btn-signin {
        padding: 0.4rem 1rem;
        line-height: inherit;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-section .container {
        padding-top: 40%;
        top: 30%;
    }
    .hero-section .container.custom-sep-height{
        padding-top: 0px;
        top: 30%;
    }
    .hero-section .container.custom-sep-height.custom-affiliate-height{
        padding-top: 0%;
    }
    .section-title {
        font-size: 2rem;
    }
    
    .trending-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .trending-image {
        height: 250px;
    }
    
    .trending-item {
        flex: 0 0 150px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-btn-prev {
        left: -20px;
    }
    
    .slider-btn-next {
        right: -20px;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .email-form .input-group {
        /* flex-direction: column; */
        max-width: 100%;
    }
    
    .email-input {
        border-radius: 4px;
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .get-started-btn {
        min-width: 42%;
        padding: 0.4rem 2rem;
        line-height: inherit;
        align-items: center;
    }
    .hero-signup input{
        width: 100% !important;
        border-radius: 5px !important;
    }
    .faq-section input{
        width: 100% !important;
        border-radius: 5px !important;
    }
    .accordion-button::after {
        display: flex;
        align-items: center;
    }
    .curve-element {
        width: 200%;
        left: -50%;
    }
    
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        max-width: 375px;
    }
    .signup-text {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        /* color: #fff; */
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-card h4 {
        font-size: 1.2rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .trending-item {
        flex: 0 0 120px;
    }
    
    .trending-image {
        height: 180px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section .container > * {
    animation: fadeInUp 0.8s ease-out;
}

.trending-item {
    animation: fadeInUp 0.6s ease-out;
}

.feature-card {
    animation: fadeInUp 0.7s ease-out;
}

/* Media query updates for trending section */
@media (max-width: 768px) {
    .trending-slider-container {
        margin: 0 -10px;
        padding: 20px 10px;
    }
    
    .trending-image {
        height: 240px;
    }
    
    .owl-prev,
    .owl-next {
        width: 35px !important;
        height: 35px !important;
    }
    
    .owl-prev {
        left: -10px;
    }
    
    .owl-next {
        right: -10px;
    }
}

@media (max-width: 576px) {
    .trending-slider-container {
        margin: 0 -5px;
        padding: 20px 5px;
    }
    
    .trending-image {
        height: 230px;
    }
    
    .owl-prev,
    .owl-next {
        width: 30px !important;
        height: 30px !important;
    }
}

/* Monoton Font Class */
.monoton-regular {
    font-family: "Monoton", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Card Steps Section */
.card-steps {
    background-color: var(--dark-bg);
    padding: 0;
    position: relative;
}

.steps-container {
    display: flex;
    background-color: var(--dark-card);
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 0 4rem;
}

.step-card {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 2rem 1.5rem;
    background-color: var(--dark-card);
    position: relative;
}

.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background-color: rgba(255, 255, 255, 0.1);
}

.step-number {
    font-size: 4rem;
    color: var(--light-text);
    margin-right: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

.step-subtitle {
    font-size: 1rem;
    color: var(--gray-text);
    margin: 0;
    line-height: 1.4;
}
.suffix{
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    color: var(--light-text);
    /* margin-left: 0.2rem; */
    position: relative;
    left: -7px;
}

/* Responsive adjustments for card steps */
@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        border-radius: 0;
        border-radius: 10px;
        margin: 20px 0 4rem;
    }
    
    .step-card {
        padding: 1.5rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .step-card:last-child {
        border-bottom: none;
    }
    
    .step-card:not(:last-child)::after {
        display: none;
    }
    
    .step-number {
        font-size: 2.5rem;
        margin-right: 1rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .step-subtitle {
        font-size: 0.9rem;
    }
    .suffix{
        font-size: 1.5rem;
        position: relative;
        left: -5px;
    }
    
}

@media (max-width: 576px) {
    .step-card {
        padding: 1.25rem 3rem;
    }
    
    .step-number {
        font-size: 3.5rem;
        margin-right: 0.75rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-subtitle {
        font-size: 1rem;
    }
    .suffix{
        font-size: 1rem;
        position: relative;
        left: -5px;
    }
}

/* Giga Boost Bonus Section */
.giga-boost-bonus-section {
    padding: 4rem 0;
    background-color: var(--dark-bg);
    color: var(--light-text);
    position: relative;
}

/* .giga-boost-bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(252, 134, 1, 0.05) 0%, transparent 70%);
    pointer-events: none;
} */

.giga-boost-bonus-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: var(--light-text);
    position: relative;
    z-index: 1;
}

.giga-boost-bonus-section .section-title .giga-boost {
    color: var(--primary-orange);
}

.bonus-cards-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.bonus-card {
    background: var(--dark-card);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    min-width: 280px;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-orange);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-card.orange-border {
    border-color: rgba(252, 134, 1, 0.5);
}

.bonus-card.orange-border::before {
    background: var(--primary-orange);
    opacity: 1;
}

.bonus-card.yellow-border {
    border-color: rgba(252, 134, 1, 0.5);
}

.bonus-card.yellow-border::before {
    background: var(--primary-orange);
    opacity: 1;
}

.bonus-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.bonus-card.orange-border .bonus-icon {
    background: var(--primary-orange);
    box-shadow: 0 4px 15px rgba(252, 134, 1, 0.4);
}

.bonus-card.yellow-border .bonus-icon {
    background: var(--primary-orange);
    box-shadow: 0 4px 15px rgba(252, 134, 1, 0.4);
}

.bonus-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.bonus-details {
    text-align: left;
    position: relative;
    z-index: 1;
}

.bonus-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-row:last-child {
    border-bottom: none;
}

.bonus-label {
    color: var(--gray-text);
    font-size: 0.95rem;
}

.bonus-value {
    font-weight: bold;
    color: var(--light-text);
}

.bonus-value.highlight {
    color: var(--primary-orange);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(252, 134, 1, 0.3);
}

/* Responsive design for bonus cards */
@media (max-width: 768px) {
    .giga-boost-bonus-section {
        padding: 3rem 0;
    }
    
    .giga-boost-bonus-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .bonus-cards-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .bonus-card {
        min-width: auto;
        padding: 1.5rem;
    }
    
    .bonus-card:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 576px) {
    .giga-boost-bonus-section .section-title {
        font-size: 1.8rem;
    }
    
    .bonus-card {
        padding: 1.25rem;
    }
    
    .bonus-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .bonus-title {
        font-size: 1.3rem;
    }
    
    .bonus-cards-container {
        gap: 1rem;
        padding: 0 0.5rem;
    }
}

/* Responsive adjustments for countdown timer */
@media (max-width: 768px) {
    .countdown-container {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .countdown-display {
        gap: 0.5rem;
    }
    
    .countdown-box {
        min-width: 60px;
        padding: 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.1rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .countdown-expiry {
        font-size: 0.7rem;
        /* flex-direction: column; */
        gap: 0.25rem;
    }
    .september-timer {
        bottom: -133px;
        width: 100%;
    }
    .footer-links-container{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .countdown-display {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .countdown-box {
        max-width: 70px;
        flex: 1;
    }
    
    .countdown-number {
        font-size: 0.8rem;
    }
    .hero-section {
        min-height: 96vh;
    }
}
@media (max-width: 400px) {
    .hero-section .container.custom-sep-height {
        padding-top: 0%;
        top: 30%;
    }
    .hero-section .container.custom-sep-height.custom-affiliate-height {
        padding-top: 0%;
        top: 20%;
    }
    .countdown-container{
        padding: 1rem 0rem;
        margin: 0;
    }
    .september-timer {
        bottom: -87px;
        width: 100%;
    }
    .hero-section .container {
        padding-top: 20%;
        top: 30%;
    }
}