/* ========= Enter Your CSS ========== */

/* Header Background */
.header-area {
    background-image: url('images/bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 70vh;
    padding: 100px 0 80px 0;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .header-area {
        min-height: 60vh;
        padding: 80px 0 60px 0;
        background-size: cover;
        background-position: center top;
    }
}

@media (max-width: 480px) {
    .header-area {
        min-height: 50vh;
        padding: 60px 0 40px 0;
        background-size: cover;
        background-position: center top;
    }
}

/* Optional: Add overlay for better text readability */
.header-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.header-area .container {
    position: relative;
    z-index: 2;
}

/* Make header text more visible on background */
.header-text .title {
    color: #000000 !important;
    text-shadow: none;
}

.header-text .desc p {
    color: #000000 !important;
    text-shadow: none;
}

.header-text .desc a {
    color: #000000 !important;
}

/* Responsive text adjustments */
@media (max-width: 768px) {
    .header-text .title {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
    }
    
    .header-text .desc {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .header-text .title {
        font-size: 24px !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }
    
    .header-text .desc {
        font-size: 13px !important;
    }
    
    .header-text .desc div {
        margin-top: 15px !important;
        font-size: 12px !important;
    }
}

/* Roadmap Section Styles */
.roadmap-area {
    padding: 50px 0;
}

/* 交易所链接模块样式 */
.exchanges-area {
    padding: 60px 0;
}

.exchanges-area .title {
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exchanges-area .subtitle {
    color: #555;
    font-weight: 500;
}

.exchange-box {
    display: block;
    text-decoration: none;
    margin-bottom: 20px;
}

.exchange-box:hover div {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .exchanges-area {
        padding: 40px 0;
    }
    
    .exchanges-area .title {
        font-size: 24px;
        margin-bottom: 20px !important;
    }
    
    .exchanges-area .subtitle {
        font-size: 20px !important;
        margin-bottom: 30px !important;
    }
}

@media (max-width: 480px) {
    .exchanges-area {
        padding: 30px 0;
    }
    
    .exchanges-area .title {
        font-size: 20px;
        margin-bottom: 15px !important;
    }
    
    .exchanges-area .subtitle {
        font-size: 18px !important;
        margin-bottom: 25px !important;
    }
}

.roadmap-content {
    padding: 15px 0;
    min-height: 250px;
}

.roadmap-area .row.align-items-center {
    min-height: 300px;
}

.roadmap-box {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    background-color: #fff;
    transition: all 0.3s ease;
}

.roadmap-single-box {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.roadmap-single-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.roadmap-single-box h3 {
    font-size: 26px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.roadmap-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.roadmap-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.roadmap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.roadmap-list li {
    padding: 8px 0;
    position: relative;
    font-size: 16px;
    color: #555;
}

.roadmap-list li:before {
    content: "•";
    color: #ff7815;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 5px;
}

.gif-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
    padding: 10px;
}

.gif-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gif-box img {
    border-radius: 10px;
    display: inline-block;
}

@media (max-width: 768px) {
    .feature-box-wrapper {
        flex-direction: column;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .feature-video-box {
        display: block;
        margin: 0 auto 15px !important;
    }
    
    .feature-image-center img {
        max-width: 220px;
    }
    
    .feature-box {
        width: 100%;
    }

    .gif-box {
        margin-bottom: 15px;
        max-width: 180px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .roadmap-box {
        margin-bottom: 15px;
    }
    
    .roadmap-single-box h3 {
        font-size: 22px;
    }
    
    .feature-gif-left, .feature-gif-right {
        display: none; /* Hide side GIFs on mobile */
    }
    
    .feature-image {
        text-align: center;
        margin: 15px 0;
    }
    
    .feature-image img {
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .gif-box {
        max-width: 150px;
    }
    
    .roadmap-single-box h3 {
        font-size: 20px;
    }
    
    .feature-image img {
        max-width: 200px;
    }
}

/* Feature Section Styles */
.feature-area {
    padding: 40px 0;
}

.section-title {
    margin-bottom: 60px;
}

.section-title .title {
    margin-bottom: 30px;
    position: relative;
    z-index: 10;
}

.row.position-relative {
    min-height: 480px;
    padding: 40px 0 40px;
    margin-top: 10px;
}

.feature-position {
    position: absolute;
    width: 400px;
    z-index: 1;
}

.feature-position.top-left {
    top: -30px;
    left: 20px;
}

.feature-position.top-right {
    top: -30px;
    right: 20px;
}

.feature-position.bottom-left {
    bottom: -30px;
    left: 20px;
}

.feature-position.bottom-right {
    bottom: -30px;
    right: 20px;
}

.feature-image-center {
    margin-bottom: 10px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

.feature-image-center img {
    transition: all 0.3s ease;
    margin: 0 auto;
}

.feature-image-center img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.feature-box-wrapper {
    background-color: #fff;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 10px;
    max-width: 380px;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-box-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.feature-box-wrapper .title {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.feature-box-wrapper .desc p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
    color: #555;
}

.feature-video-box {
    text-align: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-video-box:hover video {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feature-video-box video {
    transition: all 0.3s ease;
    display: inline-block;
}

.feature-gif-left, .feature-gif-right {
    text-align: center;
    margin-bottom: 15px;
}

.feature-gif-left img, .feature-gif-right img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-gif-left img:hover, .feature-gif-right img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feature-box {
    margin-bottom: 25px;
}

/* Section Spacing Adjustment */
.section-padding {
    padding: 60px 0;
}

@media (max-width: 1200px) {
    .feature-position {
        position: relative;
        width: 100%;
        margin: 10px auto;
        max-width: 500px;
    }
    
    .feature-position.top-left,
    .feature-position.top-right,
    .feature-position.bottom-left,
    .feature-position.bottom-right {
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    
    .row.position-relative {
        display: flex;
        flex-direction: column;
        min-height: auto;
        padding: 20px 0;
        margin-top: 0;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .feature-image-center {
        order: 1;
        margin: 10px auto 20px;
    }
    
    .feature-position.top-left {
        order: 2;
    }
    
    .feature-position.top-right {
        order: 3;
    }
    
    .feature-position.bottom-left {
        order: 4;
    }
    
    .feature-position.bottom-right {
        order: 5;
    }
}

@media (max-width: 991px) {
    .offset-lg-4 {
        margin-left: 0;
    }
    
    .feature-box-wrapper {
        margin-bottom: 20px;
    }
    
    .feature-image-center {
        margin: 30px auto;
    }
}

@media (max-width: 576px) {
    .feature-image-center img {
        max-width: 200px;
    }
    
    .feature-box-wrapper {
        padding: 15px;
    }
}

/* Section Spacing Adjustment */

