:root {
    --primary-color: #00ff00;
    --primary-dark: #008000;
    --secondary-color: #111111;
    --text-color: #ffffff;
    --accent-color: #00ff4c;
    --background-dark: #000000;
    --card-background: rgba(17, 17, 17, 0.9);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    --gradient-glow: linear-gradient(45deg, rgba(0, 255, 0, 0.1) 0%, rgba(0, 255, 0, 0) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: var(--background-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.wrapper {
    position: relative;
    min-height: 100vh;
    background: var(--background-dark);
    overflow-x: hidden;
}

/* Animated Candlestick Background */
.candlestick-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    opacity: 0.2;
}

.candlestick {
    position: absolute;
    bottom: -100px;
    width: 15px;
    background: linear-gradient(to top, 
        rgba(0, 255, 0, 0.7),
        rgba(0, 255, 0, 0.3)
    );
    border-radius: 2px;
    transform-origin: bottom;
    animation: candleRise 4s ease-out forwards;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.candlestick::before,
.candlestick::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 15px;
    background: var(--primary-color);
    transform: translateX(-50%);
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.candlestick::before {
    top: 0;
}

.candlestick::after {
    bottom: 0;
}

@keyframes candleRise {
    0% {
        height: 0;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        height: var(--candle-height);
        opacity: 0;
    }
}

/* Animated Background */
.wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, 
        rgba(0, 255, 0, 0.05) 0%,
        rgba(0, 255, 0, 0.02) 25%,
        rgba(0, 0, 0, 0.05) 50%,
        rgba(0, 255, 0, 0.02) 75%,
        rgba(0, 255, 0, 0.05) 100%
    );
    animation: gradientBG 15s ease infinite;
    background-size: 400% 400%;
    z-index: -1;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Animated lines in background */
.bg-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.bg-line {
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    background: rgba(0, 255, 0, 0.1);
    animation: lineMove 3s linear infinite;
}

@keyframes lineMove {
    0% { transform: translateY(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
}

/* Matrix Background */
.matrix-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.9);
}

/* Particles Background */
#particles-js,
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
    background: transparent;
}

#particles-js.visible {
    opacity: 0.8;
}

/* Ticker */
.ticker-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--primary-color);
    overflow: hidden;
    z-index: 1001;
}

.ticker {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    align-items: center;
    animation: ticker 20s linear infinite;
    padding-right: 50px; /* Add spacing between iterations */
    white-space: nowrap;
}

.ticker-item {
    display: inline-block;
    padding: 0 2rem;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
}

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

/* Header */
.main-header {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

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

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

.twitter-button {
    background: #1DA1F2;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.twitter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.3);
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    animation: fadeInDown 1s ease-out forwards;
}

.highlight {
    color: var(--primary-color);
    display: block;
    font-size: 1.8rem;
    margin-top: 1rem;
    animation: glow 2s ease-in-out infinite;
}

.hero-text {
    margin: 3rem 0;
}

.main-quote {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.5s forwards;
    opacity: 0;
}

.sub-quote {
    font-size: 1.1rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 1s forwards;
    opacity: 0;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    background: var(--primary-color);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 2rem;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 1.5s forwards;
    opacity: 0;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 0, 0.2);
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Animations */
@keyframes glow {
    0%, 100% { text-shadow: 0 0 20px rgba(0, 255, 0, 0.5); }
    50% { text-shadow: 0 0 30px rgba(0, 255, 0, 0.8), 0 0 40px rgba(0, 255, 0, 0.3); }
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Menu Button */
.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    z-index: 1002;
}

.mobile-menu:hover {
    transform: scale(1.1);
}

/* Explore Button */
.explore-button {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 10;
}

.explore-button-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
}

.explore-button-text {
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.explore-button-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.explore-button-icon::before,
.explore-button-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 12px;
    height: 2px;
    background: var(--primary-color);
}

