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

:root {
    --base-blue: #0052FF;
    --base-blue-dark: #0039B3;
    --base-blue-light: #3375FF;
    --base-blue-lighter: #66A3FF;
    --base-blue-lightest: #CCE5FF;
    --white: #FFFFFF;
    --black: #000000;
    --gray-dark: #1A1A1A;
    --gray: #333333;
    --gray-light: #666666;
    --gradient-primary: linear-gradient(135deg, #0052FF 0%, #3375FF 50%, #66A3FF 100%);
    --gradient-secondary: linear-gradient(135deg, #0039B3 0%, #0052FF 100%);
    --shadow-glow: 0 0 30px rgba(0, 82, 255, 0.3);
    --shadow-glow-strong: 0 0 50px rgba(0, 82, 255, 0.5);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 82, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 10px;
    border: 2px solid var(--base-blue);
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow-strong);
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

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

.connect-wallet-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
}

.connect-wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.1s both;
    display: flex;
    justify-content: center;
}

.main-logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    border: 4px solid var(--base-blue);
    box-shadow: var(--shadow-glow-strong);
    transition: all 0.3s ease;
    background: rgba(0, 82, 255, 0.1);
    padding: 10px;
}

.main-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(0, 82, 255, 0.8), 0 0 100px rgba(0, 82, 255, 0.4);
    border-color: var(--base-blue-light);
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--base-blue-lighter);
    margin-bottom: 1rem;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--base-blue);
    border: 2px solid var(--base-blue);
}

.btn-secondary:hover {
    background: var(--base-blue);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

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

.hero-video {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1.2s both;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.twitter-embed {
    width: 100% !important;
    max-width: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
    background: transparent;
}

.twitter-embed:hover {
    box-shadow: var(--shadow-glow-strong);
    transform: translateY(-5px);
}

@media (max-width: 600px) {
    .twitter-embed {
        width: 100% !important;
        max-width: 100%;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--base-blue);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--base-blue);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about {
    background: linear-gradient(180deg, #f5f5f5 0%, var(--white) 100%);
}

.about-intro {
    font-size: 1.2rem;
    color: var(--gray-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(0, 82, 255, 0.05);
    border: 1px solid rgba(0, 82, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--base-blue);
    box-shadow: var(--shadow-glow);
    background: rgba(0, 82, 255, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--base-blue-light);
}

.feature-card p {
    color: var(--gray-light);
    line-height: 1.6;
}

/* Contract Section */
.contract-section {
    background: var(--white);
}

.contract-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 82, 255, 0.05);
    border: 2px solid var(--base-blue);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-glow);
}

.contract-label {
    font-size: 1.2rem;
    color: var(--base-blue-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contract-address-wrapper {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contract-address {
    flex: 1;
    background: rgba(0, 82, 255, 0.05);
    border: 1px solid rgba(0, 82, 255, 0.3);
    border-radius: 10px;
    padding: 1rem;
    color: var(--black);
    font-family: 'Courier New', monospace;
    font-size: 1rem;
}

.copy-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-glow);
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
}

.copy-btn.copied {
    background: #00FF00;
}

.contract-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contract-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--base-blue-light);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--base-blue);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contract-link:hover {
    background: var(--base-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Tokenomics Section */
.tokenomics {
    background: linear-gradient(180deg, var(--white) 0%, #f5f5f5 100%);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.chart-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chart-item {
    background: rgba(0, 82, 255, 0.05);
    border: 1px solid rgba(0, 82, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.chart-item:hover {
    border-color: var(--base-blue);
    box-shadow: var(--shadow-glow);
}

.chart-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.2;
    transition: width 1s ease;
    width: 0;
}

.chart-item.animated::before {
    width: var(--chart-width);
}

.chart-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.chart-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--base-blue-light);
    position: relative;
    z-index: 1;
}

.tokenomics-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    background: rgba(0, 82, 255, 0.05);
    border: 1px solid rgba(0, 82, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    border-color: var(--base-blue);
    box-shadow: var(--shadow-glow);
    transform: translateX(10px);
}

.detail-label {
    color: var(--gray-light);
    font-weight: 500;
}

.detail-value {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--base-blue-light);
}

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

.roadmap-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 2rem;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--base-blue);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 20px var(--base-blue);
}

.timeline-content {
    background: rgba(0, 82, 255, 0.05);
    border: 1px solid rgba(0, 82, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--base-blue);
    box-shadow: var(--shadow-glow);
    transform: translateX(10px);
}

.timeline-phase {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--base-blue-light);
}

.timeline-content ul {
    list-style: none;
    padding-left: 0;
}

.timeline-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-light);
}

.timeline-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--base-blue);
    font-weight: bold;
}

/* Social Section */
.social {
    background: linear-gradient(180deg, #f5f5f5 0%, var(--white) 100%);
}

.social-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(0, 82, 255, 0.05);
    border: 1px solid rgba(0, 82, 255, 0.2);
    border-radius: 20px;
    text-decoration: none;
    color: var(--black);
    transition: all 0.3s ease;
    min-width: 150px;
}

.social-link:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--base-blue);
    box-shadow: var(--shadow-glow);
    background: rgba(0, 82, 255, 0.1);
}

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

.social-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    color: var(--base-blue-light);
}

/* Footer */
.footer {
    background: #f5f5f5;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(0, 82, 255, 0.2);
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--gray-light);
    margin-bottom: 1rem;
}

.footer-disclaimer {
    color: var(--gray-light);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .tokenomics-content {
        grid-template-columns: 1fr;
    }

    .contract-address-wrapper {
        flex-direction: column;
    }

    .roadmap-timeline {
        padding-left: 1rem;
    }

    .timeline-item {
        padding-left: 2rem;
    }
}

