/* SOLOWEEN - Halloween Themed Memecoin Website */
/* Spooky Orange/Black Color Scheme with Halloween Animations */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Halloween Color Palette */
    --primary-orange: #ff6b35;
    --secondary-orange: #ff8c42;
    --dark-orange: #e55a2b;
    --spooky-black: #1a1a1a;
    --dark-gray: #2d2d2d;
    --light-gray: #f5f5f5;
    --ghost-white: #f8f8f8;
    --pumpkin-glow: #ffa500;
    --bat-purple: #4a148c;
    --spider-web: #e0e0e0;
    
    /* Gradients */
    --halloween-gradient: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #e55a2b 100%);
    --spooky-gradient: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    --pumpkin-gradient: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--spooky-black);
    color: var(--ghost-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Spooky Background Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 66, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(74, 20, 140, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Header Styles */
.header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-orange);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-text {
    font-family: 'Creepster', cursive;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-orange);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: spooky-glow 2s ease-in-out infinite alternate;
}

@keyframes spooky-glow {
    0% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px var(--primary-orange); }
    100% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px var(--pumpkin-glow); }
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--ghost-white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.header-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    animation: float-pumpkin 3s ease-in-out infinite;
    border: 2px solid var(--primary-orange);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

@keyframes float-pumpkin {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: var(--spooky-gradient);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '🎃👻🦇🎃👻🦇🎃👻🦇';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 2rem;
    opacity: 0.1;
    animation: float-emojis 20s linear infinite;
    pointer-events: none;
}

@keyframes float-emojis {
    0% { transform: translateX(-100px) translateY(0px); }
    100% { transform: translateX(calc(100vw + 100px)) translateY(-100px); }
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.main-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-orange);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
    animation: spooky-glow 2s ease-in-out infinite alternate, float-pumpkin 4s ease-in-out infinite;
}

.hero-title {
    font-family: 'Creepster', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: spooky-entrance 1s ease-out;
}

@keyframes spooky-entrance {
    0% { 
        opacity: 0; 
        transform: translateY(-50px) scale(0.8); 
        filter: blur(10px);
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
        filter: blur(0);
    }
}

.gradient-text {
    background: var(--halloween-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.token-symbol {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pumpkin-glow);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--primary-orange);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-orange);
    margin-bottom: 0.5rem;
    animation: spooky-entrance 1s ease-out 0.3s both;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--ghost-white);
    margin-bottom: 2rem;
    animation: spooky-entrance 1s ease-out 0.6s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: spooky-entrance 1s ease-out 0.9s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: spooky-entrance 1s ease-out 1.2s both;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--halloween-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
    border-color: var(--pumpkin-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Creepster', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-orange);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Chart Section */
.chart-section {
    background: var(--dark-gray);
    border-top: 2px solid var(--primary-orange);
    border-bottom: 2px solid var(--primary-orange);
}

.chart-container {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--primary-orange);
}

.dexscreener-widget-container {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.dexscreener-iframe {
    border-radius: 15px;
}

.chart-info {
    display: grid;
    gap: 2rem;
}

.chart-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.stat-box {
    background: rgba(255, 107, 53, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--primary-orange);
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    font-weight: 600;
    color: var(--primary-orange);
    font-size: 1.1rem;
}

.chart-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.chart-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--halloween-gradient);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.chart-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.link-icon {
    font-size: 1.2rem;
}

/* Features Section */
.features {
    background: var(--spooky-black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(45, 45, 45, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--primary-orange);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--halloween-gradient);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    border-color: var(--pumpkin-glow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: float-spooky 3s ease-in-out infinite;
}

@keyframes float-spooky {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(2deg); }
    50% { transform: translateY(-10px) rotate(0deg); }
    75% { transform: translateY(-5px) rotate(-2deg); }
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--light-gray);
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    background: var(--dark-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

.benefit-item h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-item p {
    color: var(--light-gray);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background: var(--spooky-gradient);
    text-align: center;
    border-top: 2px solid var(--primary-orange);
    border-bottom: 2px solid var(--primary-orange);
}

.cta-title {
    font-family: 'Creepster', cursive;
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-description {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Token Info Section */
.token-info {
    background: var(--spooky-black);
}

.token-card {
    background: rgba(45, 45, 45, 0.8);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--primary-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

.token-card h3 {
    font-size: 1.8rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-family: 'Creepster', cursive;
}

.token-info-text {
    color: var(--light-gray);
    margin-bottom: 1rem;
}

.contract-address {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(26, 26, 26, 0.8);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid var(--primary-orange);
}

.contract-address code {
    flex: 1;
    color: var(--primary-orange);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    word-break: break-all;
}

.copy-btn {
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    padding: 0.8rem 1.5rem;
    background: var(--halloween-gradient);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Footer */
.footer {
    background: var(--spooky-black);
    border-top: 2px solid var(--primary-orange);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .chart-stats {
        grid-template-columns: 1fr;
    }
    
    .chart-links {
        flex-direction: column;
        align-items: center;
    }
    
    .chart-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contract-address {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

/* Spooky Animations */
@keyframes spooky-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes spooky-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spooky-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Additional Halloween Effects */
.spooky-text {
    animation: spooky-pulse 2s ease-in-out infinite;
}

.floating-element {
    animation: spooky-bounce 3s ease-in-out infinite;
}

.rotating-element {
    animation: spooky-rotate 10s linear infinite;
}
