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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a1a1a 0%, #001a1a 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00ffff;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: scale(1.1);
}

.x-logo {
    width: 20px;
    height: 20px;
    color: #00ffff;
    transition: all 0.3s ease;
}

.social-link:hover .x-logo {
    color: #ffffff;
    filter: drop-shadow(0 0 5px #00ffff);
}

.nav-cta {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cta-primary {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    color: #000;
}

.cta-secondary {
    background: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
}

.cta-primary:hover, .cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.3);
}

/* Plasmy Character */
.hero-character {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 1.5rem;
}

.plasmy-character {
    position: relative;
    animation: bounce 2s ease-in-out infinite;
}

.plasmy-image {
    width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.plasmy-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.8);
}

.character-info {
    text-align: center;
}

.character-info h3 {
    font-size: 2rem;
    color: #00ffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px #00ffff;
}

.character-info p {
    color: #cccccc;
    font-size: 1.1rem;
}

/* To The Moon Section */
.to-the-moon {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1a1a 0%, #001a1a 100%);
}

.moon-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.moon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: blur(1px);
}

.moon-content {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 2rem;
}

.moon-content h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px #00ffff;
    animation: glow 2s ease-in-out infinite alternate;
}

.moon-content p {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.6;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px #00ffff;
    }
    to {
        text-shadow: 0 0 30px #00ffff, 0 0 40px #00ffff;
    }
}


/* Trading Section */
.trading {
    background: rgba(0, 255, 255, 0.05);
    padding: 4rem 0;
}

.trading h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #00ffff;
}

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

.trading-info {
    margin-bottom: 2rem;
}

.trading-info h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contract-address {
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: #00ffff;
    word-break: break-all;
    border: 1px solid rgba(0, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.contract-address:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: #00ffff;
}

.contract-note {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

.trading-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trade-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.trade-btn.primary {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

.trade-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.5);
}

.trade-btn.secondary {
    background: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
}

.trade-btn.secondary:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-2px);
}

.lightning-bolts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bolt {
    position: absolute;
    font-size: 2rem;
    color: #00ffff;
    animation: flash 1s ease-in-out infinite;
}

.bolt-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bolt-2 {
    top: 60%;
    right: 10%;
    animation-delay: 0.3s;
}

.bolt-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 0.6s;
}

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

@keyframes blink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

@keyframes wave {
    0%, 100% { transform: rotate(-20deg); }
    50% { transform: rotate(-40deg); }
}

@keyframes run {
    0% { transform: translateY(0); }
    100% { transform: translateY(-5px); }
}

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

/* Sections */
section {
    padding: 80px 0;
}

.about {
    position: relative;
    background: rgba(0, 255, 255, 0.05);
    overflow: hidden;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-yacht-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: blur(2px);
}

.about .container {
    position: relative;
    z-index: 2;
}

.about h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #00ffff;
}

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

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.about-text p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #00ffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Features */
.features h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: #00ffff;
}

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

.feature-card {
    background: rgba(0, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 255, 255, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00ffff;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Partners */
.partners {
    background: rgba(0, 255, 255, 0.05);
}

.partners h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: #00ffff;
}

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

.partner {
    background: rgba(0, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    color: #00ffff;
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.partner:hover {
    transform: scale(1.05);
    background: rgba(0, 255, 255, 0.2);
}

/* Testimonials */
.testimonials h2 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: #00ffff;
}

.testimonial {
    background: rgba(0, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border-left: 4px solid #00ffff;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #ffffff;
}

.testimonial cite {
    color: #00ffff;
    font-weight: 600;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 128, 255, 0.1) 100%);
    text-align: center;
}

.newsletter h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #00ffff;
}

.newsletter p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #00ffff;
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: 1rem;
    min-width: 250px;
}

.newsletter-form input::placeholder {
    color: #888;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border: none;
    border-radius: 25px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: #0a1a1a;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

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

.footer-section h3, .footer-section h4 {
    color: #00ffff;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00ffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .nav-links {
        display: none;
    }
    
    .plasmy-image {
        width: 280px;
    }
    
    .trading-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .moon-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .moon-content h2 {
        font-size: 2rem;
    }
    
    .to-the-moon {
        min-height: 50vh;
    }
    
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}
