/* =========================================
   VARIABLES & DESIGN SYSTEM
========================================= */
:root {
    --bg-dark: #02050f;
    --bg-darker: #010208;
    --brand-primary: #0088ff; /* Neon Blue to match images */
    --brand-secondary: #0044aa; /* Darker Neon Blue */
    --brand-accent: #33ccff; /* Light Accent Blue */
    --text-main: #ffffff;
    --text-muted: #8899bb;
    --glass-bg: rgba(0, 40, 100, 0.1);
    --glass-border: rgba(0, 136, 255, 0.15);
    --font-heading: 'Rowdies', cursive;
    --font-body: 'Outfit', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
}

/* =========================================
   RESET & BASICS
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.bg-animated {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: 
        radial-gradient(circle at 15% 50%, rgba(0, 136, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(51, 204, 255, 0.05) 0%, transparent 50%);
    animation: pulseBg 10s infinite alternate;
}

@keyframes pulseBg {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

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

h1, h2, h3, h4, .glitch {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.highlight {
    color: var(--brand-primary);
    text-shadow: 0 0 10px rgba(0, 136, 255, 0.5);
}

.highlight-green {
    color: var(--brand-accent);
    text-shadow: 0 0 10px rgba(51, 204, 255, 0.5);
}

/* =========================================
   UI COMPONENTS
========================================= */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

.primary-btn {
    background: linear-gradient(45deg, var(--brand-primary), var(--brand-accent));
    color: var(--bg-darker);
    box-shadow: 0 0 20px rgba(0, 136, 255, 0.4);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 136, 255, 0.6);
    background: linear-gradient(45deg, var(--brand-accent), #66ddff);
}

.secondary-btn {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--brand-primary);
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: rgba(0, 136, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 136, 255, 0.3);
    transform: translateY(-2px);
}

.pulse-anim {
    animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
    0% { box-shadow: 0 0 0 0 rgba(0, 136, 255, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(0, 136, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 136, 255, 0); }
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 30px;
    transition: transform var(--transition-medium), border-color var(--transition-fast);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 136, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 136, 255, 0.1);
}

/* =========================================
   HEADER
========================================= */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(2, 5, 15, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
    transition: all 0.3s;
}

.glass-header.scrolled {
    padding: 10px 0;
    background: rgba(2, 5, 15, 0.95);
    border-bottom: 1px solid rgba(0, 136, 255, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brand-primary);
}

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
    background: linear-gradient(90deg, var(--text-main), var(--brand-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(0, 136, 255, 0.3);
}

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

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color var(--transition-fast);
    position: relative;
}

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

.nav-links a:hover {
    color: var(--brand-accent);
}

.nav-links a:hover::after {
    width: 100%;
    box-shadow: 0 0 8px var(--brand-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icon {
    color: var(--text-main);
    font-size: 1.5rem;
    transition: all var(--transition-fast);
}

.social-icon:hover {
    color: var(--brand-primary);
    transform: scale(1.1);
    text-shadow: 0 0 10px var(--brand-primary);
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin: 20px 0 35px;
    max-width: 600px;
}

.contract-box {
    background: rgba(0, 40, 100, 0.2);
    border: 1px solid var(--brand-primary);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 35px;
    max-width: 550px;
    box-shadow: 0 0 15px rgba(0, 136, 255, 0.1);
}

.ca-label {
    font-size: 0.85rem;
    color: var(--brand-accent);
    margin-bottom: 8px !important;
    font-weight: 600;
    letter-spacing: 1px;
}

.ca-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

#ca-text {
    font-family: monospace;
    font-size: 1rem;
    color: var(--text-main);
    word-break: break-all;
}

#copy-btn {
    background: var(--glass-border);
    border: 1px solid var(--brand-primary);
    color: var(--brand-accent);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

#copy-btn:hover {
    background: var(--brand-primary);
    color: var(--bg-dark);
    box-shadow: 0 0 10px var(--brand-primary);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    width: 500px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 136, 255, 0.3));
    animation: float 6s ease-in-out infinite;
    border-radius: 20px;
}

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

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--brand-accent);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--brand-primary);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(15px, 9999px, 71px, 0); }
    20% { clip: rect(61px, 9999px, 21px, 0); }
    40% { clip: rect(98px, 9999px, 86px, 0); }
    60% { clip: rect(32px, 9999px, 92px, 0); }
    80% { clip: rect(75px, 9999px, 11px, 0); }
    100% { clip: rect(4px, 9999px, 53px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    20% { clip: rect(11px, 9999px, 31px, 0); }
    40% { clip: rect(78px, 9999px, 96px, 0); }
    60% { clip: rect(12px, 9999px, 2px, 0); }
    80% { clip: rect(95px, 9999px, 81px, 0); }
    100% { clip: rect(24px, 9999px, 53px, 0); }
}

/* =========================================
   SECTIONS GENERAL
========================================= */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
    margin: 0 auto;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-top: 20px;
}

