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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #0a0e27;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

/* Header Styles */
header {
    background-color: #0a0e27;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: #ffffff;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #0a0e27;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.7;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-icon, .globe-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.search-icon:hover, .globe-icon:hover {
    opacity: 1;
}

.search-shortcut {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0 0.5rem;
}

.download-btn {
    background-color: #00d4ff;
    color: #0a0e27;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s;
}

.download-btn:hover {
    background-color: #00b8e6;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}

.main-headline {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.sub-headline {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    font-weight: 400;
}

.features-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.features-list li {
    display: flex;
    /* align-items: flex-start; */
    gap: 1rem;
    /* margin-bottom: 1.5rem; */
    font-size: 1.1rem;
    line-height: 1.6;
}

.checkmark {
    color: #00d4ff;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
    font-weight: bold;
}
.checkmarks {
    color: #00d4ff;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
    margin-right: 0.1rem;
    font-weight: bold;
    text-align: center;
}

.feature-text {
    flex: 1;
}

.highlight {
    color: #00d4ff;
}

.download-app-btn {
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
}

.download-app-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

.qr-icon {
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 3px;
    position: relative;
    display: inline-block;
}

.qr-icon::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #000000;
    top: 2px;
    left: 2px;
    border-radius: 1px;
    box-shadow: 8px 0 0 #000000, 0 8px 0 #000000, 8px 8px 0 #000000;
}

/* Footer Styles */
.footer {
    background-color: #0a0e27;
    padding: 3rem 2rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 4fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    color: rgba(255, 255, 255, 0.8);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-logo-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

.footer-description,
.footer-disclaimer {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.certifications {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cert-badge {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0;
}

.certifications a{
    text-decoration: none;
}

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

.footer-lang-currency {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-lang-currency .globe-icon {
    width: 18px;
    height: 18px;
}

.separator {
    margin: 0 0.5rem;
    opacity: 0.5;
}

/* Crypto Market Section */
.crypto-markets {
    background-color: #0a0e27;
    padding: 4rem 2rem;
}

.markets-container {
    max-width: 1400px;
    margin: 0 auto;
}

.mission-vision-section {
    padding: 2.5rem 0;
    background-color: rgba(255,255,255,0.01);
}

.market-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.market-container p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .market-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
}


.markets-header {
    text-align: center;
    margin-bottom: 3rem;
}

.markets-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.markets-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.markets-header h3 {
    text-align: left;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.crypto-list {
    display: grid;
    gap: 1rem;
}

.crypto-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto auto auto auto;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.crypto-item p,
.crypto-item h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Services Section Specific Fixes */
.section .crypto-item {
    min-height: auto;
    height: auto;
}

.section .crypto-item p {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    line-height: 1.6;
    margin: 0;
}

.crypto-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
}

.crypto-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff 0%, #090979 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #ffffff;
}

.crypto-name {
    display: flex;
    flex-direction: column;
}

.crypto-name .name {
    font-weight: 600;
    font-size: 1.1rem;
}

.crypto-name .symbol {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.crypto-price {
    font-size: 1.1rem;
    font-weight: 600;
}

.crypto-change {
    font-size: 1rem;
    font-weight: 600;
}

.crypto-change.positive {
    color: #00ff88;
}

.crypto-change.negative {
    color: #ff4444;
}

.crypto-marketcap {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.trade-btn {
    background-color: #ffffff;
    color: #0a0e27;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.trade-btn:hover {
    background-color: #00d4ff;
    color: #ffffff;
}

/* Mobile App Showcase Section */
.mobile-app-showcase {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    position: relative;
    overflow: hidden;
}

.mobile-app-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.showcase-content {
    display: block;
    /* grid-template-columns: 1fr 1fr; */
    gap: 4rem;
    align-items: center;
}

.showcase-text {
    text-align: center;
    margin: auto;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.showcase-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-image {
    max-width: 450px;
    width: 100%;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(0, 212, 255, 0.2);
}
.phone-image2 {
    max-width: 450px;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(0, 212, 255, 0.2);
}

.phone-frame {
    width: 320px;
    height: 640px;
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(0, 212, 255, 0.2);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #0a0e27;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0a0e27;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    padding: 50px 20px 20px;
}

/* App Header */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 20px;
}

.app-header-left {
    flex: 1;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger-menu span {
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
}

.app-tabs {
    display: flex;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.tab {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    cursor: pointer;
    padding-bottom: 5px;
}

.tab.active {
    color: #00d4ff;
    border-bottom: 2px solid #00d4ff;
}

.app-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: flex-end;
}

.pro-badge {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.app-header-right i {
    color: #ffffff;
    font-size: 1rem;
}

/* Balance Section */
.app-balance {
    margin-bottom: 25px;
}

.balance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.balance-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.balance-change {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.balance-change.positive {
    color: #00ff88;
}

.balance-chart {
    height: 40px;
    margin-top: 10px;
}

.mini-chart {
    width: 100%;
    height: 100%;
}

/* Action Buttons */
.app-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.action-icon {
    width: 50px;
    height: 50px;
    background: #00d4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0e27;
    font-size: 1.5rem;
    font-weight: 600;
}

.action-btn span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Favorites Section */
.app-favorites {
    margin-top: 20px;
}

.favorites-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.favorites-header i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.favorite-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.favorite-item:last-child {
    border-bottom: none;
}

.crypto-icon-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
}

.favorite-info {
    flex: 1;
}

.favorite-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

.favorite-symbol {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.favorite-chart {
    width: 60px;
    height: 30px;
}

.favorite-price {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    margin-right: 10px;
}

.favorite-change {
    font-size: 0.85rem;
    font-weight: 600;
}

.favorite-change.positive {
    color: #00ff88;
}

/* Welcome Bonus Section */
.welcome-bonus-section {
    padding: 6rem 2rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.welcome-bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8) 0%, rgba(26, 31, 58, 0.7) 50%, rgba(10, 14, 39, 0.8) 100%);
    pointer-events: none;
}

.bonus-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.bonus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: center;
}

.bonus-left {
    text-align: left;
}

.bonus-badge {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.bonus-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.bonus-title strong {
    color: #00d4ff;
}

.bonus-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.bonus-btn {
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    text-align: center;
}

.bonus-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

.bonus-disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    text-align: center;
}

.bonus-right {
    display: flex;
    justify-content: center;
}
.buy-sell-widget1 {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: max-content;
    margin-left: 17%;
}

@media (max-width: 1000px) {
    .buy-sell-widget1{
        margin-left: 0;
    }
}

.buy-sell-widget {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: max-content;
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.widget-inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.input-group {
    display: flex;
    gap: 0.5rem;
}

.widget-input {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.8rem;
    color: #ffffff;
    font-size: 1rem;
}

.widget-select {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
}

.widget-rate {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.widget-rate i {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.widget-rate i:hover {
    opacity: 1;
}

.widget-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.widget-btn {
    width: 100%;
    background-color: #00d4ff;
    color: #0a0e27;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.widget-btn:hover {
    background-color: #00b8e6;
}


/* Breaking News Banner Section */
.breaking-news-section {
    padding: 2rem;
    background-color: #0a0e27;
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
}

.news-banner {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Advanced Exchange Section */
.advanced-exchange-section {
    padding: 6rem 2rem;
    background-color: #0a0e27;
}
/* Background hero image aligned to the right */
.advanced-exchange-section {
    background-image: url('images/exchange-hero-desktop.webp');
    background-repeat: no-repeat;
    background-size: cover;
}

.advanced-container {
    max-width: 1400px;
    margin: 0 auto;
}

.advanced-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.advanced-text {
    text-align: left;
}

.advanced-label {
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.advanced-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.advanced-buttons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.platform-option {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.platform-label {
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.platform-btn {
    background-color: #ffffff;
    color: #0a0e27;
    border: 2px solid #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    width: fit-content;
}

.platform-btn:hover {
    background-color: transparent;
    color: #ffffff;
}

.advanced-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.exchange-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* DeFi Section */
.defi-section {
    padding: 6rem 2rem;
    background-color: #0a0e27;
}

.defi-container {
    max-width: 1400px;
    margin: 0 auto;
}

.defi-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.defi-text {
    text-align: left;
}

.defi-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.defi-features {
    list-style: none;
    margin-bottom: 2rem;
}

.defi-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.defi-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.defi-btn-primary {
    background-color: #ffffff;
    color: #0a0e27;
    border: 2px solid #00d4ff;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.defi-btn-primary:hover {
    background-color: #00d4ff;
    color: #ffffff;
}

.defi-btn-secondary {
    background-color: #00d4ff;
    color: #0a0e27;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.defi-btn-secondary:hover {
    background-color: #00b8e6;
}

.defi-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.defi-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Section Styles */
.section {
    padding: 4rem 2rem;
    background-color: #0a0e27;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    .header-container {
        flex-wrap: wrap;
    }

    nav ul {
        gap: 0.75rem;
        font-size: 0.8rem;
    }

    nav a {
        font-size: 0.85rem;
    }

    .header-right {
        gap: 0.75rem;
    }

    .download-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .main-content {
        padding: 4rem 1.5rem;
    }

    .main-headline {
        font-size: 2rem;
    }

    .sub-headline {
        font-size: 1.1rem;
    }

    .features-list {
        max-width: 100%;
    }

    .features-list li {
        font-size: 1rem;
    }

    .search-shortcut {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .crypto-item {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 1rem !important;
    }

    .crypto-list {
        grid-template-columns: 1fr !important;
    }

    .showcase-content {
        /* grid-template-columns: 1fr; */
        gap: 2rem;
    }

    .showcase-text {
        text-align: center;
    }

    .showcase-title {
        font-size: 2rem;
    }

    .phone-frame {
        width: 280px;
        height: 560px;
    }

    .phone-image {
        max-width: 100%;
        height: auto;
    }

    .defi-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .defi-text {
        text-align: center;
    }

    .defi-title {
        font-size: 1.75rem;
    }

    .defi-buttons {
        flex-direction: column;
    }

    .defi-btn-primary,
    .defi-btn-secondary {
        width: 100%;
        text-align: center;
    }

    .bonus-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bonus-left {
        text-align: center;
    }

    .bonus-title {
        font-size: 1.75rem;
    }

    .buy-sell-widget {
        max-width: 100%;
    }

    .advanced-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .advanced-text {
        text-align: center;
    }

    .advanced-title {
        font-size: 1.75rem;
    }

    .advanced-buttons {
        align-items: center;
    }

    .platform-btn {
        width: 100%;
        justify-content: center;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .crypto-markets {
        padding: 3rem 1.5rem;
    }

    .markets-header h2 {
        font-size: 2rem;
    }

    .welcome-bonus-section {
        padding: 4rem 1.5rem;
    }

    .mobile-app-showcase {
        padding: 4rem 1.5rem;
    }

    .advanced-exchange-section {
        padding: 4rem 1.5rem;
    }

    /* Remove large background image on smaller screens for readability */
    .advanced-exchange-section {
        background-image: none;
    }

    .defi-section {
        padding: 4rem 1.5rem;
    }

    .breaking-news-section {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    nav {
        display: none;
    }

    .main-headline {
        font-size: 1.75rem;
    }

    .sub-headline {
        font-size: 1rem;
    }

    .features-list {
        font-size: 0.95rem;
    }

    .features-list li {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .download-app-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }

    .crypto-price,
    .crypto-marketcap {
        font-size: 0.9rem;
    }

    .trade-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .bonus-title {
        font-size: 1.5rem;
    }

    .bonus-subtitle {
        font-size: 1rem;
    }

    .showcase-title {
        font-size: 1.75rem;
    }

    .showcase-description {
        font-size: 1rem;
    }

    .advanced-title {
        font-size: 1.5rem;
    }

    .defi-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .markets-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 3rem 1rem;
    }

    .main-headline {
        font-size: 1.5rem;
    }

    .sub-headline {
        font-size: 0.95rem;
    }

    .download-app-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .crypto-item {
        padding: 1rem !important;
    }

    .crypto-item h3 {
        font-size: 1.1rem;
    }

    .crypto-item p {
        font-size: 0.9rem;
    }

    .section {
        padding: 2.5rem 1rem;
    }

    .welcome-bonus-section {
        padding: 3rem 1rem;
    }

    .mobile-app-showcase {
        padding: 3rem 1rem;
    }

    .advanced-exchange-section {
        padding: 3rem 1rem;
    }

    .defi-section {
        padding: 3rem 1rem;
    }

    .crypto-markets {
        padding: 3rem 1rem;
    }
}

/* CSS */
.story-section {
  width: 100%;
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
}

.story-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: bold;
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.story-text {
  flex: 1 1 50%;
  font-size: 1rem;
  line-height: 1.6;
}

.story-subtitle {
  margin-top: 20px;
  font-size: 1.3rem;
  font-weight: 600;
}

.story-facts {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.story-facts li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.story-image-wrapper {
  flex: 1 1 50%;
  text-align: center;
}

.story-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

text-center{
    text-align: center !important;
}