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

body {
    margin: 0;
    line-height: normal;
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    overflow-x: hidden;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.685);
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    pointer-events: none;
    max-width: none;
    position: relative;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    width: 100%;
    height: 100%;
    padding: 0 40px 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    gap: 16px;
}

.hero-headline {
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    font-family: "Bebas Neue";
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    padding: 0;
    width: 100%;
    max-width: 1200px;
}

.hero-subheadline {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    padding: 0;
    max-width: 800px;
    width: 100%;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 8px;
    width: 100%;
    max-width: 600px;
}

.hero-button-secondary {
    width: 340px;
    height: 30px;
    color: #fff;
    position: relative;
    border-radius: 15px;
    border: 0.5px solid #c28637;
    font-size: 14px;
    font-weight: 600;
    background-color: transparent;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

 
.hero-button-primary {
    width: 96px;
    border: none;
    cursor: pointer;
    height: 30px;
    color: #000 !important;
    position: relative;
    border-radius: 22px;
    background-color: #f7931a;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}



 

.hero-button-primary:active,
.hero-button-secondary:active {
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .hero-content {
        padding: 0 30px;
        justify-content: center;
    }
    
    .hero-headline {
        font-size: 40px;
        text-align: center;
    }
    
    .hero-subheadline {
        font-size: 16px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
    }
    
    .hero-content {
        padding: 0 20px;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }
    
    .hero-headline {
        font-size: 28px;
        letter-spacing: 0.5px;
        text-align: center;
    }
    
    .hero-subheadline {
        font-size: 14px;
        text-align: center;
    }
    
    .hero-buttons {
        width: 100%;
        max-width: 400px;
        align-items: center;
        justify-content: center;
    }
    
    .hero-button-secondary,
    .hero-button-primary {
        width: 100%;
    }
    
    .hero-button-primary {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 80vh;
    }
    
    .hero-content {
        justify-content: center;
        align-items: center;
    }
    
    .hero-headline {
        font-size: 24px;
        text-align: center;
    }
    
    .hero-subheadline {
        font-size: 13px;
        text-align: center;
    }
    
    .hero-buttons {
        align-items: center;
        justify-content: center;
    }
}

/* Bitcoin Price Card Section */
.bitcoin-price-section {
    width: 100%;
    padding: 80px 0;
    background: #191A25;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.bitcoin-price-wrapper {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.bitcoin-content-header {
    max-width: 1285px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.live-coin-radar-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
    padding: 0;
}

.bitcoin-price-container {
    max-width: 1285px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 14px;
    flex-wrap: nowrap;
}

.see-full-radar-button {
    background-color: #7E889A;
    border: none;
    border-radius: 20px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: fit-content;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #191A25;
    margin: 0;
    text-decoration: none;
}

.see-full-radar-button:hover {
    background-color: #8a95a8;
}


.see-full-radar-text {
    line-height: 1;
    white-space: nowrap;
}

.see-full-radar-arrow {
    color: #191A25;
    font-size: 12px;
    flex-shrink: 0;
}

.bitcoin-price-card {
    background-color: #171822;
    border: 1px solid #303241;
    border-radius: 12px;
    padding: 16px 12px;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bitcoin-wave-bg {
    position: absolute;
    bottom: 17px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.wave-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: bottom center;
}

.bitcoin-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bitcoin-header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.bitcoin-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.bitcoin-icon-img {
    width: 100%;
    height: 100%;
    display: block;
}

.bitcoin-title-group {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    flex-wrap: wrap;
}

.bitcoin-label {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: normal;
}

.bitcoin-change-group {
    display: flex;
    align-items: center;
    gap: 4px;
}

.change-arrow {
    width: 8px;
    height: 8px;
    display: block;
    flex-shrink: 0;
}

.change-percentage {
    font-family: 'Poppins', sans-serif;
    font-size: 8px;
    font-weight: 400;
    color: #22D49F;
    line-height: normal;
}

.change-percentage-negative {
    color: #FF383C;
}

.ethereum-icon-wrapper {
    width: 24px;
    height: 24px;
    background-color: #C8C8C8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ethereum-icon {
    width: 10px;
    height: 17px;
}

.bitcoin-price {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    line-height: normal;
    margin: 0;
}

.price-symbol {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #303241;
}

@media (max-width: 1440px) {
}

/* Responsive styles for 1024px devices */
@media (max-width: 1024px) {
    .bitcoin-price-section {
        padding: 70px 30px;
    }
    
    .bitcoin-price-wrapper {
        gap: 20px;
    }
    
    .bitcoin-content-header {
        padding: 0 20px;
    }
    
    .live-coin-radar-heading {
        font-size: 22px;
    }
    
    .bitcoin-price-container {
        flex-wrap: wrap;
        gap: 12px;
        padding: 0 20px;
    }
    
    .bitcoin-price-card {
        flex: 0 0 calc((100% - 12px) / 2);
        min-height: 140px;
        padding: 14px 10px;
    }
    
    .bitcoin-label {
        font-size: 15px;
    }
    
    .bitcoin-price {
        font-size: 22px;
    }
    
    .bitcoin-icon {
        width: 22px;
        height: 22px;
    }
    
    .see-full-radar-button {
        padding: 10px 20px;
        font-size: 11px;
    }
    
    .see-full-radar-arrow {
        font-size: 11px;
    }
}

/* Responsive styles for 768px devices */
@media (max-width: 768px) {
    .bitcoin-price-section {
        padding: 50px 20px;
    }
    
    .bitcoin-price-wrapper {
        gap: 18px;
    }
    
    .bitcoin-content-header {
        padding: 0 15px;
        gap: 12px;
    }
    
    .live-coin-radar-heading {
        font-size: 20px;
    }
    
    .bitcoin-price-container {
        flex-wrap: wrap;
        gap: 10px;
        padding: 0 15px;
    }
    
    
    
    .bitcoin-header {
        gap: 6px;
    }
    
    .bitcoin-icon {
        width: 20px;
        height: 20px;
    }
    
    .bitcoin-label {
        font-size: 14px;
    }
    
    .change-percentage {
        font-size: 7px;
    }
    
    .change-arrow {
        width: 7px;
        height: 7px;
    }
    
    .bitcoin-price {
        font-size: 20px;
    }
    
    .bitcoin-wave-bg {
        bottom: 15px;
    }
    
    .see-full-radar-button {
        padding: 9px 18px;
        font-size: 10px;
        border-radius: 18px;
    }
    
    .see-full-radar-arrow {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .bitcoin-price-section {
        padding: 30px 0;
    }
    
    .live-coin-radar-heading {
        font-size: 20px;
    }
    
    .bitcoin-label {
        font-size: 14px;
    }
    
    .bitcoin-price {
        font-size: 20px;
    }
}

/* Coin Radar Section */
.coin-radar-section {
    background-color: #191a25;
    width: 100%;
    padding: 80px 0;
}

.coin-radar-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 158px;
}

.section-title {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coins-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.coin-card {
    background-color: #171822;
    border: 1px solid #303241;
    border-radius: 12px;
    padding: 16px 12px;
    position: relative;
    overflow: hidden;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.coin-header {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.coin-icon {
    flex-shrink: 0;
}

.coin-icon-svg {
    width: 24px;
    height: 24px;
    display: block;
}

.coin-info {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.coin-name {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    line-height: normal;
}

.coin-change-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
}

.coin-change-arrow {
    flex-shrink: 0;
}

.coin-change {
    font-size: 8px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    line-height: normal;
}

.coin-change.positive {
    color: #22D49F;
}

.coin-change.negative {
    color: #FF4444;
}

.coin-price {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
    line-height: normal;
}

.coin-price-symbol {
    color: #303241;
    font-weight: 400;
}

.coin-chart {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55px;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.coin-chart svg {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}


.section-button {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-button:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* News Radar Section */
.news-radar-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 158px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.news-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 366px;
}

.news-image {
    width: 100%;
    height: 197px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.crypto-news-img {
    background: linear-gradient(135deg, #f7931a 0%, #ffa500 100%);
}

.global-news-img {
    background: linear-gradient(135deg, #627eea 0%, #8b9aff 100%);
}

.freedom-meter-img {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

.news-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-subheading {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.news-title {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.news-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design for Coin Radar */
@media (max-width: 1200px) {
    .coin-radar-container,
    .news-radar-container {
        padding: 60px 40px;
    }
    
    .coins-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .coin-radar-section {
        padding: 60px 0;
    }
    
    .coin-radar-container,
    .news-radar-container {
        padding: 40px 20px;
    }
    
    .section-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .coins-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .coin-price {
        font-size: 20px;
    }
    
    .news-title {
        font-size: 22px;
    }
}

/* Faith Section */
.faith-section {
    position: relative;
    width: 100%;
    min-height: 823px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faith-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.faith-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.faith-content {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    width: 100%;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 24px;
}

.faith-text {
    color: #FFF;
    text-align: center;
    text-shadow: 0 4px 4px #331F0D;
    font-family: 'Vollkorn', serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    margin: 0;
    max-width: 1021px;
}

.faith-button {
    background-color: #f7931a;
    color: #fff;
    border: none;
    border-radius: 40px;
    
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.faith-button:hover {
    background-color: #e68217;
    transform: translateY(-2px);
}

.faith-button:active {
    transform: translateY(0);
}

/* Faith Section Responsive */
@media (max-width: 1200px) {
    .faith-section {
        min-height: 500px;
    }
    
    .faith-content {
        padding: 0 30px;
    }
    
    .faith-text {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .faith-section {
        min-height: 400px;
    }
    
    .faith-content {
        padding: 0 20px;
        gap: 20px;
    }
    
    .faith-text {
        font-size: 32px;
        line-height: 110%;
    }
    
    .faith-button {
        padding: 12px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faith-section {
        min-height: 350px;
    }
    
    .faith-content {
        padding: 0 15px;
        gap: 18px;
    }
    
    .faith-text {
        font-size: 24px;
        line-height: 110%;
    }
    
    .faith-button {
        padding: 10px 24px;
        font-size: 13px;
    }
}

/* Vault Teaser Section */
.vault-teaser-section {
    background: #21201D;
    width: 100%;
    padding: 100px 0px;
}

.vault-teaser-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.vault-teaser-title {
    color: #F7931A;
    font-family: "Bebas Neue";
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    text-align: center;
}

.vault-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
     
}

.vault-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.your-path-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.your-path-heading {
    color: #FFF;
    font-family: Inter;
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: 171%; /* 47.88px */
    text-transform: capitalize;
}

.path-progression {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.71;
    margin: 0;
}

.path-rank {
    font-weight: 600;
}

.path-recruit {
    color: #daa05a;
}

.path-commander {
    color: #c28637;
}

.path-sovereign {
    color: #e8b37b;
}

.path-arrow {
    color: #ffffff;
    padding: 0px 20px;
}

.vault-description {
    color: #8b8b8b;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.71;
    margin: 0;
}

.xp-progress-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.xp-progress-heading {
    color: #8b8b8b;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.71;
    margin: 0;
}

.progress-bar-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.progress-bar {
    width: 983px;
height: 30px;
    background-color: #2a2a28;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(90deg, #F7931A 0%, #7A1A00 100%);
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth animation when width changes */
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 8px;
}

.progress-label-item {
    display: flex;
    flex-direction: column;
   justify-content: center;
   align-items: center;
    position: relative;
}



.progress-label-item:nth-child(2) {
    position: absolute;
    left: 46%;
    transform: translateX(0%);
    align-items: center;
}

 

.label-rank {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.71;
}

.label-recruit {
    color: #daa05a;
}

.label-commander {
    color: #c28637;
    font-weight: 700;
}

.label-sovereign {
    color: #e8b37b;
}

.label-status {
    color: #8b8b8b;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.71;
    text-transform: lowercase;
}

.current-rank-info {
    display: flex;
    flex-direction: column;
   
    align-items: center;
    text-align: center;
}

.current-rank {
    color: #c28637;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.71;
    margin: 0;
}

.rank-progress {
    color: #8b8b8b;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.71;
    margin: 0;
}

.vault-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 16px;
}

.eagle-badge-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.eagle-badge-container {
    position: relative;
    width: 136px;
 height: 187px;
 aspect-ratio: 8/11;
 margin-bottom: 85px;
}

.eagle-badge-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.badge-notification {
    position: absolute;
    top: 50px;
    right: -10px;
    background-color: #f7931a;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 26px;
    min-width: 36px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.eagle-name {
    color: #c28637;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.71;
    margin: 0;
    text-align: center;
}

.eagle-earned {
    color: #8b8b8b;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.71;
    margin: 0;
    text-align: center;
}

.vault-button {
    background-color: transparent;
    margin-top: 20px;
    border: 0.5px solid #ffffff;
    border-radius: 15px;
    padding: 7px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.vault-button:hover {
    background-color: #c28637;
    color: #ffffff;
    border: 0.5px solid #c28637;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.lock-icon {
    flex-shrink: 0;
    width: 14px;
    height: 16px;
}

.vault-button-text {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .vault-teaser-section {
        padding: 80px 60px;
    }
    
    .vault-content-wrapper {
        gap: 60px;
    }
    
    .vault-teaser-title {
        font-size: 70px;
    }
    
    .your-path-heading {
        font-size: 28px;
    }
    
    .path-progression {
        font-size: 28px;
    }
    
    .vault-description {
        font-size: 22px;
    }
}

/* Responsive styles for 1024px devices */
@media (max-width: 1024px) {
    .vault-teaser-section {
        padding: 70px 50px;
    }
    
    .vault-teaser-container {
        gap: 50px;
    }
    
    .vault-content-wrapper {
        gap: 50px;
    }
    
    .vault-teaser-title {
        font-size: 55px;
    }
    
    .your-path-heading {
        font-size: 26px;
    }
    
    .path-progression {
        font-size: 22px;
    }
    
    .vault-description {
        font-size: 19px;
    }
    
    .xp-progress-heading {
        font-size: 18px;
    }
    
    .progress-bar {
        width: 100%;
        max-width: 100%;
    }
    
    .progress-label-item:nth-child(2) {
        left: 46%;
    }
    
    .eagle-badge-container {
        width: 150px;
        height: 206px;
        margin-bottom: 70px;
    }
    
    .badge-notification {
        font-size: 13px;
        padding: 5px 9px;
    }
}

@media (max-width: 968px) {
    .vault-teaser-section {
        padding: 60px 40px;
    }
    
    .vault-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .vault-teaser-title {
        font-size: 60px;
    }
    
    .your-path-heading {
        font-size: 28px;
    }
    
    .path-progression {
        font-size: 24px;
    }
    
    .vault-description {
        font-size: 20px;
    }
    
    .eagle-badge-container {
        width: 160px;
        height: 220px;
    }
    
    .vault-right {
        align-items: center;
    }
}

/* Responsive styles for 768px devices */
@media (max-width: 768px) {
    .vault-teaser-section {
        padding: 50px 30px;
    }
    
    .vault-teaser-container {
        gap: 40px;
    }
    
    .vault-content-wrapper {
        gap: 40px;
    }
    
    .vault-teaser-title {
        font-size: 45px;
    }
    
    .vault-left {
        gap: 28px;
    }
    
    .your-path-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .your-path-heading {
        font-size: 22px;
    }
    
    .path-progression {
        font-size: 18px;
        line-height: 1.5;
    }
    
    .path-arrow {
        padding: 0px 12px;
    }
    
    .vault-description {
        font-size: 17px;
        line-height: 1.6;
    }
    
    .xp-progress-section {
        gap: 16px;
    }
    
    .xp-progress-heading {
        font-size: 17px;
    }
    
    .progress-bar {
        width: 100%;
        height: 26px;
    }
    
    .progress-labels {
        margin-top: 6px;
    }
    
    .label-rank {
        font-size: 12px;
    }
    
    .label-status {
        font-size: 12px;
    }
    
    .current-rank {
        font-size: 13px;
    }
    
    .rank-progress {
        font-size: 14px;
    }
    
    .eagle-badge-container {
        width: 130px;
        height: 179px;
        margin-bottom: 60px;
    }
    
    .badge-notification {
        font-size: 12px;
        padding: 4px 8px;
        top: 45px;
        right: -8px;
    }
    
    .eagle-name {
        font-size: 13px;
    }
    
    .eagle-earned {
        font-size: 11px;
    }
    
    .vault-button {
        padding: 6px 9px;
        margin-top: 16px;
    }
    
    .vault-button-text {
        font-size: 10px;
    }
    
    .lock-icon {
        width: 12px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .vault-teaser-section {
        padding: 40px 20px;
    }
    
    .vault-teaser-title {
        font-size: 40px;
    }
    
    .your-path-heading {
        font-size: 22px;
    }
    
    .path-progression {
        font-size: 18px;
    }
    
    .vault-description {
        font-size: 16px;
    }
    
    .eagle-badge-container {
        width: 120px;
        height: 165px;
    }
    
    .vault-button {
        padding: 14px 28px;
    }
    
    .vault-button-text {
        font-size: 14px;
    }
}

/* Membership Section */
.membership-section {
    background-color: #0b1b20;
    width: 100%;
    height: 106px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.membership-container {
    max-width: 1440px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 106px;
    position: relative;
}

.membership-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
     
}

.membership-heading {
    color: #ffffff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    text-align: left;
    margin: 0;
    white-space: nowrap;
    letter-spacing: 0;
}

.membership-center {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.countdown-timer {
    background-color: #0b1b20;
    border: 1.233px solid #ffffff;
    border-radius: 26.196px;
    padding: 52.392px;
    display: flex;
    gap: 52.392px;
    align-items: flex-start;
    box-shadow: 0px 24.667px 74.002px 0px rgba(0, 0, 0, 0.55);
    flex-wrap: nowrap;
    justify-content: center;
}

.membership-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    justify-self: end;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

.countdown-number {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 69.856px;
    font-weight: 600;
    line-height: 69.856px;
    letter-spacing: 0.6986px;
    margin-bottom: 0;
}

.countdown-number span {
    display: block;
    line-height: 69.856px;
}

.countdown-label {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 24.013px;
    font-weight: 600;
    line-height: normal;
    margin-top: 0;
}

.spots-remaining {
    color: #8b8b8b;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.71;
    text-align: right;
    margin: 0;
    white-space: nowrap;
}

.join-now-button {
    background-color: transparent;
    border: 0.5px solid #ffffff;
    border-radius: 15px;
    cursor: pointer;
    padding: 8px 20px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.join-now-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.join-now-text {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 1440px) {
    .membership-section {
        min-height: calc(106px * (100vw / 1440px));
        padding: 20px 30px;
    }
    
     
    
    .membership-heading {
        font-size: calc(36px * (100vw / 1440px));
    }
    
    .countdown-timer {
        padding: calc(52.392px * (100vw / 1440px));
        gap: calc(52.392px * (100vw / 1440px));
        border-radius: calc(26.196px * (100vw / 1440px));
    }
    
    .countdown-number {
        font-size: calc(69.856px * (100vw / 1440px));
        line-height: calc(69.856px * (100vw / 1440px));
        letter-spacing: calc(0.6986px * (100vw / 1440px));
    }
    
    .countdown-number span {
        line-height: calc(69.856px * (100vw / 1440px));
    }
    
    .countdown-label {
        font-size: calc(24.013px * (100vw / 1440px));
    }
}

@media (max-width: 1200px) {
    .membership-container {
        gap: 25px;
    }
    
    .membership-heading {
        font-size: 28px;
    }
    
    .countdown-timer {
        padding: 35px 25px;
        gap: 35px;
        border-radius: 22px;
    }
    
    .countdown-number {
        font-size: 55px;
        line-height: 55px;
    }
    
    .countdown-number span {
        line-height: 55px;
    }
    
    .countdown-label {
        font-size: 20px;
    }
}

/* Responsive styles for 1024px devices */
@media (max-width: 1024px) {
    .membership-section {
        padding: 20px 30px;
        height: auto;
        min-height: 106px;
    }
    
    .membership-container {
        gap: 30px;
    }
    
    .membership-heading {
        font-size: 26px;
        white-space: normal;
    }
    
    .countdown-timer {
        padding: 32px 22px;
        gap: 32px;
        border-radius: 20px;
    }
    
    .countdown-number {
        font-size: 48px;
        line-height: 48px;
        letter-spacing: 0.48px;
    }
    
    .countdown-number span {
        line-height: 48px;
    }
    
    .countdown-label {
        font-size: 18px;
    }
    
    .spots-remaining {
        font-size: 13px;
    }
    
    .join-now-button {
        padding: 7px 18px;
    }
    
    .join-now-text {
        font-size: 11px;
    }
}

@media (max-width: 968px) {
    .membership-section {
        padding: 20px;
        height: auto;
        min-height: 106px;
    }
    
    .membership-container {
        grid-template-columns: 1fr;
        gap: 20px;
        position: relative;
    }
    
    .membership-left {
        width: 100%;
        justify-content: center;
        grid-row: 1;
    }
    
    .membership-heading {
        font-size: 28px;
        text-align: center;
        white-space: normal;
    }
    
    .membership-center {
        position: relative;
        left: auto;
        transform: translateX(120px);
        width: 100%;
        justify-content: center;
        grid-row: 2;
    }
    
    .countdown-timer {
        padding: 30px 20px;
        gap: 30px;
        border-radius: 20px;
    }
    
    .countdown-number {
        font-size: 50px;
        line-height: 50px;
        letter-spacing: 0.5px;
    }
    
    .countdown-number span {
        line-height: 50px;
    }
    
    .countdown-label {
        font-size: 18px;
    }
    
    .membership-right {
        width: 100%;
        align-items: center;
        justify-self: center;
        grid-row: 3;
    }
    
    .spots-remaining {
        font-size: 13px;
        text-align: center;
    }
    
    .join-now-text {
        font-size: 11px;
    }
}

/* Responsive styles for 768px devices */
@media (max-width: 768px) {
    .membership-section {
        padding: 20px 20px;
        height: auto;
        min-height: auto;
    }
    
    .membership-container {
        gap: 18px;
    }
    
    .membership-heading {
        font-size: 22px;
        line-height: 1.2;
    }
    
    .membership-center {
        transform: translateX(0);
    }
    
    .countdown-timer {
        padding: 24px 14px;
        gap: 18px;
        border-radius: 16px;
    }
    
    .countdown-number {
        font-size: 38px;
        line-height: 38px;
        letter-spacing: 0.38px;
    }
    
    .countdown-number span {
        line-height: 38px;
    }
    
    .countdown-label {
        font-size: 15px;
    }
    
    .membership-right {
        gap: 10px;
    }
    
    .spots-remaining {
        font-size: 12px;
    }
    
    .join-now-button {
        padding: 6px 16px;
    }
    
    .join-now-text {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .membership-section {
        padding: 15px 10px;
        height: auto;
        min-height: auto;
    }
    
    .membership-container {
        gap: 12px;
    }
    
    .membership-heading {
        font-size: 20px;
    }
    
    .countdown-timer {
        padding: 20px 10px;
        gap: 15px;
        border-radius: 15px;
    }
    
    .countdown-number {
        font-size: 32px;
        line-height: 32px;
    }
    
    .countdown-number span {
        line-height: 32px;
    }
    
    .countdown-label {
        font-size: 14px;
    }
    
    .spots-remaining {
        font-size: 11px;
    }
    
    .join-now-text {
        font-size: 10px;
    }
}

/* Brown Section */
.brown-section {
    background-color: #331f0d;
    width: 100%;
    min-height: 373px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.brown-section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 857px;
    width: 100%;
    position: relative;
}

.blueprint-heading {
    color: #d8cdbb;
    font-family: 'Vollkorn', serif;
    font-size: 36px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.1;
    text-align: center;
    margin: 0;
    white-space: pre-wrap;
    width: 100%;
}

.draft-button {
    position: relative;
    width: 341px;
    height: 46px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0 20px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.draft-button-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f7931a;
    border-radius: 15px;
    z-index: 1;
}

.draft-button-text {
    position: relative;
    color: #331f0d;
    font-family: 'Vollkorn', serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1.1;
    z-index: 2;
    text-align: center;
}

.blueprint-subtitle {
    color: #d0c5b4;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.71;
    text-align: center;
    margin: 0;
    white-space: pre-wrap;
    width: 100%;
}

.read-more-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 98px;
    height: 30px;
    padding-left: 12px;
    padding-right: 10px;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
}

.read-more-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0.5px solid #c28637;
    border-radius: 15px;
    z-index: 1;
    box-sizing: border-box;
}

.read-more-text {
    position: relative;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
    text-align: left;
    line-height: 1.1;
    white-space: nowrap;
    z-index: 2;
    flex-shrink: 0;
    margin-right: 6px;
}

.read-more-arrow {
    position: relative;
    width: 6px;
    height: 9px;
    object-fit: contain;
    z-index: 2;
    flex-shrink: 0;
}

@media (max-width: 1440px) {
    .brown-section {
        min-height: calc(373px * (100vw / 1440px));
        padding: 40px 20px;
    }
}

@media (max-width: 968px) {
    .blueprint-heading {
        font-size: 28px;
    }
    
    .draft-button {
        width: auto;
        min-width: 240px;
        max-width: 280px;
        height: 42px;
        padding: 0 16px;
    }
    
    .draft-button-text {
        font-size: 20px;
    }
    
    .blueprint-subtitle {
        font-size: 18px;
    }
    
    .read-more-button {
        width: 110px;
        height: 32px;
        padding-left: 14px;
        padding-right: 12px;
    }
    
    .read-more-text {
        font-size: 11px;
        margin-right: 5px;
    }
    
    .read-more-arrow {
        width: 5px;
        height: 8px;
    }
}

@media (max-width: 768px) {
    .brown-section {
        min-height: auto;
        padding: 40px 20px;
    }
    
    .blueprint-heading {
        font-size: 24px;
    }
    
    .draft-button {
        width: auto;
        min-width: 200px;
        max-width: 280px;
        height: 40px;
        padding: 0 14px;
    }
    
    .draft-button-text {
        font-size: 18px;
    }
    
    .blueprint-subtitle {
        font-size: 16px;
    }
    
    .read-more-button {
        width: 120px;
        height: 34px;
        padding-left: 16px;
        padding-right: 14px;
    }
    
    .read-more-text {
        font-size: 12px;
        margin-right: 6px;
    }
    
    .read-more-arrow {
        width: 6px;
        height: 9px;
    }
}

@media (max-width: 480px) {
    .brown-section {
        padding: 30px 15px;
    }
    
    .blueprint-heading {
        font-size: 20px;
    }
    
    .draft-button {
        width: auto;
        min-width: 180px;
        max-width: 260px;
        height: 38px;
        padding: 0 12px;
    }
    
    .draft-button-text {
        font-size: 16px;
    }
    
    .blueprint-subtitle {
        font-size: 14px;
    }
    
    .read-more-button {
        width: 110px;
        height: 32px;
        padding-left: 14px;
        padding-right: 12px;
    }
    
    .read-more-text {
        font-size: 11px;
        margin-right: 5px;
    }
    
    .read-more-arrow {
        width: 5px;
        height: 8px;
    }
}

/* Dark Section */
.dark-section {
    background-color: #0b1b20;
    width: 100%;
    height: 106px;
    display: block;
}

@media (max-width: 1440px) {
    .dark-section {
        height: calc(106px * (100vw / 1440px));
        min-height: 60px;
    }
}

@media (max-width: 768px) {
    .dark-section {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .dark-section {
        height: 50px;
    }
}

/* Footer Styles */
.footer {
    background-color: #0f1421;
    width: 100%;
    padding: 50px 0;
    border-top: none;
}

.footer-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 0 0 auto;
}

.footer-logo img {
    max-width: 220px;
    height: auto;
}

.footer-center {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    max-width: 500px;
}

.footer-nav {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-nav-link {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-nav-link:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    align-items: center;
    margin-left: 0;
}

.social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.social-icon:hover {
    transform: scale(1.05);
    background-color: #3a3d45;
}

.social-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: #b0b0b0;
    font-size: 12px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    margin: 8px 0 0 0;
    line-height: 1.4;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 0 0 auto;
}

.footer-title {
    color: #b0b0b0;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 8px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}

.footer-link {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.footer-link:hover {
    color: #fff;
}

/* Footer Responsive Design */
@media (max-width: 1200px) {
    .footer-container {
        padding: 0 40px;
        gap: 40px;
    }
    
    .footer-logo img {
        max-width: 180px;
    }
    
    .footer-nav {
        gap: 24px;
    }
}

/* Responsive styles for 1024px devices */
@media (max-width: 1024px) {
    .footer {
        padding: 45px 0;
    }
    
    .footer-container {
        padding: 0 50px;
        gap: 50px;
    }
    
    .footer-logo img {
        max-width: 200px;
    }
    
    .footer-center {
        max-width: 450px;
        gap: 18px;
    }
    
    .footer-nav {
        gap: 22px;
    }
    
    .footer-nav-link {
        font-size: 13px;
    }
    
    .footer-social {
        gap: 11px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .social-icon img {
        width: 17px;
        height: 17px;
    }
    
    .footer-tagline {
        font-size: 11px;
    }
    
    .footer-title {
        font-size: 15px;
    }
    
    .footer-link {
        font-size: 12px;
    }
}

@media (max-width: 968px) {
    .footer {
        padding: 40px 0;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 35px;
        padding: 0 40px;
        align-items: center;
    }
    
    .footer-logo {
        justify-content: center;
        width: 100%;
    }
    
    .footer-logo img {
        max-width: 180px;
        margin: 0 auto;
    }
    
    .footer-center {
        align-items: center;
        gap: 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-nav {
        justify-content: center;
        gap: 20px;
        width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-tagline {
        text-align: center;
    }
    
    .footer-right {
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    
    .footer-links {
        align-items: center;
        gap: 8px;
    }
}

/* Responsive styles for 768px devices */
@media (max-width: 768px) {
    .footer {
        padding: 35px 0;
    }
    
    .footer-container {
        padding: 0 30px;
        gap: 30px;
    }
    
    .footer-logo img {
        max-width: 160px;
    }
    
    .footer-center {
        gap: 18px;
    }
    
    .footer-nav {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-nav-link {
        font-size: 12px;
    }
    
    .footer-social {
        gap: 10px;
        justify-content: center;
    }
    
    .social-icon {
        width: 34px;
        height: 34px;
    }
    
    .social-icon img {
        width: 16px;
        height: 16px;
    }
    
    .footer-tagline {
        font-size: 11px;
        text-align: center;
    }
    
    .footer-title {
        font-size: 14px;
    }
    
    .footer-link {
        font-size: 12px;
    }
    
    .footer-right {
        align-items: center;
    }
    
    .footer-links {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0;
    }
    
    .footer-container {
        padding: 0 20px;
        gap: 25px;
    }
    
    .footer-logo img {
        max-width: 140px;
    }
    
    .footer-center {
        gap: 16px;
    }
    
    .footer-nav {
        gap: 12px;
    }
    
    .footer-nav-link {
        font-size: 12px;
    }
    
    .footer-social {
        gap: 8px;
    }
    
    .social-icon {
        width: 34px;
        height: 34px;
    }
    
    .social-icon img {
        width: 15px;
        height: 15px;
    }
    
    .footer-tagline {
        font-size: 10px;
        text-align: center;
        padding: 0 10px;
    }
    
    .footer-title {
        font-size: 14px;
    }
    
    .footer-link {
        font-size: 11px;
    }
}

/* Training Section */
.training-section {
    width: 100%;
    background-color: #000000;
    padding: 80px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.training-container {
    max-width: 1440px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 40px;
}
.training-bottom-content {
    display: flex;
    gap: 40px;
}

.training-container .training-description {
    align-self: flex-start;
    max-width: none;
    margin-left: 0;
}

@media (max-width: 1200px) {
    .training-container .training-description {
        align-self: center;
    }
}

.training-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.1;
    margin: 0;
    white-space: pre-wrap;
}

.training-description {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    margin: 0;
    width: 100%;
    max-width: 1200px;
}

.training-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.71;
}

.bullet-arrow-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.training-weeks-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
    padding: 10px 0;
}

.training-weeks-row::-webkit-scrollbar {
    height: 8px;
}

.training-weeks-row::-webkit-scrollbar-track {
    background: #0d0b03;
    border-radius: 4px;
}

.training-weeks-row::-webkit-scrollbar-thumb {
    background: #8d7001;
    border-radius: 4px;
}

.training-weeks-row::-webkit-scrollbar-thumb:hover {
    background: #f7931a;
}

.week-box {
    position: relative;
    width: 87px;
height: 108px;
    aspect-ratio: 1;
    background-color: #0d0b03;
    border: 0.5px solid #f7931a;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
     
}

.week-box-border {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    pointer-events: none;
}

.week-box-image {
    width: 77.72px;
height: 79.75px;
margin-top: 5px;
}

.week-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 10px;
    pointer-events: none;
}

.week-label {
    
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
     
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    line-height: normal;
    white-space: pre-wrap;
    padding: 4px 0;
}

.start-training-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    background-color: #e68217;
    text-decoration: none;
}

.start-training-button:hover {
    background-color: #f7931a;
}

.start-training-button:active {
    transform: translateY(0);
}

.start-training-text {
    display: inline-block;
}

.start-training-arrow-symbol {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
}

/* Responsive Design for Training Section */
@media (max-width: 1200px) {
    .training-weeks-row {
        gap: 14px;
    }
    
    .week-box {
        min-width: 120px;
        max-width: 160px;
    }
}

/* Responsive styles for 1024px devices */
@media (max-width: 1024px) {
    .training-section {
        padding: 70px 35px;
    }
    
    .training-container {
        gap: 35px;
        padding: 0 35px;
    }
    
    .training-heading {
        font-size: 52px;
    }
    
    .training-bottom-content {
        flex-direction: column;
        gap: 35px;
        width: 100%;
    }
    
    .training-description {
        gap: 10px;
    }
    
    .training-bullet {
        font-size: 19px;
        gap: 11px;
    }
    
    .bullet-arrow-icon {
        width: 22px;
        height: 22px;
    }
    
    .training-weeks-row {
        gap: 13px;
        overflow-x: auto;
        padding: 10px 0;
    }
    
    .week-box {
        width: 85px;
        height: 106px;
        min-width: 85px;
    }
    
    .week-box-image {
        width: 75px;
        height: 77px;
    }
    
    .week-label {
        font-size: 11px;
    }
}

@media (max-width: 968px) {
    .training-section {
        padding: 60px 30px;
    }
    
    .training-heading {
        font-size: 48px;
    }
    
    .training-bullet {
        font-size: 18px;
    }
    
    .bullet-arrow-icon {
        width: 20px;
        height: 20px;
    }
    
    .training-weeks-row {
        gap: 12px;
    }
    
    .week-box {
        min-width: 110px;
        max-width: 140px;
    }
}

/* Responsive styles for 768px devices */
@media (max-width: 768px) {
    .training-section {
        padding: 50px 25px;
    }
    
    .training-container {
        gap: 30px;
        padding: 0 25px;
    }
    
    .training-heading {
        font-size: 42px;
    }
    
    .training-bottom-content {
        gap: 30px;
    }
    
    .training-description {
        gap: 10px;
    }
    
    .training-bullet {
        font-size: 17px;
        gap: 10px;
    }
    
    .bullet-arrow-icon {
        width: 20px;
        height: 20px;
    }
    
    .training-weeks-row {
        gap: 10px;
        padding: 8px 0;
    }
    
    .week-box {
        width: 75px;
        height: 94px;
        min-width: 75px;
    }
    
    .week-box-image {
        width: 67px;
        height: 69px;
        margin-top: 4px;
    }
    
    .week-label {
        font-size: 10px;
        padding: 3px 0;
    }
    
    .start-training-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .training-section {
        padding: 40px 20px;
    }
    
    .training-container {
        gap: 30px;
    }
    
    .training-heading {
        font-size: 36px;
    }
    
    .training-bullet {
        font-size: 16px;
        gap: 10px;
    }
    
    .bullet-arrow-icon {
        width: 18px;
        height: 18px;
    }
    
    .training-weeks-row {
        gap: 10px;
    }
    
    .week-box {
        min-width: 100px;
        max-width: 120px;
    }
    
    .week-label {
        font-size: 10px;
    }
    
    .start-training-button {
        padding: 12px 24px;
        font-size: 12px;
    }
}




/* info cards */
.info-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
    transition: transform 0.3s ease;
}

.info-card-link:hover {
    transform: translateY(-4px);
}

.info-card-link .info-card {
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.info-card-link:hover .info-card {
    border-color: #f7931a !important;
}

.info-card {
    background-color: transparent !important;
    border: 0.794px solid #303241 !important;
    box-shadow: none !important;
     
}
.info-cards-wrapper {
     
    align-items: center !important;
     
}

/* Responsive styles for News Radar section - 1024px devices */
@media (max-width: 1024px) {
    .info-cards-section {
        padding: 35px 0 70px 0 !important;
    }
    
    .info-cards-wrapper {
        padding: 0 50px !important;
        gap: 20px;
    }
    
    .info-content-header {
        padding: 0 20px;
    }
    
    .live-coin-radar-heading {
        font-size: 22px;
    }
    
    .info-cards-container {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .info-card-link {
        flex: 0 0 calc((100% - 12px) / 2) !important;
        max-width: calc((100% - 12px) / 2) !important;
    }
    
    .info-card {
        height: auto;
        min-height: 380px;
    }
    
    .info-card-image {
        height: 200px;
    }
    
    .info-card-label {
        font-size: 13px;
    }
    
    .info-card-title {
        font-size: 24px;
    }
    
    .info-card-description {
        font-size: 13px;
    }
    
    .see-full-radar-button {
        padding: 10px 20px;
        font-size: 11px;
    }
    
    .see-full-radar-arrow {
        font-size: 11px;
    }
    
    .read-full-truth-radar-text {
        font-size: 11px;
    }
}

/* Responsive styles for News Radar section - 768px devices */
@media (max-width: 768px) {
    .info-cards-section {
        padding: 30px 0 60px 0 !important;
    }
    
    .info-cards-wrapper {
        padding: 0 30px !important;
        gap: 18px;
    }
    
    .info-content-header {
        padding: 0 15px;
        gap: 12px;
    }
    
    .live-coin-radar-heading {
        font-size: 20px;
    }
    
    .info-cards-container {
        flex-direction: column;
        gap: 14px;
    }
    
    .info-card-link {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .info-card {
        height: auto;
        min-height: 360px;
    }
    
    .info-card-image {
        height: 100%;
    }
    
    .info-card-label {
        font-size: 12px;
    }
    
    .info-card-title {
        font-size: 22px;
    }
    
    .info-card-description {
        font-size: 13px;
    }
    
    .see-full-radar-button {
        padding: 9px 18px;
        font-size: 10px;
        border-radius: 18px;
    }
    
    .see-full-radar-arrow {
        font-size: 10px;
    }
    
    .read-full-truth-radar-text {
        font-size: 10px;
    }
}

.info-cards-section {
    background-color: var(--color-bg-secondary) !important;
    padding-top: 0 !important;
    padding-bottom: var(--spacing-7xl) !important;
}