.explore-button-icon::before {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.explore-button-icon::after {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.explore-button:hover {
    transform: translateX(-50%) translateY(-5px);
    background: rgba(0, 255, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.2);
}

/* Action Buttons Container */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 100px;
    align-items: center;
    position: relative;
    z-index: 5;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-links {
        display: flex !important;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: auto;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--primary-color);
        text-align: center;
        z-index: 1001;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu {
        display: block;
        background: none;
        border: none;
        color: var(--primary-color);
        font-size: 24px;
        cursor: pointer;
        padding: 0.5rem;
        transition: all 0.3s ease;
        z-index: 1002;
    }

    .mobile-menu:hover {
        transform: scale(1.1);
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
        color: var(--text-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        color: var(--primary-color);
        transform: translateX(10px);
    }

    .main-actions {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
    }

    .explore-button {
        bottom: 20px;
        padding: 0.8rem 1.5rem;
    }

    .explore-button-text {
        font-size: 1rem;
    }

    .action-buttons {
        margin-bottom: 120px;
    }
}

/* Tablet and Small Desktop Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .action-buttons {
        margin-bottom: 120px;
    }

    .explore-button {
        bottom: 30px;
    }
}

/* Vision Section */
.vision {
    position: relative;
    z-index: 1;
    padding: 4rem 1rem;
    background: rgba(0, 0, 0, 0.8);
}

.vision-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.vision-item {
    background: var(--card-background);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.vision-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
}

.vision-item h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.vision-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.vision-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Movement Section */
.movement {
    position: relative;
    z-index: 1;
    padding: 2rem 1rem;
    text-align: center;
}

.movement-content {
    max-width: 1200px;
    margin: 0 auto;
}

.movement h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.movement .manifesto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 0;
    padding: 0;
    align-items: flex-start;
    grid-auto-rows: max-content;
    height: auto !important;
    overflow: visible !important;
}

.movement .manifesto-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: flex-start;
}

.movement .manifesto-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.movement .manifesto-item .large-text {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #fff;
    line-height: 1.2;
}

.movement .manifesto-item p {
    font-size: 1rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media screen and (max-width: 768px) {
    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        padding: 1rem;
    }

    .center-hero {
        order: 1;
    }

    .twitter-feed {
        order: 2;
    }

    .manifesto {
        order: 3;
    }

    .vision, .movement, .community {
        padding: 2rem 1rem;
    }

    .movement .manifesto {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .movement .manifesto-item {
        width: 100%;
        min-height: 0;
    }
}

/* Community Section */
.community {
    position: relative;
    z-index: 1;
    padding: 4rem 1rem;
    background: rgba(0, 0, 0, 0.8);
}

.community-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.community-text {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-background);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.community-text:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.1);
}

.community-text.animate {
    opacity: 1;
    transform: translateY(0);
}

.twitter-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #1DA1F2;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.twitter-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(29, 161, 242, 0.3);
}

/* Footer */
.main-footer {
    background: rgba(0, 0, 0, 0.95);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(0, 255, 0, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-main {
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 2rem;
}

.footer-motto {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.motto-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.footer-social {
    margin: 2rem 0;
}

.twitter-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: #1DA1F2;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.twitter-link:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Section Headers */
section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    animation: slideInLeft 1s ease-out forwards;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vision-item,
.manifesto-item,
.community-text {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    section h2 {
        font-size: 2.5rem;
    }

    .vision-grid,
    .manifesto {
        grid-template-columns: 1fr;
    }

    .vision-item,
    .manifesto-item {
        padding: 2rem;
    }

    .large-text {
        font-size: 1.8rem;
    }

    .community-text {
        padding: 1.5rem;
    }

    .twitter-cta {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .footer-motto {
        gap: 0.3rem;
    }

    .motto-text {
        font-size: 1.2rem;
    }
}

/* Add smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Ensure proper spacing between sections */
section {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Add hover effects for interactive elements */
.vision-item,
.manifesto-item,
.community-text,
.twitter-cta,
.twitter-link {
    cursor: pointer;
}

/* Floating Animation for Icons */
.vision-item i, .manifesto-item i {
    animation: float 3s ease-in-out infinite;
}

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

/* Pulse Animation for CTA */
.cta-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
    }
}

/* Gradient Text Effect */
@keyframes gradientText {
    0%, 100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(30deg);
    }
}

/* Music Control */
.music-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: var(--background-dark);
    cursor: pointer;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.music-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

.music-toggle.muted {
    opacity: 0.5;
}

/* Ticker Logo */
.ticker-logo {
    height: 30px;
    margin: 0 10px;
    vertical-align: middle;
}

/* Floating Particles */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
    background: transparent;
}

.floating-particles.visible {
    opacity: 0.6;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.3;
    animation: float-up var(--float-duration) linear infinite;
    box-shadow: 0 0 10px var(--primary-color);
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    20% {
        opacity: 0.3;
    }
    80% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-20vh) scale(1);
        opacity: 0;
    }
}

/* Contract and Buy Buttons */
.contract-button, .buy-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.contract-button {
    background: var(--primary-color);
    color: var(--background-dark);
}

