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

:root {
    --primary-color: #00ff88;
    --secondary-color: #00cc6a;
    --accent-color: #00ffaa;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --gradient-primary: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    --gradient-secondary: linear-gradient(135deg, #00ffaa 0%, #00ff88 100%);
    --shadow-light: 0 4px 6px rgba(0, 255, 136, 0.2);
    --shadow-medium: 0 8px 25px rgba(0, 255, 136, 0.3);
    --shadow-heavy: 0 20px 40px rgba(0, 255, 136, 0.4);
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Bangers', cursive;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    text-align: center;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Marquee Banner */
.marquee-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--gradient-primary);
    z-index: 1000;
    overflow: hidden;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 255, 136, 0.5);
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    gap: 0.5rem;
}

.marquee-pill {
    width: 1.5rem;
    height: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--bg-primary);
    padding: 2rem 1rem;
    margin-top: 50px; /* Account for fixed marquee banner */
}

.hero-content {
    max-width: 800px;
    width: 100%;
    z-index: 2;
    position: relative;
}

.token-icon {
    margin-bottom: 2rem;
}

.main-icon {
    width: 150px;
    height: 150px;
    border: none;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.6));
}

.main-title {
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.token-symbol {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 6rem;
    font-weight: 400;
    text-shadow: 0 0 40px rgba(0, 255, 136, 0.9);
    letter-spacing: 2px;
}

.badge-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 400;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: var(--shadow-medium);
    animation: float 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.badge:nth-child(2) {
    animation-delay: 1s;
}

.badge:nth-child(3) {
    animation-delay: 2s;
}

.hero-text {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.4;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

.buy-section {
    margin-bottom: 3rem;
}

.buy-btn {
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 400;
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
    border: 2px solid var(--primary-color);
    position: relative;
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.3),
        0 0 40px rgba(0, 255, 136, 0.1);
}

.buy-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
    animation: neon-border 2s linear infinite;
}

.buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.6),
        0 0 60px rgba(0, 255, 136, 0.3),
        0 0 90px rgba(0, 255, 136, 0.1);
    border-color: var(--accent-color);
    text-shadow: 0 0 25px rgba(0, 255, 136, 1);
    background: rgba(0, 255, 136, 0.15);
    color: #ffffff;
}

.buy-btn:hover::before {
    opacity: 1;
}

.contract-section {
    margin-bottom: 3rem;
}

.contract-label {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.contract-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: transparent;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.contract-address {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    word-break: break-all;
    flex: 1;
}

.copy-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.copy-btn .pill-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}

.copy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
    border-color: var(--accent-color);
    background: rgba(0, 255, 136, 0.15);
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1.5rem 3rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 400;
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    min-width: 200px;
    justify-content: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-element {
    position: absolute;
    font-size: 4rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.4;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.float-element.pill {
    width: 3rem;
    height: 3rem;
    animation: float 8s ease-in-out infinite;
}

.float-element.pill img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.8));
}

.float-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-element:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.float-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.float-element:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.float-element:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: 4s;
}

.float-element:nth-child(6) {
    top: 15%;
    left: 50%;
    animation-delay: 5s;
}

.float-element:nth-child(7) {
    top: 70%;
    right: 25%;
    animation-delay: 6s;
}

.float-element:nth-child(8) {
    top: 35%;
    left: 80%;
    animation-delay: 7s;
}

/* Stats Section */
.stats {
    padding: 4rem 2rem;
    background: var(--bg-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: transparent;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.4);
    border-color: var(--accent-color);
}

.stat-number {
    font-size: 4rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

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

/* About Section */
.about {
    padding: 4rem 2rem;
    background: var(--bg-primary);
}

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

.about h2 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

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

.about-card {
    background: transparent;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.about-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.4);
}

.card-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
}

.card-icon img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.6));
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Links Section */
.links {
    padding: 4rem 2rem;
    background: var(--bg-secondary);
}

.links-content {
    max-width: 800px;
    margin: 0 auto;
}

.links h2 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.link-card {
    background: transparent;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

.link-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
    animation: neon-border 2s linear infinite;
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    border-color: var(--accent-color);
    text-shadow: 0 0 20px rgba(0, 255, 136, 1);
    background: rgba(0, 255, 136, 0.15);
    color: #ffffff;
}

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

.link-card.twitter:hover {
    border-color: var(--primary-color);
    background: rgba(0, 255, 136, 0.1);
}

.link-card.chart:hover {
    border-color: var(--primary-color);
    background: rgba(0, 255, 136, 0.1);
}

.link-card.telegram:hover {
    border-color: #0088cc;
    background: #0088cc;
}

.link-card.discord:hover {
    border-color: #7289da;
    background: #7289da;
}

.pill-icon {
    width: 2rem;
    height: 2rem;
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.6));
}

.link-card span {
    font-size: 1.2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

/* Footer */
.footer {
    background: var(--bg-primary);
    padding: 3rem 2rem;
    border-top: 2px solid var(--primary-color);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-icon {
    width: 60px;
    height: 60px;
    border: none;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.footer-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .token-symbol {
        font-size: 3rem;
    }
    
    .hero-text {
        font-size: 1.2rem;
    }
    
    .badge-container {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .contract-box {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .token-symbol {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .about h2,
    .links h2 {
        font-size: 2rem;
    }
}

/* Audio Controls */
.audio-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.mute-btn {
    background: transparent;
    color: #ffffff;
    border: none;
    border-radius: 0;
    width: auto;
    height: auto;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: none;
    padding: 0.5rem 1rem;
    font-family: 'Bangers', cursive;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mute-btn:hover {
    background: transparent;
    transform: none;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.mute-btn.muted {
    color: #ffffff;
    border-color: transparent;
    box-shadow: none;
} 