/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #fffbf0; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #FFD700, #af9d39);
    border-radius: 5px;
    border: 1px solid #1a1a2e;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #FFC700, #af9d39);
}

/* Firefox scrollbar */
* { scrollbar-width: thin; scrollbar-color: #FFD700 #fffbf0; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255,215,0,0.2);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo .logo {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333333;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 8px;
}

.nav-link-signup {
    background: linear-gradient(135deg, #bb9904, #f3eba5);
    color: #ffffff !important;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    padding-bottom: 40px;
    background-image: url('images/hero.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    color: #333;
}

.gradient-text {
    background: linear-gradient(135deg, #d2b056, #d2b056);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 28px;
}



.hero-disclaimer {
    font-size: 0.6em !important;
}




/* Features */
.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    background: rgba(210,176,86,0.10);
    border-radius: 20px;
    border: 1px solid rgba(210,176,86,0.40);
}

.feature-icon {
    font-size: 16px;
    color: #FFD700;
}


/* Trading Widget */
.trading-widget {
    background: #fffdf4;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(210,176,86,0.35);
    max-width: 420px;
}

.widget-header { margin-bottom: 20px; }

.tab-container {
    display: flex;
    background: #fffbf0;
    border-radius: 10px;
    padding: 3px;
    border: 1px solid rgba(255,215,0,0.2);
}

.tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    background: transparent;
    border-radius: 7px;
    font-weight: 700;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

.tab.active {
    background: #ffffff;
    color: #B8860B;
}

.input-section { margin-bottom: 18px; }

.input-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.input-group {
    display: flex;
    background: #fffbf0;
    border-radius: 10px;
    border: 2px solid rgba(255, 208, 53, 0.2);
}

.amount-input {
    flex: 1;
    padding: 12px 14px;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.amount-input::placeholder { color: #999; }

.currency-selector {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border-left: 1px solid rgba(210,176,86,0.35);
    gap: 10px;
    min-width: 100px;
    background: rgba(210,176,86,0.10);
    border-radius: 0 8px 8px 0;
}

.currency-select {
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    appearance: none;
    padding-right: 20px;
}

.crypto-icon { font-size: 20px; color: #8d8033; }

/* Arrow */
.conversion-arrow { display: flex; justify-content: center; margin: 10px 0; }

.arrow-icon {
    width: 40px;
    height: 40px;
    background: #d2b056;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: bold;
}

/* Conversion Label */
.conversion-label {
    text-align: center;
    padding: 10px 14px;
    background: #fff4cc;
    border-radius: 10px;
    margin-bottom: 18px;
    border: 2px solid rgba(255,208,53,0.2);
    font-size: 13px;
    font-weight: 700;
    color: #362727;
}

/* CTA Button */
.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 18px;
    background: #d2b056;
    color: #333;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

/* Footer badges */
.widget-footer { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(210,176,86,0.2); }

.security-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    font-size: 10px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 4px 10px;
    background: #fff4c2;
    border-radius: 12px;
    border: 1px solid rgba(255,208,53,0.2);
}

/* Content Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header { text-align: center; margin-bottom: 50px; }

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: #333;
    margin-bottom: 12px;
}

.section-description {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}







/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: #fdf6e3; /* light gold */
    position: relative;
}


.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(182, 140, 24, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.step-item {
    /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 107, 53, 0.03)); */
	    /* background: rgb(199, 171, 14); */
		background: #d2b056;

    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    /* box-shadow: 0 6px 25px rgba(255, 107, 53, 0.15); */
	    /* box-shadow: 0 4px 20px rgba(211, 173, 6, 0.1); */

    /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
    /* border: 2px solid rgba(255, 107, 53, 0.2); */
	    border: 1px solid rgba(83, 68, 1, 0.1);

    /* backdrop-filter: blur(15px); */
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(82, 65, 18, 0.08), transparent);
    /* transition: left 0.6s ease; */
}

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

.step-item:hover {
    /* transform: translateY(-6px) scale(1.01); */
    /* box-shadow: 0 15px 40px rgba(255, 107, 53, 0.25); */
    /* box-shadow: 0 20px 40px rgba(136, 116, 4, 0.2); */

    border-color: rgba(255, 215, 0, 0.4);
}

.step-content {
    padding-top: 0;
}

.step-title {
    font-size: 22px;
    font-weight: 800;
    /* color: #ffffff; */
	    color: #333;

    margin-bottom: 12px;
    /* text-shadow: 0 2px 8px rgba(255, 255, 255, 0.2); */
}

.step-description {
    font-size: 14px;
    /* color: #b0b0b0; */
	    color: #3c3c3c;

    line-height: 1.5;
    margin-bottom: 20px;
}

.step-icon {
    font-size: 48px;
    opacity: 0.8;
}

/* About Crypto Section */
.about-crypto {
    padding: 80px 0;
    background: #fdf6e3; /* same light gold tone */
    position: relative;
}





.about-crypto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 20%, rgba(210, 176, 86, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 80%, rgba(210, 176, 86, 0.06) 0%, transparent 50%);
    pointer-events: none;
}


