@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0b0e11 0%, #1a1d29 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

/* Hide scrollbars globally */
html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
    background: transparent;
}

/* Header Styles */
.header {
    background: rgba(24, 26, 32, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(43, 49, 57, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    height: 64px;
    width: 100%;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 800;
    color: #f0b90b;
    text-shadow: 0 0 10px rgba(240, 185, 11, 0.3);
    transition: all 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.05);
    text-shadow: 0 0 15px rgba(240, 185, 11, 0.5);
}

.nav-brand i {
    font-size: 1.5rem;
}

.nav-brand .logo-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-brand .logo-icon svg {
    width: 100%;
    height: 100%;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

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

.nav-menu a.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-menu a.nav-link:hover {
    color: #f0b90b;
}

.nav-menu a.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #f0b90b;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-menu a.nav-link:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown i {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
}

.dropdown:hover i {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(24, 26, 32, 0.98);
    backdrop-filter: blur(10px);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 0.5rem 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(43, 49, 57, 0.5);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    color: #eaecef;
    padding: 0.7rem 1rem;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.dropdown-content a:hover {
    background: rgba(240, 185, 11, 0.1);
    color: #f0b90b;
    padding-left: 1.5rem;
}

.dropdown {
    position: relative;
}

.dropdown i {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
}

.dropdown:hover i {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(24, 26, 32, 0.98);
    backdrop-filter: blur(10px);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 0.5rem 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(43, 49, 57, 0.5);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    color: #eaecef;
    padding: 0.7rem 1rem;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.dropdown-content a:hover {
    background: rgba(240, 185, 11, 0.1);
    color: #f0b90b;
    padding-left: 1.5rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-tools {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-actions button {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-actions button:hover {
    background-color: rgba(43, 49, 57, 0.7);
    color: #f0b90b;
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #ffffff;
    border-radius: 3px;
}

.login-btn {
    background: transparent;
    color: #eaecef;
    border: 1px solid rgba(234, 236, 239, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.login-btn:hover {
    background: rgba(234, 236, 239, 0.1);
    border-color: #f0b90b;
    color: #eaecef;
}

.signup-btn {
    background: linear-gradient(135deg, #f0b90b 0%, #d4a00a 100%) !important;
    color: #000000 !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(240, 185, 11, 0.2);
    text-decoration: none;
    display: inline-block;
    border: none;
}

.signup-btn:hover {
    background: linear-gradient(135deg, #d4a00a 0%, #f0b90b 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 185, 11, 0.3);
    color: #000000 !important;
}

/* Hero Section */
.hero {
    padding: 6rem 2rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
    overflow-x: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(240, 185, 11, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    align-items: start;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 3rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

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

.user-count {
    color: #f0b90b;
    display: block;
}

.trust-text {
    color: #ffffff;
    display: block;
}

.signup-form {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.email-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #474d57;
    border-right: none;
    border-radius: 8px 0 0 8px;
    background: rgba(43, 49, 57, 0.8);
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.email-input:focus {
    outline: none;
    border-color: #f0b90b;
    background: rgba(43, 49, 57, 1);
    box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.1);
}

.email-input::placeholder {
    color: #848e9c;
}

.signup-form-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #f0b90b 0%, #d4a00a 100%);
    color: #000000;
    border: none;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(240, 185, 11, 0.3);
}

.signup-form-btn:hover {
    background: linear-gradient(135deg, #d4a00a 0%, #f0b90b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 185, 11, 0.4);
}

.download-options {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #848e9c;
    font-size: 0.9rem;
}

.download-icons {
    display: flex;
    gap: 0.5rem;
}

.download-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #474d57;
    background-color: transparent;
    color: #ffffff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.download-icon:hover {
    background-color: #2b3139;
}

/* Crypto Prices */
.crypto-prices {
    background: linear-gradient(145deg, #1e2329 0%, #181a20 100%);
    border-radius: 16px;
    padding: 0;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(43, 49, 57, 0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 1400px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.crypto-prices .container {
    padding: 2rem;
}

.crypto-prices:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.price-tabs {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #2b3139;
    padding-bottom: 1rem;
}

.tab {
    background: none;
    border: none;
    color: #848e9c;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5rem 0;
    position: relative;
}

.tab.active {
    color: #ffffff;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #f0b90b;
}

.view-all {
    color: #f0b90b;
    text-decoration: none;
    font-size: 0.8rem;
    margin-left: auto;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240, 185, 11, 0.1), transparent);
    transition: left 0.5s ease;
}

.price-item:hover::before {
    left: 100%;
}

.price-item:hover {
    background: rgba(30, 35, 41, 0.5);
    transform: translateX(5px);
}

.coin-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.coin-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.coin-icon:hover {
    transform: scale(1.1);
}

.coin-icon.btc {
    background-color: #f7931a;
    color: #ffffff;
}

.coin-icon.eth {
    background-color: #627eea;
    color: #ffffff;
}

.coin-icon.bnb {
    background-color: #f0b90b;
    color: #000000;
}

.coin-icon.xrp {
    background-color: #23292f;
    color: #ffffff;
}

.coin-icon.sol {
    background-color: #9945ff;
    color: #ffffff;
}

.coin-name {
    color: #ffffff;
    font-size: 0.9rem;
}

.price-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    max-width: 150px;
    overflow: hidden;
}

.crypto-value {
    color: #b7bdc6;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
}

.crypto-usd-value {
    font-size: 0.5rem;
    color: #eaecef;
    font-weight: 500;
    line-height: 1.2;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
}

.crypto-price-value {
    font-size: 0.65rem;
    font-weight: 700;
    color: #f0b90b;
    margin-bottom: 0.2rem;
    line-height: 1.2;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
}

.price {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
}

.change {
    font-size: 0.8rem;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
}

.change.positive {
    color: #02c076;
    background-color: rgba(2, 192, 118, 0.1);
}

.change.negative {
    color: #f84960;
    background-color: rgba(248, 73, 96, 0.1);
}

/* News Section */
.news-section {
    background: linear-gradient(145deg, #1e2329 0%, #181a20 100%);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(43, 49, 57, 0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 1400px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto 2rem;
    overflow-x: hidden;
}

.news-section .container {
    padding: 2rem;
}

.news-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid #2b3139;
    padding-bottom: 1rem;
}

.news-header h3 {
    color: #ffffff;
    font-size: 1.1rem;
}

.view-all-news {
    color: #f0b90b;
    text-decoration: none;
    font-size: 0.8rem;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-item a {
    color: #848e9c;
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.4;
    transition: color 0.3s;
}

.news-item a:hover {
    color: #ffffff;
}

/* Mobile App Section */
.mobile-app {
    background: linear-gradient(135deg, #181a20 0%, #1e2329 50%, #181a20 100%);
    padding: 6rem 0;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.mobile-app::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 185, 11, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.app-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.app-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1a1a1a 0%, #000000 100%);
    border-radius: 35px;
    padding: 25px;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: translateY(-10px) rotateY(5deg);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 3px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #0b0e11;
    border-radius: 20px;
    overflow: hidden;
}

.app-interface {
    padding: 1rem;
    height: 100%;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.8rem;
}

.status-icons {
    display: flex;
    gap: 0.3rem;
}

.balance-section {
    text-align: center;
    margin-bottom: 2rem;
}

.balance {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
}

.deposit-btn {
    background: linear-gradient(135deg, #f0b90b 0%, #d4a00a 100%);
    color: #000000;
    border: none;
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(240, 185, 11, 0.3);
}

.deposit-btn:hover {
    background: linear-gradient(135deg, #d4a00a 0%, #f0b90b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 185, 11, 0.4);
}

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

.portfolio-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0.5rem;
    padding: 0.75rem;
    background-color: #181a20;
    border-radius: 8px;
    font-size: 0.8rem;
}

.portfolio-item .coin {
    font-weight: bold;
    color: #f0b90b;
}

.portfolio-item .change-p {
    color: #02c076;
    text-align: right;
}

.app-versions {
    display: flex;
    gap: 1rem;
}

.version-btn {
    padding: 0.5rem 1rem;
    background-color: transparent;
    border: 1px solid #474d57;
    color: #848e9c;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.version-btn.active {
    background-color: #f0b90b;
    color: #000000;
    border-color: #f0b90b;
}

.app-right h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.qr-section {
    text-align: center;
    margin-bottom: 2rem;
}

.qr-code {
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 1rem;
}

.qr-section p {
    color: #848e9c;
    margin-bottom: 0.5rem;
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #848e9c;
}

.platform i {
    font-size: 2rem;
}

.more-downloads {
    color: #f0b90b;
    text-decoration: none;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #f0b90b, #d4a00a);
    border-radius: 2px;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid rgba(43, 49, 57, 0.5);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: rgba(24, 26, 32, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(240, 185, 11, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #181a20;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #1e2329;
}

.faq-number {
    color: #f0b90b;
    font-weight: bold;
    font-size: 1.1rem;
}

.faq-question span:nth-child(2) {
    flex: 1;
    color: #ffffff;
    font-size: 1rem;
}

.faq-question i {
    color: #848e9c;
    transition: transform 0.3s;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e2329 0%, #181a20 50%, #1e2329 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(240, 185, 11, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.cta-btn {
    background: linear-gradient(135deg, #f0b90b 0%, #d4a00a 100%);
    color: #000000;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(240, 185, 11, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #d4a00a 0%, #f0b90b 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(240, 185, 11, 0.4);
}

/* Footer */
.footer {
    background-color: #0b0e11;
    padding: 3rem 0 1rem;
    border-top: 1px solid #2b3139;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section ul li a {
    color: #848e9c;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.social-icons a {
    width: 32px;
    height: 32px;
    background-color: #2b3139;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #848e9c;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: #474d57;
}

.language-selector,
.currency-selector,
.theme-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #848e9c;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #2b3139;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #848e9c;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #848e9c;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.2rem;
    }
    
    .nav-menu a.nav-link {
        font-size: 0.85rem;
    }
    
    .login-btn, .signup-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: nowrap;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }
    
    .navbar .container {
        padding: 0 0.5rem;
    }
    
    .nav-brand {
        font-size: 1.1rem;
        gap: 0.3rem;
        flex-shrink: 0;
    }
    
    .nav-brand i {
        font-size: 1.2rem;
    }
    
    .hamburger {
        display: block;
        margin-left: auto;
        margin-right: 1rem;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: #f0b90b;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: #f0b90b;
    }
    
    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(24, 26, 32, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
    }
    
    .nav-wrapper.active {
        right: 0;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a.nav-link {
        font-size: 1rem;
        padding: 0.5rem 0;
        display: block;
        width: 100%;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0.5rem 0 0.5rem 1rem;
        margin-top: 0.5rem;
        display: none;
        width: 100%;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown i {
        transition: transform 0.3s;
    }
    
    .dropdown.active i {
        transform: rotate(180deg);
    }
    
    .nav-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
    }
    
    .nav-tools {
        display: flex;
        width: 100%;
        justify-content: space-between;
        margin-top: 1rem;
    }
    
    .login-btn, .signup-btn {
        width: 100%;
        text-align: center;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    .signup-btn {
        margin-top: 0.5rem;
    }
    
    .hero {
        padding: 4rem 1rem;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .hero-title {
        font-size: 2.8rem;
        text-align: center;
    }
    
    .crypto-prices,
    .news-section {
        margin: 0 0.5rem 2rem;
    }
    
    .crypto-prices .container,
    .news-section .container {
        padding: 1.5rem;
    }
    
    .hero-right {
        width: 100%;
        max-width: none;
    }
    
    .mobile-app {
        padding: 3rem 0;
    }
    
    .mobile-app .container {
        padding: 0 1.5rem;
    }
    
    .app-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .app-right h2 {
        font-size: 2.2rem;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .faq {
        padding: 4rem 0;
    }
    
    .faq .container {
        padding: 0 1.5rem;
    }
    
    .cta {
        padding: 4rem 0;
    }
    
    .cta .container {
        padding: 0 1.5rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer .container {
        padding: 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .social-icons {
        flex-wrap: wrap;
        gap: 0.4rem;
    }
    
    .social-icons a {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body, html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .navbar {
        height: 56px;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .navbar .container {
        padding: 0 0.25rem;
    }
    
    .nav-brand {
        font-size: 1rem;
        gap: 0.25rem;
    }
    
    .nav-wrapper {
        width: 100%;
        padding: 70px 15px 20px;
    }
    
    .nav-menu a.nav-link {
        font-size: 0.95rem;
    }
    
    .dropdown-content {
        padding: 0.5rem 0 0.5rem 0.75rem;
    }
    
    .hamburger {
        margin-right: 0.5rem;
    }
    
    .nav-brand span {
        display: none;
    }
    
    .nav-brand i {
        font-size: 1.5rem;
    }
    
    .nav-actions {
        gap: 0.25rem;
    }
    
    .nav-actions button {
        padding: 0.25rem;
        font-size: 0.8rem;
    }
    
    .search-btn,
    .theme-toggle,
    .language-btn,
    .settings-btn {
        display: none;
    }
    
    .login-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .signup-btn {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.8rem !important;
    }
    
    .hero {
        padding: 3rem 0.25rem;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .mobile-app {
        padding: 2rem 0;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .mobile-app .container {
        padding: 0 1rem;
    }
    
    .app-content {
        gap: 2rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .app-right h2 {
        font-size: 1.8rem;
    }
    
    .platform-icons {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .faq, .cta {
        padding: 2rem 0;
    }
    
    .faq .container, .cta .container {
        padding: 0 1rem;
    }
    
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer .container {
        padding: 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .social-icons {
        justify-content: center;
        gap: 0.3rem;
    }
    
    .social-icons a {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .signup-form {
        flex-direction: column;
    }
    
    .email-input {
        border-radius: 4px;
        border-right: 1px solid #474d57;
        margin-bottom: 0.5rem;
    }
    
    .signup-form-btn {
        border-radius: 4px;
    }
    
    .crypto-prices,
    .news-section {
        margin: 0 0.25rem 1.5rem;
        border-radius: 12px;
    }
    
    .crypto-prices .container,
    .news-section .container {
        padding: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}