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

:root {
    /* TON Gradient Colors - Softer palette */
    --solana-purple: #7B68EE;
    --solana-blue: #4FC3F7;
    --solana-green: #26A69A;
    --solana-pink: #BA68C8;
    --dark-bg: #0f0f1e;
    --darker-bg: #0a0a14;
    --card-bg: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #b4b4c8;
    --accent-1: #ff6b6b;
    --accent-2: #4ecdc4;
    --accent-3: #ffe66d;
}

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

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--solana-purple);
}

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

.logo-link {
    text-decoration: none;
    cursor: pointer;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--solana-purple), var(--solana-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.3s ease;
}

.logo-link:hover .logo-text {
    opacity: 0.8;
}

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

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

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

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

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

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

.mobile-menu-toggle {
    display: none !important;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.social-link {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
}

.social-link:hover {
    transform: scale(1.2) rotate(10deg);
}

.social-icon {
    width: 24px;
    height: 24px;
    filter: brightness(1);
    transition: filter 0.3s;
}

.social-link:hover .social-icon {
    filter: brightness(1.3) drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a35 30%, #1e1e3a 70%, #0f0f1e 100%);
}

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

.floating-meme {
    position: absolute;
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: float 20s infinite ease-in-out;
    opacity: 0.4;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.meme-1 { top: 8%; left: 12%; animation-delay: 0s; }
.meme-2 { top: 18%; right: 8%; animation-delay: 2.5s; }
.meme-3 { bottom: 25%; left: 18%; animation-delay: 4.2s; }
.meme-4 { bottom: 12%; right: 15%; animation-delay: 6.8s; }
.meme-5 { top: 45%; left: 7%; animation-delay: 1.3s; }
.meme-6 { top: 28%; right: 22%; animation-delay: 3.7s; }
.meme-7 { bottom: 38%; left: 25%; animation-delay: 5.1s; }
.meme-8 { top: 65%; right: 12%; animation-delay: 7.4s; }
.meme-9 { top: 35%; left: 45%; animation-delay: 1.8s; }
.meme-10 { bottom: 50%; right: 28%; animation-delay: 4.6s; }
.meme-11 { top: 75%; left: 35%; animation-delay: 6.2s; }
.meme-12 { bottom: 8%; left: 50%; animation-delay: 8.5s; }
.meme-13 { top: 52%; right: 5%; animation-delay: 2.1s; }
.meme-14 { bottom: 65%; left: 60%; animation-delay: 7.8s; }
.meme-15 { top: 12%; left: 70%; animation-delay: 3.3s; }
.meme-16 { bottom: 32%; right: 40%; animation-delay: 5.9s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(20px, 30px) rotate(3deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 100px 20px 50px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.glitch {
    background: linear-gradient(135deg, var(--solana-purple), var(--solana-blue), var(--solana-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glitch 3s infinite;
    display: inline-block;
}

@keyframes glitch {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-2px, 2px); }
    94% { transform: translate(2px, -2px); }
    96% { transform: translate(-2px, -2px); }
    98% { transform: translate(2px, 2px); }
}

.hero-dots {
    color: var(--solana-blue);
    font-size: 2rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    width: 100%;
    padding: 0 10px;
}

.hero-contract {
    max-width: 600px;
    margin: 0 auto 50px;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-contract label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-contract-address {
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.2), rgba(79, 195, 247, 0.2));
    border: 2px solid var(--solana-purple);
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-contract-address::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.hero-contract-address:hover::before {
    left: 100%;
}

.hero-contract-address:hover {
    border-color: var(--solana-blue);
    box-shadow: 0 0 30px rgba(79, 195, 247, 0.4);
    transform: translateY(-2px);
}

.hero-contract-address:active {
    transform: translateY(0);
    box-shadow: 0 0 20px rgba(79, 195, 247, 0.6);
}

.contract-text {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: var(--text-primary);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copy-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.hero-contract-address:hover .copy-icon {
    transform: scale(1.2);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--solana-purple), var(--solana-pink));
    color: white;
    box-shadow: 0 0 30px rgba(123, 104, 238, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(123, 104, 238, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--solana-blue), var(--solana-green));
    color: white;
    box-shadow: 0 0 30px rgba(79, 195, 247, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(79, 195, 247, 0.6);
}

.btn-tertiary {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    color: var(--dark-bg);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.4);
    font-weight: 700;
}

.btn-tertiary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(255, 230, 109, 0.6);
}

.btn-dual {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    color: white;
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.btn-dual:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(255, 230, 109, 0.6);
}

.btn-dual-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-dual-label {
    font-weight: 700;
    color: var(--dark-bg);
    white-space: nowrap;
}

.btn-dual-separator {
    color: rgba(0, 0, 0, 0.3);
    font-weight: 300;
    font-size: 1.5rem;
}

.btn-dual-part {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--dark-bg);
    font-weight: 700;
    transition: all 0.2s;
    padding: 5px 10px;
    border-radius: 20px;
    position: relative;
}

.btn-dual-part:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.btn-dual-maestro:hover {
    background: rgba(123, 104, 238, 0.3);
}

.btn-dual-dtrade:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-icon {
    font-size: 1.3rem;
}

.btn-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(1.1);
}

