@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Inter:wght@300;400;600;700&display=swap');

:root {
    --cyan:    #00f0ff;
    --green:   #00ff88;
    --red:     #ff2244;
    --gold:    #ffcc00;
    --purple:  #bd00ff;
    --dark:    #05080d;
    --panel:   rgba(6, 10, 18, 0.82);
    --border:  rgba(0, 240, 255, 0.15);
    --font-title: 'Orbitron', 'Inter', sans-serif;
    --font-body:  'Inter', sans-serif;
}

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

body {
    background-color: var(--dark);
    font-family: var(--font-body);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 136, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 240, 255, 0.08) 0%, transparent 40%),
        repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(0, 240, 255, 0.015) 50px),
        repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(0, 240, 255, 0.015) 50px);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #030508;
}
::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--cyan);
}

/* Header / Navigation */
header {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    background: rgba(5, 8, 13, 0.6);
}

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

.logo-img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid var(--cyan);
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.3));
}

.logo-text {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.logo-ticker {
    font-size: 0.8rem;
    color: var(--green);
    border: 1px solid var(--green);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    margin-left: 5px;
}

nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: var(--font-title);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-link:hover {
    color: var(--cyan);
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
}

/* Play CTA Button in Navbar */
.nav-btn {
    background: linear-gradient(135deg, #00cc66, #00ff88);
    color: #000;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 140px 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-logo-box {
    margin-bottom: 30px;
    position: relative;
}

.hero-logo-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid var(--green);
    filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.45));
    animation: float-bob 4s ease-in-out infinite;
}

@keyframes float-bob {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%       { transform: translateY(-15px) rotate(2deg); }
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    letter-spacing: 4px;
    color: #fff;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.4), 0 0 60px rgba(0, 255, 136, 0.1);
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-title span {
    color: var(--cyan);
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
}

.hero-subtitle {
    font-family: var(--font-title);
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

/* CA/Contract Address Container */
.ca-container {
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 14px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 600px;
    width: 90%;
    margin-bottom: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(0, 240, 255, 0.05);
    backdrop-filter: blur(10px);
}

.ca-label {
    font-family: var(--font-title);
    font-size: 0.75rem;
    color: var(--cyan);
    letter-spacing: 1px;
    font-weight: 700;
    white-space: nowrap;
}

.ca-address {
    font-family: var(--font-title);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: 1px;
}

.ca-copy-btn {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--border);
    color: var(--cyan);
    padding: 8px 16px;
    border-radius: 6px;
    font-family: var(--font-title);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.ca-copy-btn:hover {
    background: var(--cyan);
    color: #000;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.ca-copy-btn.copied {
    background: var(--green);
    border-color: var(--green);
    color: #000;
}

/* Call to Actions */
.cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-primary {
    background: linear-gradient(135deg, #00cc66 0%, #00ff88 100%);
    color: #000;
    padding: 18px 36px;
    border-radius: 8px;
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 45px rgba(0, 255, 136, 0.7);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: #fff;
    padding: 18px 36px;
    border-radius: 8px;
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    transform: translateY(-3px);
}

/* About / Info Section */
.content-section {
    max-width: 900px;
    width: 90%;
    margin: 40px auto;
    padding: 40px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(0, 240, 255, 0.03);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--green), var(--purple));
}

.section-title {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--green);
    letter-spacing: 3px;
    margin-bottom: 24px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.game-desc-p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    line-height: 1.8;
}

/* Socials & Dex Links Grid */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

.link-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.link-card:hover {
    background: rgba(0, 240, 255, 0.05);
    border-color: var(--cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 240, 255, 0.15);
}

.link-card.twitter:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.link-card.raydium:hover {
    background: rgba(189, 0, 255, 0.05);
    border-color: var(--purple);
    box-shadow: 0 10px 25px rgba(189, 0, 255, 0.15);
}

.link-icon {
    font-size: 2.2rem;
}

.link-name {
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.link-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Footer */
footer {
    padding: 60px 20px 40px;
    text-align: center;
    font-family: var(--font-title);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

footer p {
    margin-bottom: 10px;
}

/* Toast Message */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--green);
    color: #000;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 1px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.5);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

/* Mobile responsive fixes */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
        position: static;
        background: var(--dark);
    }
    
    .hero {
        padding-top: 40px;
        min-height: auto;
    }
    
    .ca-container {
        flex-direction: column;
        text-align: center;
        padding: 18px;
        gap: 10px;
    }
    
    .ca-address {
        width: 100%;
        text-align: center;
    }
    
    .content-section {
        padding: 24px;
    }
}
