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

:root {
    --primary-color: #0000ff;
    --secondary-color: #FF6B35;
    --accent-color: #00D4AA;
    --bg-dark: #0A0B0F;
    --bg-section: #1A1B23;
    --text-light: #FFFFFF;
    --text-gray: #8B8B93;
    --gradient-primary: linear-gradient(135deg, #0000ff 0%, #4a4aff 100%);
    --gradient-secondary: linear-gradient(135deg, #ffffff 0%, #e4e4e4 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 11, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.nav-logo {
    font-size: 24px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-light);
}

.section-title {
    color: var(--text-light);
    background: var(--text-light);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(15, 76, 255, 0.1) 0%, transparent 70%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 0.8;
    margin-bottom: 20px;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(100px);
    animation: slideUp 1s ease forwards;
}

.title-line:nth-child(1) {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.4s;
}

.hero-subtitle {
    font-size: 1.0rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    opacity: 0;
    animation: slideUp 1s ease forwards 0.6s;
}


.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: slideUp 1s ease forwards 0.8s;
}

.cta-button {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(15, 76, 255, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(15, 76, 255, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* CEO Portrait */
.hero-portrait {
    display: flex;
    justify-content: center;
    align-items: center;
}

.portrait-container {
    position: relative;
    width: 300px;
    height: 300px;
    opacity: 0;
    animation: fadeInScale 1.5s ease forwards 1s;
}

.portrait-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.6;
    animation: pulse 3s ease-in-out infinite;
}

.ceo-portrait {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--primary-color);
    position: relative;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--primary-color);
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
    color: var(--text-light);
}

/* About Section */
.about {
    background: var(--bg-section);
}

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


.about-ceo-portrait {
    max-width: 200px;;
    border-radius: 50%;
    margin: 20px auto 50px auto;
    display: block;
    box-shadow: 0 0 20px 0 rgba(0, 0, 255, 1);
}
.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.about-text p {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.about-text p.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature {
    padding: 30px;
    background: rgba(15, 76, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(15, 76, 255, 0.2);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.feature.visible {
    opacity: 1;
    transform: translateX(0);
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.feature p {
    color: var(--text-gray);
}

/* Stats Section */
.stats {
    background: var(--bg-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: var(--bg-section);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(15, 76, 255, 0.2);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.base-chain-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 82, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 82, 255, 0.3);
    margin-top: 40px;
}

.base-chain-info span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Roadmap Section */
.roadmap {
    background: var(--bg-section);
}

.roadmap-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.roadmap-item {
    background: var(--bg-dark);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(15, 76, 255, 0.2);
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.roadmap-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-phase {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.roadmap-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.roadmap-desc {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Community Section */
.community {
    background: var(--bg-dark);
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-section);
    border-radius: 15px;
    border: 1px solid rgba(15, 76, 255, 0.2);
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.social-link.visible {
    opacity: 1;
    transform: translateY(0);
}

.social-link:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(15, 76, 255, 0.2);
}

.social-icon {
    font-size: 1.5rem;
}

.contract-address {
    text-align: center;
    padding: 30px;
    background: var(--bg-section);
    border-radius: 15px;
    border: 1px solid rgba(15, 76, 255, 0.2);
}

.contract-address p {
    margin-bottom: 10px;
    color: var(--text-gray);
}

.contract-address code {
    color: var(--accent-color);
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    padding: 10px 20px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 8px;
    display: inline-block;
}

/* Footer */
.footer {
    background: var(--bg-section);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(15, 76, 255, 0.2);
}

.footer p {
    color: var(--text-gray);
}

/* Animations */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
    from {
        transform: scale(0.8);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .portrait-container {
        width: 250px;
        height: 250px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .roadmap-items {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
        color: var(--text-light);
    }
    
    .portrait-container {
        width: 200px;
        height: 200px;
    }
}