.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-description {
    font-size: 16px;
    /* color: #b0b0b0; */
	    color: #555555;

    line-height: 1.6;
    margin-bottom: 32px;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.crypto-logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4b23c, #f6e27a);

    background-size: 200% 200%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* animation: logoAnimation 5s ease-in-out infinite; */
    /* box-shadow: 0 0 40px rgba(210, 176, 86, 0.45); */

    border: 2px solid rgba(255, 215, 0, 0.3);
}

/* @keyframes logoAnimation {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        background-position: 0% 50%;
        box-shadow: 0 0 40px rgba(210, 176, 86, 0.45);

    }
    25% { 
        transform: scale(1.02) rotate(90deg);
        background-position: 50% 0%;
        box-shadow: 0 0 40px rgba(210, 176, 86, 0.45);

    }
    50% { 
        transform: scale(1.05) rotate(180deg);
        background-position: 100% 50%;
        box-shadow: 0 0 40px rgba(210, 176, 86, 0.45);

    }
    75% { 
        transform: scale(1.02) rotate(270deg);
        background-position: 50% 100%;
       box-shadow: 0 0 40px rgba(210, 176, 86, 0.45);

    }
} */

.logo-gradient {
    font-size: 44px;
    font-weight: 900;
    color: white;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.section-divider {
    width: 100%;
    max-width: 1100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d2b056, transparent);
    margin: 60px auto;
    border: none;
    border-radius: 2px;
}

/* Explore Popular Crypto Section */
.explore-crypto {
    padding: 80px 0;
    background: #fdf6e3; /* clean consistent background */
    position: relative;
}



.explore-crypto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 235, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.crypto-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.crypto-card {
    /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 107, 53, 0.03));/ */
	    background: linear-gradient(145deg, #fffaf0 0%, #f5e7b7 60%, #e4c965 100%);


    padding: 32px 28px;
    border-radius: 16px;
    text-align: left;
    cursor: pointer;
    /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
    /* border: 2px solid rgba(255, 107, 53, 0.2); */
	    border: 1px solid rgba(180, 140, 20, 0.25);


    /* backdrop-filter: blur(15px); */
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.crypto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 201, 53, 0.08), transparent);
    /* transition: left 0.6s ease; */
}

.crypto-card:hover::before {
    left: 100%;
}