.btn-dual-maestro .btn-icon-img {
    width: 22px;
    height: 22px;
}

.btn-dual-dtrade .btn-icon-img {
    width: 32px;
    height: 32px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--solana-purple), var(--solana-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

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

section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.title-icon {
    font-size: 2.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

.mega-text {
    font-family: 'Comic Neue', cursive;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lore {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1a1a30 50%, var(--dark-bg) 100%);
}

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

.lore-story {
    background: rgba(26, 26, 46, 0.6);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--solana-purple);
}

.lore-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.lore-text-plain {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.lore-text-logo {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.lore-inline-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 2px;
}

.lore-text.highlight {
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.2), rgba(20, 241, 149, 0.2));
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--solana-blue);
    color: var(--text-primary);
    font-weight: 600;
}

.lore-characters {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.character-card {
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.1), rgba(20, 241, 149, 0.1));
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.character-card:hover {
    border-color: var(--solana-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(20, 241, 149, 0.3);
}

.character-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.character-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.character-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.character-trait {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

.tokens {
    background: var(--darker-bg);
}

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

.token-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.4));
    padding: 30px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    color: var(--text-primary);
}

.token-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.4), rgba(79, 195, 247, 0.4), rgba(38, 166, 154, 0.4));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.token-card:hover::before {
    opacity: 1;
}

.token-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(123, 104, 238, 0.3);
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(26, 26, 46, 0.9));
    border: 2px solid rgba(123, 104, 238, 0.5);
}

.token-card:hover .token-tagline,
.token-card:hover .token-bio {
    color: var(--text-primary);
}

.token-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.token-logo {
    font-size: 4rem;
}

.token-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.token-badge {
    background: var(--solana-purple);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.token-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.token-tagline {
    font-style: italic;
    color: var(--solana-blue);
    margin-bottom: 15px;
    transition: color 0.3s;
}

.token-bio {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    transition: color 0.3s;
}

.token-contract {
    margin-bottom: 20px;
}

.token-contract label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.contract-address {
    display: flex;
    gap: 10px;
}

.contract-address input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--solana-purple);
    padding: 10px;
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
}

.copy-btn {
    background: var(--solana-purple);
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.copy-btn:hover {
    background: var(--solana-pink);
    transform: scale(1.1);
}

.token-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.token-link {
    flex: 1;
    min-width: 100px;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.token-link.twitter {
    background: #1DA1F2;
    color: white;
}

.token-link.telegram {
    background: #0088cc;
    color: white;
}

.token-link.website {
    background: var(--solana-green);
    color: var(--dark-bg);
}

.token-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.tokenomics {
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

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

.tokenomics-card {
    background: rgba(26, 26, 46, 0.6);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--solana-purple);
    transition: all 0.3s;
}

.tokenomics-card:hover {
    transform: translateY(-10px);
    border-color: var(--solana-blue);
    box-shadow: 0 20px 40px rgba(20, 241, 149, 0.3);
}

.tokenomics-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.tokenomics-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.tokenomics-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.vision-infographic {
    position: relative;
    margin: 80px 0;
    min-height: 400px;
}

.vision-center {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.vision-core {
    background: linear-gradient(135deg, var(--solana-purple), var(--solana-pink));
    padding: 40px;
    border-radius: 50%;
    width: 250px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(153, 69, 255, 0.6);
    animation: pulse 3s infinite;
}

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

.core-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
}

.core-icons {
    display: flex;
    gap: 10px;
    font-size: 2rem;
}

.core-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    animation: float 4s infinite ease-in-out;
}

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

.vision-branch {
    text-align: center;
}

.branch-node {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: float 4s infinite ease-in-out;
}

.branch-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.manifesto {
    background: rgba(26, 26, 46, 0.6);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--solana-blue);
    margin-top: 60px;
}