.buy-button {
    background: var(--primary-color);
    color: var(--background-dark);
}

.contract-button:hover, .buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
    filter: brightness(1.1);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Copy Toast */
.copy-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--primary-color);
    color: var(--background-dark);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
}

.copy-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Update Twitter Button */
.twitter-button {
    background: var(--primary-color) !important;
    color: var(--background-dark) !important;
}

.twitter-link {
    color: var(--primary-color) !important;
}

/* Spinning Footer Logo */
.spinning-logo {
    height: 60px;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contract-button, .buy-button {
        width: 100%;
        justify-content: center;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links .contract-button,
    .nav-links .buy-button {
        width: 100%;
        text-align: center;
    }

    .action-buttons {
        margin-bottom: 120px; /* Add space for explore button */
    }

    .explore-button {
        bottom: 20px; /* Move up on mobile */
        z-index: 11; /* Ensure it's above other elements */
        background: rgba(0, 0, 0, 0.8); /* Make background more visible */
        padding: 0.8rem 1.5rem; /* Smaller padding on mobile */
    }
}

/* Action Buttons */
.main-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    width: 100%;
}

.contract-section {
    background: rgba(0, 255, 0, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 0, 0.2);
    width: 100%;
    max-width: 600px;
}

.contract-display {
    margin-bottom: 1rem;
    text-align: center;
}

.contract-label {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.contract-address {
    display: block;
    font-family: monospace;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem;
    border-radius: 8px;
    word-break: break-all;
}

.action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 200px;
}

.contract-button {
    background: var(--primary-color);
    color: var(--background-dark);
    width: 100%;
}

.buy-button {
    background: var(--primary-color);
    color: var(--background-dark);
}

.join-button {
    background: var(--primary-color);
    color: var(--background-dark);
}

.action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 0, 0.2);
    filter: brightness(1.1);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: auto;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--primary-color);
        text-align: center;
        z-index: 1001;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu {
        display: block;
        background: none;
        border: none;
        color: var(--primary-color);
        font-size: 24px;
        cursor: pointer;
        padding: 0.5rem;
        transition: all 0.3s ease;
        z-index: 1002;
    }

    .mobile-menu:hover {
        transform: scale(1.1);
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
        color: var(--text-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        color: var(--primary-color);
        transform: translateX(10px);
    }

    .main-actions {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
    }

    .contract-section {
        padding: 1rem;
    }

    .contract-address {
        font-size: 0.9rem;
    }
}

/* Landing Screen Styles */
.landing-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.landing-content {
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.landing-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-family: 'Courier New', monospace;
}

.landing-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.landing-btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s;
}

.landing-btn:hover {
    transform: scale(1.05);
}

.yes-btn {
    background-color: #4CAF50;
    color: white;
}

.no-btn {
    background-color: #f44336;
    color: white;
}

.hidden {
    display: none !important;
}

/* Waifu image inside Hero */
.hero-waifu-image {
    width: clamp(120px, 22vw, 240px);
    height: auto;
    margin: 2rem auto 1.5rem;
    pointer-events: none;
    animation: fadeInDown 1s ease-out forwards;
}