/* =========================================
   ABOUT SECTION
========================================= */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(0, 136, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--brand-accent);
    margin-bottom: 25px;
    transition: transform var(--transition-fast);
    border: 1px solid rgba(0, 136, 255, 0.3);
}

.about-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: var(--brand-primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 136, 255, 0.5);
    border-color: var(--brand-accent);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.about-card p {
    color: var(--text-muted);
}

/* =========================================
   TOKENOMICS SECTION
========================================= */
.tokenomics {
    background: linear-gradient(180deg, transparent, rgba(0, 136, 255, 0.05), transparent);
}

.token-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.token-image {
    flex: 1;
}

.token-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.token-stats {
    flex: 1;
}

.token-stats h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.token-stats p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.stats-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stats-list li {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s, background 0.2s;
}

.stats-list li:hover {
    transform: translateX(10px);
    background: rgba(0, 136, 255, 0.1);
    border-color: var(--brand-primary);
    box-shadow: 0 0 15px rgba(0, 136, 255, 0.2);
}

.stat-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

/* =========================================
   ROADMAP SECTION
========================================= */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--glass-border);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    margin-bottom: 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    width: 24px;
    height: 24px;
    right: -12px;
    background-color: var(--bg-dark);
    border: 4px solid var(--glass-border);
    top: 30px;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -12px;
}

.timeline-item.active .timeline-dot {
    border-color: var(--brand-primary);
    background-color: var(--brand-primary);
    box-shadow: 0 0 15px var(--brand-primary);
}

.timeline-content {
    position: relative;
}

.timeline-item.active .timeline-content {
    border-color: rgba(0, 136, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 136, 255, 0.15);
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.phase-subtitle {
    display: inline-block;
    color: var(--brand-accent);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.timeline-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.status {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.status.pending {
    color: #f1c40f;
}

/* =========================================
   FOOTER
========================================= */
footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.footer-brand h2 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--text-main), var(--brand-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 136, 255, 0.2);
}

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

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 12px 20px;
    border-radius: 30px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.footer-social:hover {
    background: var(--brand-primary);
    color: var(--bg-darker);
    border-color: var(--brand-primary);
    box-shadow: 0 0 15px rgba(0, 136, 255, 0.4);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* =========================================
   ANIMATIONS & MEDIA QUERIES
========================================= */
/* Animation Classes */
.hidden-fade { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.hidden-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s ease; }
.hidden-right { opacity: 0; transform: translateX(50px); transition: all 0.8s ease; }
.visible { opacity: 1; transform: translate(0, 0); }

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive */
@media screen and (max-width: 992px) {
    .hero-text h2 { font-size: 3.5rem; }
    .hero-content { flex-direction: column; text-align: center; }
    .hero-buttons { justify-content: center; }
    .contract-box { margin: 0 auto 35px; }
    .about-grid { grid-template-columns: repeat(2, 1fr); }
    .token-content { flex-direction: column; }
}

@media screen and (max-width: 768px) {
    .nav-links { display: none; }
    .hero-text h2 { font-size: 2.8rem; }
    .about-grid { grid-template-columns: 1fr; }
    
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item:nth-child(even) { left: 0%; }
    .timeline-item:nth-child(even) .timeline-dot { left: 19px; }
    .timeline-item:nth-child(odd) .timeline-dot { left: 19px; right: auto; }
    
    .footer-top { flex-direction: column; text-align: center; gap: 30px; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
}