.manifesto h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--solana-purple), var(--solana-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.manifesto ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.manifesto li {
    font-size: 1.2rem;
    padding: 15px;
    margin-bottom: 10px;
    background: rgba(20, 241, 149, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--solana-green);
}

.roadmap {
    background: var(--dark-bg);
}

.roadmap-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--solana-purple), var(--solana-blue), var(--solana-green));
    transform: translateX(-50%);
}

.roadmap-phase {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    margin-bottom: 60px;
    align-items: start;
}

.phase-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 1;
}

.phase-number {
    background: var(--solana-purple);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 0 30px rgba(153, 69, 255, 0.6);
}

.phase-icon {
    font-size: 2.5rem;
}

.phase-content {
    background: rgba(26, 26, 46, 0.6);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid var(--solana-purple);
}

.phase-1 .phase-content { grid-column: 3; }
.phase-2 .phase-content { grid-column: 1; }
.phase-3 .phase-content { grid-column: 3; }
.phase-4 .phase-content { grid-column: 1; }

.phase-2 .phase-marker { order: 2; }
.phase-4 .phase-marker { order: 2; }

.phase-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.phase-subtitle {
    color: var(--solana-blue);
    font-style: italic;
    margin-bottom: 20px;
}

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

.phase-tasks li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(153, 69, 255, 0.2);
    color: var(--text-secondary);
}

.phase-tasks li:last-child {
    border-bottom: none;
}

.roadmap-footer {
    text-align: center;
    margin-top: 60px;
    padding: 20px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 10px;
    border: 2px dashed var(--accent-1);
}

.roadmap-footer p {
    color: var(--text-secondary);
    font-style: italic;
}

.community {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--solana-purple), var(--solana-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.meme-showcase {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.meme-showcase h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 30px;
}

.meme-carousel {
    position: relative;
    margin-bottom: 20px;
}

.meme-item {
    background: rgba(26, 26, 46, 0.6);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid var(--solana-purple);
}

.meme-placeholder {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meme-content {
    text-align: center;
}

.meme-text-top, .meme-text-bottom {
    font-family: 'Comic Neue', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 20px 0;
}

.meme-emoji {
    font-size: 5rem;
    margin: 30px 0;
}

.meme-author {
    text-align: right;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 15px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.carousel-btn {
    background: var(--solana-purple);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: var(--solana-pink);
    transform: scale(1.1);
}

.community-cta {
    text-align: center;
    margin: 60px 0;
}

.community-cta h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.community-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.community-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.community-btn.discord {
    background: #5865F2;
    color: white;
}

.community-btn.telegram {
    background: #0088cc;
    color: white;
}

.community-btn.twitter {
    background: #1DA1F2;
    color: white;
}

.community-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-emoji {
    font-size: 1.5rem;
}

.btn-icon-svg {
    width: 24px;
    height: 24px;
    filter: brightness(1.2);
}

.meme-wall {
    margin-top: 60px;
}

.meme-wall h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
}

.meme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.mini-meme {
    background: rgba(26, 26, 46, 0.6);
    border: 2px solid var(--solana-purple);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.mini-meme:hover {
    transform: rotate(5deg) scale(1.05);
    border-color: var(--solana-blue);
    box-shadow: 0 10px 30px rgba(20, 241, 149, 0.4);
}

.mini-meme-content {
    font-family: 'Comic Neue', cursive;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.8;
}

.mini-meme-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 5px;
}

.mini-meme-text {
    font-family: 'Comic Neue', cursive;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 10px;
}

.footer {
    background: var(--darker-bg);
    border-top: 2px solid var(--solana-purple);
    padding: 30px 0;
}

.footer-easter-egg {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.1), rgba(79, 195, 247, 0.1));
    border-radius: 15px;
    border: 2px dashed var(--solana-blue);
}

