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

html {
    scroll-behavior: smooth; /* Enable smooth scrolling */
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column-reverse; /* This creates the reverse scroll effect */
}

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

/* Hero Section - Bottom of page */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, rgba(46, 190, 108, 1) 0%, rgba(46, 190, 108, 0.8) 50%, rgba(46, 190, 108, 0.6) 100%);
    position: relative;
    overflow: hidden;
}

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

.hero-text {
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.scroll-arrow {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

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

/* Superhero Illustration */
.superhero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    position: relative;
}

.superhero-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.superhero-img:hover {
    transform: scale(1.05) rotate(2deg);
}

.superhero {
    position: relative;
    width: 200px;
    height: 300px;
    animation: float 3s ease-in-out infinite;
}

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

.superhero .head {
    width: 80px;
    height: 80px;
    background: rgba(46, 190, 108, 1);
    border-radius: 50%;
    position: relative;
    margin: 0 auto 10px;
    border: 3px solid rgba(46, 190, 108, 0.8);
}

.superhero .mask {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 30px;
    background: rgba(46, 190, 108, 0.6);
    border-radius: 15px;
}

.superhero .emblem {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: rgba(46, 190, 108, 0.6);
    border-radius: 50%;
    border: 2px solid rgba(46, 190, 108, 0.8);
}

.superhero .emblem::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: rgba(46, 190, 108, 1);
    border-radius: 50%;
}

.superhero .body {
    width: 100px;
    height: 150px;
    background: rgba(46, 190, 108, 1);
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
    border: 3px solid rgba(46, 190, 108, 0.8);
}

.superhero .chest-emblem {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: rgba(46, 190, 108, 0.6);
    border-radius: 50%;
    border: 2px solid rgba(46, 190, 108, 0.8);
}

.superhero .chest-emblem::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: rgba(46, 190, 108, 1);
    border-radius: 50%;
}

.superhero .cape {
    position: absolute;
    top: 0;
    right: -20px;
    width: 40px;
    height: 120px;
    background: rgba(46, 190, 108, 0.6);
    border-radius: 0 20px 20px 0;
    transform: rotate(5deg);
}

.lightning-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.lightning {
    position: absolute;
    width: 4px;
    height: 40px;
    background: linear-gradient(to bottom, #ffffff, rgba(46, 190, 108, 1));
    border-radius: 2px;
    animation: lightning 2s infinite;
}

.lightning:nth-child(1) {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.lightning:nth-child(2) {
    top: 60px;
    right: 30px;
    animation-delay: 0.7s;
}

.lightning:nth-child(3) {
    bottom: 40px;
    left: 50%;
    animation-delay: 1.4s;
}

@keyframes lightning {
    0%, 90%, 100% {
        opacity: 0;
        transform: scaleY(0);
    }
    5%, 85% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Contract Section */
.contract-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top: 2px solid rgba(46, 190, 108, 1);
}

.contract-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: rgba(46, 190, 108, 1);
    text-shadow: 0 0 20px rgba(46, 190, 108, 0.5);
}

.contract-address {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.contract-address input {
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid rgba(46, 190, 108, 1);
    border-radius: 10px;
    background: rgba(46, 190, 108, 0.1);
    color: #ffffff;
    min-width: 400px;
    text-align: center;
    font-family: 'Orbitron', monospace;
}

.contract-address button {
    padding: 15px 30px;
    background: linear-gradient(45deg, rgba(46, 190, 108, 1), rgba(46, 190, 108, 0.8));
    border: none;
    border-radius: 10px;
    color: #000000;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contract-address button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 190, 108, 0.4);
}

.contract-note {
    text-align: center;
    color: #888;
    font-style: italic;
}

.coming-soon-note {
    text-align: center;
    color: rgba(46, 190, 108, 1);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
    text-shadow: 0 0 10px rgba(46, 190, 108, 0.3);
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f1419 100%);
}

.story-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: rgba(46, 190, 108, 1);
    text-shadow: 0 0 20px rgba(46, 190, 108, 0.5);
}

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

.story-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.story-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.story-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

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

.superhero-standing {
    position: relative;
    width: 150px;
    height: 200px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.superhero-standing .head-standing {
    width: 60px;
    height: 60px;
    background: rgba(46, 190, 108, 1);
    border-radius: 50%;
    position: relative;
    margin: 0 auto 10px;
    border: 2px solid rgba(46, 190, 108, 0.8);
}

.superhero-standing .mask-standing {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 25px;
    background: rgba(46, 190, 108, 0.6);
    border-radius: 12px;
}

.superhero-standing .emblem-standing {
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background: rgba(46, 190, 108, 0.6);
    border-radius: 50%;
    border: 1px solid rgba(46, 190, 108, 0.8);
}

.superhero-standing .body-standing {
    width: 80px;
    height: 120px;
    background: rgba(46, 190, 108, 1);
    border-radius: 15px;
    position: relative;
    margin: 0 auto;
    border: 2px solid rgba(46, 190, 108, 0.8);
}

.superhero-standing .chest-emblem-standing {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 25px;
    background: rgba(46, 190, 108, 0.6);
    border-radius: 50%;
    border: 1px solid rgba(46, 190, 108, 0.8);
}

.superhero-standing .cape-standing {
    position: absolute;
    top: 0;
    right: -15px;
    width: 30px;
    height: 90px;
    background: rgba(46, 190, 108, 0.6);
    border-radius: 0 15px 15px 0;
    transform: rotate(3deg);
}

/* Social Section */
.social-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 100%);
}

.social-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: rgba(46, 190, 108, 1);
    text-shadow: 0 0 20px rgba(46, 190, 108, 0.5);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(46, 190, 108, 0.1), rgba(46, 190, 108, 0.05));
    border: 2px solid rgba(46, 190, 108, 1);
    border-radius: 20px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    min-width: 150px;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 190, 108, 0.3);
    background: linear-gradient(135deg, rgba(46, 190, 108, 0.2), rgba(46, 190, 108, 0.1));
}

.social-icon {
    font-size: 2.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.social-icon img {
    display: block;
}

.social-link span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Tokenomics Section */
.tokenomics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-bottom: 2px solid rgba(46, 190, 108, 1);
}

.tokenomics-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: rgba(46, 190, 108, 1);
    text-shadow: 0 0 20px rgba(46, 190, 108, 0.5);
}

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

.tokenomics-item {
    background: linear-gradient(135deg, rgba(46, 190, 108, 0.1), rgba(46, 190, 108, 0.05));
    border: 2px solid rgba(46, 190, 108, 1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.tokenomics-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 190, 108, 0.2);
}

.tokenomics-item h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: rgba(46, 190, 108, 1);
    margin-bottom: 15px;
}

.tokenomics-item p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .contract-address {
        flex-direction: column;
    }
    
    .contract-address input {
        min-width: 300px;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .contract-address input {
        min-width: 250px;
        font-size: 1rem;
    }
}
