/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Lightning Background */
.lightning-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: -1;
    overflow: hidden;
}

.lightning-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    animation: lightning 4s ease-in-out infinite;
}

@keyframes lightning {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.logo h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
}

.tagline {
    font-size: 1rem;
    color: #cccccc;
    opacity: 0.8;
    display: block;
    margin-top: 5px;
    text-align: center;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 5px;
}

.nav a:hover {
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 0;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.highlight {
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 50px;
    opacity: 0.9;
}

/* Contract Address Section */
.ca-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin: 40px 0;
}

.ca-container {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.ca-container h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.ca-box {
    display: flex;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid #ffffff;
    margin-bottom: 25px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

#contractAddress {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    padding: 15px;
    outline: none;
}

.copy-btn {
    background: linear-gradient(45deg, #ffffff, #cccccc);
    color: #000000;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.5);
}

.ca-warning {
    color: #ff6b6b;
    font-size: 1rem;
    font-style: italic;
}

/* DexScreener Section */
.dex-section {
    padding: 80px 0;
}

.dex-container {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.dex-container h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.dex-buttons {
    display: flex;
    justify-content: center;
}

.dex-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    color: #000000;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.dex-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

.dex-btn i {
    font-size: 1.4rem;
}

/* Community Section */
.community-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin: 40px 0;
}

.community-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.community-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.community-content p {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.community-links {
    display: flex;
    justify-content: center;
}

.community-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    color: #000000;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.community-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

.community-btn i {
    font-size: 1.4rem;
}

/* All About 42 Section */
.about42-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin: 40px 0;
}

.about42-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about42-container h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.about42-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.about42-image {
    position: relative;
    text-align: center;
}

.about42-image img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    display: block;
}

.image-placeholder {
    width: 100%;
    max-width: 300px;
    height: 300px;
    background: rgba(0, 0, 0, 0.8);
    border: 3px dashed #ffffff;
    border-radius: 15px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    background: rgba(255, 255, 255, 0.1);
    border-style: solid;
}

.image-placeholder i {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 15px;
    opacity: 0.7;
}

.image-placeholder p {
    color: #ffffff;
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.image-placeholder small {
    color: #cccccc;
    font-size: 0.9rem;
    opacity: 0.6;
    font-family: 'Courier New', monospace;
}

.about42-text {
    position: relative;
}

.sliding-text {
    position: relative;
    min-height: 200px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #cccccc;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s ease-in-out;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border-left: 4px solid #ffffff;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
    opacity: 0;
}

.slide-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    border-color: #ffffff;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

/* Footer */
.footer {
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-top: 60px;
}

.footer p {
    color: #cccccc;
    font-size: 1rem;
}

/* Copy Success Message */
.copy-success {
    position: fixed;
    top: 30px;
    right: 30px;
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: #ffffff;
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.copy-success.show {
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .ca-box {
        flex-direction: column;
        gap: 20px;
    }
    
    .ca-container h3,
    .dex-container h3,
    .community-content h3,
    .about42-container h3 {
        font-size: 2rem;
    }
    
    .about42-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .slide {
        font-size: 1.1rem;
        padding: 15px;
    }
    
    .sliding-text {
        min-height: 180px;
    }
    
    .copy-success {
        right: 15px;
        top: 15px;
        padding: 15px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .ca-container h3,
    .dex-container h3,
    .community-content h3,
    .about42-container h3 {
        font-size: 1.8rem;
    }
    
    .dex-btn,
    .community-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .slide {
        font-size: 1rem;
        padding: 12px;
    }
    
    .sliding-text {
        min-height: 160px;
    }
    
    .about42-image img,
    .image-placeholder {
        max-width: 250px;
        height: 250px;
    }
}