.footer-easter-egg p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.konami-hint {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: var(--solana-blue);
    font-size: 1.1rem;
    letter-spacing: 2px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { 
        text-shadow: 0 0 5px rgba(79, 195, 247, 0.5);
    }
    50% { 
        text-shadow: 0 0 20px rgba(79, 195, 247, 0.8), 0 0 30px rgba(79, 195, 247, 0.6);
    }
}

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

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--solana-blue);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-icons {
    display: flex;
    gap: 15px;
    font-size: 2rem;
}

.footer-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s;
}

.footer-icon-img:hover {
    transform: scale(1.2) translateY(-5px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--solana-blue);
    padding-left: 5px;
}

.footer-disclaimer {
    background: rgba(255, 107, 107, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px dashed var(--accent-1);
    margin-bottom: 30px;
}

.footer-disclaimer p {
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
}

.footer-bottom p {
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
        gap: 5px;
    }
    
    .lore-content {
        grid-template-columns: 1fr;
    }
    
    .token-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-branches {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 10px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    .nav-socials {
        display: flex;
        gap: 12px;
        order: 1;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
    }
    
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        order: 2;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        order: 3;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        text-align: center;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        z-index: 1000;
        border-bottom: 2px solid var(--solana-purple);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(123, 104, 238, 0.2);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .hero {
        padding: 80px 20px 50px;
    }
    
    .hero-title {
        font-size: 2rem;
        gap: 5px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .btn-dual {
        width: 100%;
        flex-direction: column;
        gap: 6px;
        padding: 10px 20px;
    }
    
    .btn-dual-row {
        display: flex;
        width: 100%;
        gap: 10px;
        justify-content: center;
    }
    
    .btn-dual-label {
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
        display: block;
    }
    
    .btn-dual-separator {
        font-size: 1.2rem;
    }
    
    .btn-dual-part {
        font-size: 0.8rem;
        flex: 1;
        justify-content: center;
        padding: 6px 12px;
    }
    
    .hero-contract {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .hero-contract-address {
        padding: 12px 12px;
        gap: 10px;
    }
    
    .contract-text {
        font-size: 0.7rem;
        min-width: 0;
    }
    
    .copy-icon {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .floating-meme {
        width: 50px;
        height: 50px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        gap: 10px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .lore-story {
        padding: 25px;
    }
    
    .lore-text {
        font-size: 1rem;
    }
    
    .character-card {
        padding: 15px;
    }
    
    .character-icon-img {
        width: 60px;
        height: 60px;
    }
    
    .token-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .token-card {
        padding: 20px;
    }
    
    .token-logo-img {
        width: 60px;
        height: 60px;
    }
    
    .token-name {
        font-size: 1.5rem;
    }
    
    .contract-address input {
        font-size: 0.75rem;
    }
    
    .tokenomics-card {
        padding: 25px;
    }
    
    .vision-core {
        width: 200px;
        height: 200px;
        padding: 30px;
    }
    
    .core-text {
        font-size: 1rem;
    }
    
    .core-icon-img {
        width: 30px;
        height: 30px;
    }
    
    .vision-branches {
        grid-template-columns: 1fr;
    }
    
    .community-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .community-links {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    
    .community-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer {
        padding: 20px 0;
    }
    
    .footer-easter-egg {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .footer-easter-egg p {
        font-size: 0.85rem;
    }
    
    .konami-hint {
        font-size: 0.9rem;
        letter-spacing: 1px;
        display: block;
        margin-top: 5px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .floating-meme {
        width: 40px;
        height: 40px;
    }
    
    .section-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .title-icon {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .lore-story {
        padding: 20px;
    }
    
    .lore-text {
        font-size: 0.95rem;
    }
    
    .token-card {
        padding: 15px;
    }
    
    .token-logo-img {
        width: 50px;
        height: 50px;
    }
    
    .token-name {
        font-size: 1.3rem;
    }
    
    .token-tagline {
        font-size: 0.9rem;
    }
    
    .token-bio {
        font-size: 0.9rem;
    }
    
    .vision-core {
        width: 180px;
        height: 180px;
        padding: 25px;
    }
    
    .core-text {
        font-size: 0.9rem;
    }
    
    .manifesto {
        padding: 25px;
    }
    
    .manifesto li {
        font-size: 1rem;
        padding: 10px;
    }
    
    .community-cta h3 {
        font-size: 1.8rem;
    }
    
    .community-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
        line-height: 1.5;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .vision-core {
        width: 160px;
        height: 160px;
    }
}
