/* Reset and Base Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(325deg, #cacade 0%, #eeeef5 50%, #fafafc 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: #f7f7f7 !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #6366f1 !important;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-outline-light {
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #1a1a2e;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #6c5ca3 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #131414;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.app-mockups {
    position: relative;
    height: 600px;
}

.app-mockup {
    position: absolute;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgb(0 0 0 / 0%);
    transition: transform 0.3s ease;
}

.app-mockup-1 {
    top: 0;
    left: 0;
    z-index: 3;
    transform: rotate(-5deg);
}

.app-mockup-2 {
    top: 50px;
    left: 100px;
    z-index: 2;
    transform: rotate(5deg);
}

.app-mockup-3 {
    top: 100px;
    left: 200px;
    z-index: 1;
    transform: rotate(-3deg);
}

.app-mockup:hover {
    transform: scale(1.05) rotate(0deg);
    z-index: 10;
}

/* Scrolling Banner */
.scrolling-banner {
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #a855f7, #6366f1);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.scrolling-text {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

.scrolling-text span {
    display: inline-block;
    padding: 0 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

.feature-card .badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

/* Streamline Section */
.streamline-section {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

/* Chains Section */
.chains-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

.chains-table {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
}

.chains-table th {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    padding: 1rem;
    font-weight: 600;
}

.chains-table td {
    padding: 1rem;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chains-table img {
    border-radius: 50%;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.about-feature {
    margin-bottom: 2rem;
}

.about-feature h5 {
    color: #6366f1;
    margin-bottom: 0.5rem;
}

/* Coins Section */
.coins-section {
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
}

.crypto-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.crypto-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.2);
}

.crypto-card img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.crypto-card h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.crypto-card span {
    color: #cbd5e1;
    font-size: 0.875rem;
}

.crypto-more {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Security Section */
.security-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.security-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.security-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.security-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
}

.security-cta {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

/* Partners Section */
.partners-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.partners-grid img {
    opacity: 0.6;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.partners-grid img:hover {
    opacity: 1;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
}

.testimonial-header h6 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.testimonial-header span {
    color: #cbd5e1;
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
}

.accordion-button {
    background: transparent;
    color: #ffffff;
    border: none;
    font-weight: 600;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: rgba(99, 102, 241, 0.1);
    color: #ffffff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    color: #cbd5e1;
    padding: 1.5rem;
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.download-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.download-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.download-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.download-cta {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
}

.download-buttons img {
    transition: transform 0.3s ease;
}

.download-buttons img:hover {
    transform: scale(1.05);
}

/* Support Section */
.support-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

.support-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.support-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #059669 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
}

.btn-outline-primary {
    border: 2px solid #6366f1;
    color: #6366f1;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #6366f1;
    color: #ffffff;
    transform: translateY(-2px);
}

/* NFT Section */


.nft-description-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    overflow: hidden;
}

/*SWIPER CONTAINER*/

.nft-swiper {
    width: 100%;
    overflow: hidden;
}

.nft-swiper .swiper-wrapper {
    align-items: stretch;
}

.nft-swiper .swiper-slide {
    height: auto;
    display: flex;
}

/* NFT CARD */

.nft-swiper .swiper-slide .nft-card {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease;
}

/* Hover lift */
.nft-swiper .swiper-slide .nft-card:hover {
    transform: translateY(-10px);
}

/* Image */
.nft-swiper .swiper-slide .nft-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*OVERLAY*/

.nft-swiper .swiper-slide .nft-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.2)
    );
    color: #ffffff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Show overlay on hover */
.nft-swiper .swiper-slide .nft-card:hover .nft-overlay {
    opacity: 1;
}

/* Overlay text */
.nft-swiper .swiper-slide .nft-overlay h5 {
    margin-bottom: 6px;
    font-weight: 600;
}

.nft-swiper .swiper-slide .nft-overlay p {
    font-size: 14px;
    line-height: 1.4;
}

/* Ensure hovered slide stays on top */
.nft-swiper .swiper-slide:hover {
    z-index: 5;
}



/* Footer */
.footer {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h6 {
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6366f1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .app-mockups {
        height: 400px;
    }
    
    .app-mockup {
        width: 200px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card,
    .security-card,
    .support-card,
    .download-card {
        margin-bottom: 2rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .scrolling-text span {
        padding: 0 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .app-mockups {
        height: 300px;
    }
    
    .app-mockup {
        width: 150px;
    }
    
    .feature-icon,
    .security-icon,
    .support-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .download-buttons a {
        display: block;
        margin-bottom: 1rem;
    }
    
    .download-buttons a:last-child {
        margin-bottom: 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects for interactive elements */
.feature-card,
.security-card,
.support-card,
.download-card,
.testimonial-card,
.crypto-card {
    cursor: pointer;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}




/* Hero Section */
.hero-section {
    padding: 6rem 0 4rem;
    background: url('https://assets-global.website-files.com/65f84e10ab33243479648185/65f8608fc6099c3528294d0a_Illustration%2018.svg') no-repeat 10% 40%,
                url('https://assets-global.website-files.com/65f84e10ab33243479648185/65f86327d160274095fa0d58_Illustration%2021.svg') no-repeat 90% 20%,
                url('https://assets-global.website-files.com/65f84e10ab33243479648185/65f8608fc7d6a262376d6b2d_Illustration%2020.svg') no-repeat 20% 3%,
                url('https://assets-global.website-files.com/65f84e10ab33243479648185/65f8608fc6099c3528294d19_Illustration%2019.svg') no-repeat 76% 19%;
    background-size: 22px, 19px, 13px, 24px;
}