/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --base-blue: #0052ff;
    --base-blue-light: #3a7dff;
    --base-blue-lighter: #6ba3ff;
    --base-blue-lightest: #e6f0ff;
    --pure-white: #ffffff;
    --off-white: #f8fafc;
    --dark-bg: #0a0b12;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --shadow: 0 10px 25px rgba(0, 82, 255, 0.1);
    --radius: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--pure-white);
    overflow-x: hidden;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section {
    padding: 60px 0;
}

.alt-bg {
    background-color: var(--off-white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-bg);
    line-height: 1.2;
}

.highlight {
    color: var(--base-blue);
}

.section-lead {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* AUTO-SLIDING BANNER */
.sliding-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: var(--base-blue);
    overflow: hidden;
    z-index: 9999;
    display: flex;
    align-items: center;
}

.banner-track {
    display: flex;
    animation: slideLeft 30s linear infinite;
    white-space: nowrap;
}

.banner-track img {
    height: 35px;
    width: auto;
    border-radius: 6px;
    margin: 0 12px;
    object-fit: contain;
}

@keyframes slideLeft {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* NAVIGATION */
.navbar {
    position: sticky;
    top: 50px;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid var(--base-blue-lightest);
    width: 100%;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--dark-bg);
}

.nav-logo img {
    height: 35px;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin: 0 10px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    padding: 8px 12px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--base-blue);
    background-color: var(--base-blue-lightest);
}

.nav-external {
    display: flex;
    gap: 15px;
}

.nav-external a {
    color: var(--text-light);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.nav-external a:hover {
    color: var(--base-blue);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 5px;
}

/* HERO SECTION */
.hero-section {
    padding-top: 120px;
}

.hero-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    color: var(--dark-bg);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--base-blue);
    margin-bottom: 25px;
    font-weight: 600;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-promo-centered {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 30px auto 0;
    display: block;
}

/* Centered Description for Collection */
.centered-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    padding: 0 15px;
}

/* MAIN CENTERED SLIDESHOW - FASTER SPEED */
.slideshow-section {
    padding: 50px 0;
}

.main-slideshow {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 30px auto;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--base-blue-lightest), var(--pure-white));
    padding: 25px 0;
    border: 2px solid var(--base-blue-lightest);
}

.slideshow-track {
    display: flex;
    animation: slideLeftContinuous 30s linear infinite; /* CHANGED FROM 40s TO 30s (25% FASTER) */
    gap: 20px;
    padding: 0 20px;
}

.slideshow-track img {
    height: 160px;
    width: auto;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid var(--pure-white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.slideshow-track img:hover {
    transform: scale(1.05);
}

@keyframes slideLeftContinuous {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* BENEFITS / COLLECTION */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--pure-white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--base-blue);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.2rem;
    color: var(--base-blue);
    margin-bottom: 15px;
}

.benefit-card h3 {
    margin-bottom: 12px;
    color: var(--dark-bg);
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* STAKING */
.staking-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}

.staking-card {
    background: var(--pure-white);
    padding: 25px;
    border-radius: var(--radius);
    border: 2px solid var(--base-blue);
    transition: all 0.3s ease;
    cursor: default;
}

.staking-card:hover {
    border-color: var(--base-blue-light);
    box-shadow: var(--shadow);
    transform: none;
}

.staking-card h3 {
    color: var(--dark-bg);
    margin-bottom: 12px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.staking-card h3 i {
    color: var(--base-blue);
}

.staking-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ROADMAP */
.roadmap-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 30px auto 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.roadmap-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.phase-card {
    background: var(--pure-white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--base-blue);
}

.phase-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--base-blue-lightest);
}

.phase-header h3 {
    color: var(--dark-bg);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.phase-date {
    display: inline-block;
    background-color: var(--base-blue-lightest);
    color: var(--base-blue);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.phase-details {
    list-style: none;
}

.phase-details li {
    padding: 8px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
}

.phase-details li:before {
    content: "•";
    color: var(--base-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* TREASURY */
.treasury-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.treasury-info h3, .treasury-allocation h3 {
    color: var(--dark-bg);
    margin-bottom: 20px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.treasury-info h3 i, .treasury-allocation h3 i {
    color: var(--base-blue);
}

.treasury-info ul, .treasury-info ol {
    padding-left: 20px;
    margin-bottom: 25px;
}

.treasury-info li {
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.6;
}

.treasury-info .note {
    background-color: var(--base-blue-lightest);
    padding: 15px;
    border-radius: var(--radius);
    border-left: 4px solid var(--base-blue);
    font-size: 0.95rem;
    line-height: 1.6;
}

.treasury-info .note i {
    color: var(--base-blue);
    margin-right: 8px;
}

/* TREASURY ALLOCATION TABLE */
.treasury-allocation {
    background: var(--pure-white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.allocation-table {
    margin-top: 20px;
}

.allocation-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--base-blue-lightest);
}

.allocation-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.allocation-category {
    flex: 1;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 140px;
    font-size: 0.95rem;
}

.allocation-percent {
    width: 50px;
    text-align: right;
    font-weight: 700;
    color: var(--base-blue);
    font-size: 1.1rem;
}

.allocation-bar {
    flex: 2;
    height: 10px;
    background-color: var(--base-blue-lightest);
    border-radius: 5px;
    margin-left: 15px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--base-blue-light), var(--base-blue));
    border-radius: 5px;
}

/* TEAM */
.team-profile {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--pure-white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 40px auto;
    flex-wrap: wrap;
    justify-content: center;
}

.team-profile img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--base-blue-lightest);
}

.team-info h3 {
    font-size: 1.8rem;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.team-info h3 .role {
    font-size: 1rem;
    color: var(--base-blue);
    font-weight: 600;
    display: block;
    margin-top: 5px;
}

.team-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 500px;
    line-height: 1.6;
}

.team-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.team-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--base-blue);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s;
}