.crypto-card:hover {
	    background: linear-gradient(145deg, #fef8e3, #e7cb62);

    /* transform: translateY(-8px) scale(1.02); */
    /* box-shadow: 0 20px 50px rgba(210, 176, 70, 0.35); */
    border-color: rgba(210, 160, 50, 0.5);
}

.crypto-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.crypto-card-icon {
    font-size: 48px;
    /* color: #ffd700; */
	    color: #d2b056;
/* filter: drop-shadow(0 0 6px rgba(200, 160, 40, 0.4)); */


    /* filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3)); */
}

.crypto-card-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.crypto-card-title h3 {
    font-size: 24px;
    font-weight: 800;
    /* color: #ffffff; */
	    color: #333;

    margin: 0;
    /* text-shadow: 0 2px 8px rgba(255, 201, 53, 0.2); */
}

.crypto-card-cta {
    font-size: 14px;
    font-weight: 700;
    color: #c3a442;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.crypto-card-description {
    font-size: 15px;
    /* color: #b0b0b0; */
	    color: #666666;

    line-height: 1.6;
}

/* Trust Section */
.trust-section {
  background: radial-gradient(circle at 50% 10%, #fffaf0 0%, #fdf6e3 60%, #f8efc9 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.trust-section h2 {
  font-size: 48px;
  font-weight: 900;
  color: #333;
  margin-bottom: 16px;
}



.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 201, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.trust-content {
    text-align: center;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.trust-item {
    background: transparent;
    padding: 32px 20px;
    border-radius: 0;
    text-align: center;
    /* box-shadow: none; */
    border: none;
    /* transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); */
    position: relative;
}

.trust-item::before {
    content: none;
}

.trust-item:hover {
    transform: translateY( 0px);
    box-shadow: none;
    border-color: transparent;
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 20px;
    /* color: #ffd700; */
	    color: #FFD700;

}

.trust-item h3 {
    font-size: 20px;
    font-weight: 800;
    /* color: #ffffff; */
	    color: #333;

    margin-bottom: 12px;
    /* text-shadow: 0 2px 8px rgba(255, 218, 53, 0.2); */
}

.trust-item p {
    font-size: 14px;
    /* color: #b0b0b0; */
	    color: #555555;

    line-height: 1.5;
}













/* ------------------------------
   FOOTER — PIXEL PERFECT VERSION
   Matches Astro production output
----------------------------------*/

.footer {
    background-color: #fff;
    padding: 64px 0 0;
    border-top: 1px solid #e6e6e6;
    font-family: 'Inter', sans-serif;
}

/* Container override */
.footer .container {
    max-width: 1240px;
    padding: 0 24px;
}

/* Layout */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
    margin-bottom: 56px;
}

/* Logo Section */
.logo-section .logo {
    width: 148px;
    height: auto;
    margin-bottom: 36px;
}

/* Download area */
.download-title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin-bottom: 16px;
}

.download-text {
    font-size: 17px;
    font-weight: 400;
    color: #555;
    line-height: 1.55;
    margin-bottom: 24px;
}

/* App buttons */
.app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.app-button {
    display: inline-block;
    transition: transform .2s ease;
}

.app-button:hover {
    transform: translateY(-3px);
}

.app-button img {
    width: 150px;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* Links Section */
.links-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.link-header {
    font-size: 19px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}

.link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.link-item a {
    font-size: 16px;
    color: #646464;
    text-decoration: none;
    line-height: 1.5;
    transition: color .2s ease, text-decoration .2s ease;
}

.link-item a:hover {
    color: #d2b056;
    text-decoration: underline;
}

/* Social icons */
.social-media-group svg {
    width: 33px;
    height: 33px;
}

.social-media-group .link-item a {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Copyrights Section */
.copyrights {
    border-top: 1px solid #e5e5e5;
    padding: 24px 0;
    text-align: center; 
    max-width: 1300px;
    margin: 0 auto; /* ensures center alignment */
}

.copyrights p:first-child{
    margin: 8px 0 14px;  /* reduce space between paragraphs */
    font-size: 16px;
    color: rgb(83, 83, 83);
    line-height: 1.5; /* tighter space */
	font-weight: 600;
}

.copyrights p:not(:first-child) {
    margin-bottom: 0;

}

.legal-text {
    color: #777;
    font-size: 13px;
    line-height: 1.65;
}

.legal-text strong {
    color: #555;
    font-weight: 600;
}

/* ---------------------
   Responsive Fixes
----------------------*/
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .links-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .copyrights {
        text-align: center; /* On tablet/mobile Astro centers this */
    }
}

@media (max-width: 768px) {
    .links-container {
        grid-template-columns: 1fr;
    }

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

    .app-button img {
        width: 145px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding-top: 40px;
    }

    .logo-section .logo {
        width: 130px;
    }

    .download-title {
        font-size: 18px;
    }

    .download-text {
        font-size: 15px;
    }

    .link-item a {
        font-size: 14px;
    }

    .legal-text {
        font-size: 12px;
    }
}






























/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .trading-widget {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding-top: 70px;
        padding-bottom: 20px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .trading-widget {
        padding: 20px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .crypto-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .how-it-works,
    .about-crypto,
    .trust-section,
    .explore-crypto {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .trading-widget {
        padding: 16px;
    }
    
    .amount-input {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .currency-selector {
        min-width: 90px;
        padding: 10px 12px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .feature-item {
        font-size: 12px;
        padding: 5px 12px;
    }
}

/* Accessibility */
/* @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-shapes {
        display: none;
    }
} */

/* Fix widget alignment and animation on mobile */
@media (max-width: 768px) {
    .hero-container {
        /* display: flex !important;        */
		/* override grid */
        flex-direction: column !important;  /* normal order: content first, widget second */
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 24px;
        padding: 0 16px;
    }

    .hero-content {
order: 1;
    }

    .trading-widget {
        order: 2; /* widget goes below content */
        margin: 20px auto 0;
        width: 100%;
        max-width: 95%;
        animation: none;
        /* transform: none !important; */
        box-shadow: 0 15px 30px rgba(255, 215, 0, 0.15);
    }
	.hero {
    position: relative;
    background-image: url('/images/hero.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll; /* or 'fixed' for parallax */
}
}


