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

body {
    font-family: 'Inter', sans-serif;
    background: #0D0D0D;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Galaxy Background with Stars */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
}

.stars::before,
.stars::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 
        100px 200px #FFFFFF,
        300px 50px #8B5CF6,
        500px 150px #FFFFFF,
        700px 100px #A78BFA,
        200px 400px #FFFFFF,
        600px 300px #C4B5FD,
        800px 250px #FFFFFF,
        150px 300px #8B5CF6,
        950px 150px #FFFFFF,
        450px 350px #A78BFA,
        750px 400px #FFFFFF,
        250px 50px #C4B5FD,
        50px 150px #FFFFFF,
        900px 50px #8B5CF6,
        350px 250px #FFFFFF,
        650px 100px #A78BFA,
        850px 350px #FFFFFF,
        550px 50px #C4B5FD,
        1100px 200px #FFFFFF,
        1000px 400px #8B5CF6;
    animation: sparkle 3s linear infinite;
}

.stars::after {
    animation-delay: 1.5s;
    transform: scale(0.5);
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Hero Banner Background */
.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    filter: blur(2px) saturate(1.2);
    transform: scale(1.1);
    animation: bannerFloat 20s ease-in-out infinite;
}

@keyframes bannerFloat {
    0%, 100% { transform: scale(1.1) translateY(0px); }
    50% { transform: scale(1.15) translateY(-10px); }
}

/* Trading Chart Background */
.trading-chart-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 200'%3E%3Cpath d='M50,150 L100,100 L150,120 L200,80 L250,90 L300,60 L350,40' stroke='%238B5CF6' stroke-width='3' fill='none'/%3E%3C/svg%3E");
    background-repeat: repeat;
    z-index: -1;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, rgba(13, 13, 13, 0.9) 70%);
    text-align: center;
    overflow: hidden;
}

.hero-content {
    z-index: 10;
    max-width: 800px;
}

.logo-container {
    margin-bottom: 2rem;
}

.main-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 40px rgba(139, 92, 246, 0.6); }
    to { box-shadow: 0 0 60px rgba(139, 92, 246, 0.9); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #A78BFA 50%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.chain-street {
    color: #8B5CF6;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #C4B5FD;
    margin-bottom: 3rem;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    color: #FFFFFF;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
    border-color: #C4B5FD;
}

/* Contract Address Section */
.contract-info {
    margin: 2rem 0;
    text-align: center;
}

.contract-label {
    font-size: 0.9rem;
    color: #A78BFA;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contract-address {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    max-width: 100%;
    overflow: hidden;
}

.contract-address:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: #8B5CF6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.address-text {
    font-family: 'Courier New', monospace;
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.copy-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Social Links */
.social-links {
    margin: 2rem 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 25px;
    padding: 12px 24px;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(167, 139, 250, 0.2);
    border-color: #A78BFA;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(167, 139, 250, 0.3);
}

.x-icon {
    font-weight: 800;
    font-size: 1.1rem;
}

.solana-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #A78BFA;
    font-weight: 600;
}

.solana-logo {
    width: 30px;
    height: 24px;
}

/* Section Styles */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* What is XSTOCK60 Section */
.what-is-section {
    padding: 100px 0;
    background: rgba(139, 92, 246, 0.02);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.meme-paragraph {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.8;
    color: #E5E7EB;
    font-weight: 500;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
}

.checkmark {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.8));
}

/* Trading Section */
.trading-section {
    padding: 100px 0;
    background: rgba(167, 139, 250, 0.02);
}

.trading-feed {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.trade-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    font-family: 'Courier New', monospace;
    animation: fadeInUp 0.5s ease forwards;
}

.trade-item:last-child {
    border-bottom: none;
}

.trader {
    color: #8B5CF6;
    font-weight: 600;
}

.action {
    color: #A78BFA;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.amount {
    color: #FFFFFF;
    font-weight: 700;
}

.rocket {
    font-size: 1.2rem;
}

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

/* Meme Gallery Section */
.meme-section {
    padding: 100px 0;
    background: rgba(196, 181, 253, 0.02);
}

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

.meme-card {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.meme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    border-color: #8B5CF6;
}

.meme-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #8B5CF6;
}

.meme-content p {
    font-size: 1.1rem;
    color: #C4B5FD;
    font-style: italic;
    line-height: 1.6;
}

.stonks {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.laser-eyes {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.financial-advice {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    background: rgba(13, 13, 13, 0.9);
}

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

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 1.1rem;
    color: #A78BFA;
    margin-bottom: 2rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C4B5FD;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-link:hover {
    color: #FFFFFF;
    background: rgba(139, 92, 246, 0.15);
    border-color: #8B5CF6;
    transform: translateY(-2px);
}

.disclaimer {
    font-size: 0.9rem;
    color: #6B7280;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .meme-grid {
        grid-template-columns: 1fr;
    }
    
    .trading-feed {
        padding: 1.5rem;
    }
    
    .trade-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .main-logo {
        width: 80px;
        height: 80px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .contract-address {
        max-width: 90%;
        padding: 10px 15px;
    }
    
    .address-text {
        font-size: 0.8rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .social-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .banner-bg {
        opacity: 0.05;
    }
}

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

.meme-card:hover .meme-content h3 {
    animation: pulse 1s infinite;
}

/* Scrolling Animation for Trading Feed */
.trading-feed {
    position: relative;
    overflow: hidden;
}

.trade-item:nth-child(odd) {
    animation-delay: 0.1s;
}

.trade-item:nth-child(even) {
    animation-delay: 0.2s;
}

/* Copy to Clipboard Animation */
.contract-address.copied {
    background: rgba(34, 197, 94, 0.2) !important;
    border-color: #22C55E !important;
}

.contract-address.copied .copy-icon {
    animation: checkmark 0.5s ease;
}

@keyframes checkmark {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
} 