.team-links a:hover {
    background-color: var(--dark-bg);
}

/* PARTNERSHIPS & COLLABORATIONS */
.partnerships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.partnership-card {
    background: var(--pure-white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: block;
}

.partnership-card:hover {
    transform: translateY(-5px);
    border-color: var(--base-blue);
    box-shadow: 0 15px 35px rgba(0, 82, 255, 0.15);
}

.partnership-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    border-radius: 50%;
    padding: 20px;
    border: 2px solid var(--base-blue-lightest);
}

.partnership-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partnership-card h3 {
    font-size: 1.5rem;
    color: var(--dark-bg);
    margin-bottom: 10px;
    font-weight: 700;
}

.partnership-card p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.visit-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--base-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* FOOTER */
.footer {
    background-color: var(--dark-bg);
    color: var(--pure-white);
    padding: 50px 0 30px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 45px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-logo-text h3 {
    font-size: 1.8rem;
    margin: 0;
    line-height: 1.2;
}

.footer-logo-text p {
    color: var(--base-blue-lighter);
    font-size: 1rem;
    margin: 5px 0 0 0;
    line-height: 1.4;
}

.footer-slogan {
    font-size: 1.2rem;
    color: var(--base-blue-lighter);
    margin-bottom: 25px;
    font-weight: 300;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid var(--base-blue);
    border-radius: 50px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.footer-links a:hover {
    background-color: var(--base-blue);
    color: var(--dark-bg);
}

.footer-copyright {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 2rem;
        padding: 0 10px;
    }
    
    .section-lead {
        font-size: 1.1rem;
        padding: 0 10px;
        margin-bottom: 2rem;
    }
    
    /* MOBILE NAVIGATION */
    .nav-menu, .nav-external {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--pure-white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav-menu.active li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu.active a {
        display: block;
        padding: 12px;
        font-size: 1.1rem;
    }
    
    .nav-external.active {
        display: flex;
        justify-content: center;
        padding: 15px 0;
        border-top: 1px solid var(--base-blue-lightest);
        margin-top: 10px;
    }
    
    /* HERO SECTION ON MOBILE */
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-desc {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .hero-promo-centered {
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* SLIDESHOW ON MOBILE */
    .slideshow-track img {
        height: 120px;
    }
    
    .main-slideshow {
        padding: 20px 0;
    }
    
    /* BENEFITS GRID ON MOBILE */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 20px;
    }
    
    /* STAKING ON MOBILE */
    .staking-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .staking-card {
        padding: 20px;
    }
    
    /* ROADMAP ON MOBILE */
    .roadmap-phases {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .phase-card {
        padding: 20px;
    }
    
    /* TREASURY ON MOBILE */
    .treasury-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .allocation-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .allocation-bar {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
    
    .allocation-percent {
        text-align: left;
        width: auto;
        margin-top: 5px;
        margin-bottom: 5px;
    }
    
    /* TEAM ON MOBILE */
    .team-profile {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        margin: 30px auto;
    }
    
    .team-info h3 {
        font-size: 1.6rem;
    }
    
    .team-links {
        justify-content: center;
    }
    
    .team-links a {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    /* PARTNERSHIPS ON MOBILE */
    .partnerships-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .partnership-card {
        padding: 25px 20px;
    }
    
    .partnership-logo {
        width: 100px;
        height: 100px;
    }
    
    /* FOOTER ON MOBILE */
    .footer {
        padding: 40px 0 25px;
    }
    
    .footer-logo-text h3 {
        font-size: 1.6rem;
    }
    
    .footer-slogan {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .footer-links a {
        width: 200px;
        justify-content: center;
    }
    
    /* FIX FOOTER LOGO ALIGNMENT ON MOBILE */
    .footer-logo {
        justify-content: flex-start;
        text-align: left;
    }
    
    .footer-logo-text {
        align-items: flex-start;
    }
}

/* EXTRA SMALL PHONES */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .slideshow-track img {
        height: 100px;
    }
    
    .team-profile img {
        width: 150px;
        height: 150px;
    }
    
    .team-info h3 {
        font-size: 1.4rem;
    }
    
    .partnership-card {
        padding: 20px 15px;
    }
    
    .partnership-logo {
        width: 80px;
        height: 80px;
    }
    
    .partnership-card h3 {
        font-size: 1.3rem;
    }
}