/* Mobile adjustments for Hero section */
@media (max-width: 768px) {
    .hero {
        padding: 7rem 1rem 2rem;
        min-height: auto;
    }

    .hero-content {
        margin-top: 1rem; /* minimal spacing */
    }

    .hero h1 {
        font-size: 2rem;
    }

    .highlight {
        font-size: 1.3rem;
    }

    .main-quote {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    .sub-quote {
        font-size: 0.9rem;
    }

    .hero-waifu-image {
        width: 40%;
    }

    .hero .action-button,
    .hero .contract-button,
    .hero .buy-button,
    .hero .join-button {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

.landing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    height: 100vh;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin-bottom: 2rem;
}

.onboard-video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.mute-toggle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mute-toggle:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .video-container {
        max-width: 90%;
        margin-bottom: 1rem;
    }

    .onboard-video {
        border-radius: 8px;
    }

    .mute-toggle {
        width: 32px;
        height: 32px;
        bottom: 12px;
        right: 12px;
    }

    .landing-container {
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .video-container {
        max-width: 95%;
    }

    .mute-toggle {
        width: 28px;
        height: 28px;
        bottom: 8px;
        right: 8px;
    }
}

.hero-grid {
    display: grid;
    grid-template-areas: 
        "manifesto center twitter";
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Twitter Feed Styles */
.twitter-feed {
    height: 800px;
    overflow: hidden;
}

.twitter-container {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
}

.feed-content {
    height: 800px;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feed-content .twitter-tweet {
    margin: 0 !important;
    width: 100% !important;
}

.feed-content .twitter-tweet iframe {
    border: none !important;
    background: transparent !important;
    width: 100% !important;
    margin: 0 !important;
}

/* Twitter Timeline Styles */
.twitter-timeline {
    width: 100% !important;
    height: 800px !important;
}

/* Hide Twitter's default border and background */
.twitter-timeline iframe {
    border: none !important;
    background: transparent !important;
}

/* Ensure proper spacing in the feed */
.feed-header {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Manifesto Styles */
.manifesto {
    height: 800px;
    overflow-y: auto;
    padding-right: 1rem;
}

.manifesto-content {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
}

.manifesto-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.manifesto-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.manifesto-divider {
    margin: 2rem 0;
    color: #666;
    text-align: center;
}

.manifesto-final {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 2rem;
}

/* Center Hero Styles */
.center-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "center twitter"
            "manifesto manifesto";
    }

    .center-hero {
        grid-area: center;
    }

    .twitter-feed {
        grid-area: twitter;
    }

    .manifesto {
        grid-area: manifesto;
        height: auto;
        max-height: 600px;
    }
}

@media screen and (max-width: 768px) {
    .hero-grid {
        grid-template-areas: 
            "center"
            "twitter"
            "manifesto";
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }

    .center-hero {
        grid-area: center;
        margin-bottom: 2rem;
    }

    .twitter-feed {
        grid-area: twitter;
        margin-bottom: 2rem;
    }

    .manifesto {
        grid-area: manifesto;
        margin-bottom: 2rem;
    }

    .manifesto-content {
        padding: 1rem;
    }
}

/* Custom Scrollbar for Manifesto */
.manifesto::-webkit-scrollbar {
    width: 8px;
}

.manifesto::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.manifesto::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.manifesto::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Custom Feed Styles */
.custom-feed {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1rem;
    height: 100%;
    overflow-y: auto;
}

.feed-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feed-header i {
    color: #1DA1F2;
    font-size: 1.5rem;
}

.feed-header h3 {
    color: #fff;
    margin: 0;
    font-size: 1.2rem;
}

.feed-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feed-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 0.5rem;
    position: relative;
    transition: transform 0.2s ease, background 0.2s ease;
}

.feed-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.feed-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 100%;
    width: 2px;
    height: 1rem;
    background: rgba(255, 255, 255, 0.1);
}

.feed-item-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feed-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.feed-item-info {
    display: flex;
    flex-direction: column;
}

.feed-name {
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
}

.feed-handle {
    color: #8899A6;
    font-size: 0.9rem;
}

.feed-text {
    color: #fff;
    margin: 0.75rem 0;
    line-height: 1.6;
    font-size: 1.05rem;
}

.feed-actions {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: flex-end;
}

.feed-link {
    color: #1DA1F2;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(29, 161, 242, 0.1);
    transition: background 0.2s ease;
}

.feed-link:hover {
    background: rgba(29, 161, 242, 0.2);
    text-decoration: none;
}

/* Custom Scrollbar for Feed */
.custom-feed::-webkit-scrollbar {
    width: 8px;
}

.custom-feed::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.custom-feed::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.custom-feed::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Sections where particles should be visible */
.hero #particles-js,
.hero .floating-particles,
.community #particles-js,
.community .floating-particles,
.main-footer #particles-js,
.main-footer .floating-particles {
    opacity: 0.8;
}

/* Hide particles in other sections */
.vision #particles-js,
.vision .floating-particles,
.movement #particles-js,
.movement .floating-particles {
    opacity: 0;
}

#particles-js canvas,
#floatingParticles canvas {
    width: 100% !important;
    height: 100% !important;
}

@media screen and (max-width: 768px) {
    /* Tighten container padding to avoid slight overflow */
    .twitter-container,
    .feed-content {
        padding: 0 !important;
    }

    .twitter-container,
    .feed-content,
    .feed-content .twitter-tweet,
    .feed-content iframe {
        box-sizing: border-box;
    }

    /* Ensure Twitter embeds fit within the viewport */
    .twitter-feed {
        overflow-x: hidden;
    }

    .feed-content {
        padding: 0.5rem;
    }

    .feed-content .twitter-tweet,
    .feed-content .twitter-tweet iframe {
        width: 100% !important;
        max-width: 100% !important;
    }

    .feed-content iframe {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
} 