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

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0f;
    color: #ffffff;
    position: relative;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(225deg, #7c3aed 0%, #9333ea 50%, #a855f7 100%);
    bottom: -150px;
    right: -150px;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, #6d28d9 0%, #8b5cf6 50%, #a78bfa 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Main Container */
.coming-soon-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 2rem;
}

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

.degen-logo {
    max-width: clamp(350px, 45vw, 600px);
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5));
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.8));
        transform: scale(1.05);
    }
}

/* Coming Soon Content */
.coming-soon-content {
    position: relative;
}

.coming-soon-title {
    font-size: clamp(2.5rem, 7vw, 6.5rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 5px rgba(168, 85, 247, 0.3));
    animation: title-pulse 2s ease-in-out infinite;
}

.text-gradient {
    background: linear-gradient(135deg, #a855f7 0%, #c084fc 30%, #e9d5ff 60%, #c084fc 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    white-space: nowrap;
    position: relative;
    animation: gradient-shift 3s ease-in-out infinite;
    text-shadow: 
        0 0 5px rgba(168, 85, 247, 0.4),
        0 0 10px rgba(139, 92, 246, 0.3);
}

.glitch-text {
    animation: gradient-shift 3s ease-in-out infinite, glitch-main 3s infinite;
}


@keyframes title-pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(168, 85, 247, 0.3));
    }
    50% {
        transform: scale(1.02);
        filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.4));
    }
}



@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Glitch Effect */
.glitch-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(2.5rem, 7vw, 6.5rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
    opacity: 0.8;
}

.glitch-layer-1 {
    color: rgba(0, 255, 255, 0.3);
    animation: glitch-1 2.5s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch-layer-2 {
    color: rgba(255, 0, 255, 0.3);
    animation: glitch-2 2s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

.glitch-layer-3 {
    color: rgba(168, 85, 247, 0.2);
    animation: glitch-3 3s infinite;
}

@keyframes glitch-main {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
}

@keyframes glitch-1 {
    0%, 100% {
        transform: translate(-50%, -50%) translate(0);
        opacity: 0.8;
    }
    20% {
        transform: translate(-50%, -50%) translate(-3px, 3px);
        opacity: 1;
    }
    40% {
        transform: translate(-50%, -50%) translate(-3px, -3px);
        opacity: 0.6;
    }
    60% {
        transform: translate(-50%, -50%) translate(3px, 3px);
        opacity: 0.9;
    }
    80% {
        transform: translate(-50%, -50%) translate(3px, -3px);
        opacity: 0.7;
    }
}

@keyframes glitch-2 {
    0%, 100% {
        transform: translate(-50%, -50%) translate(0);
        opacity: 0.8;
    }
    25% {
        transform: translate(-50%, -50%) translate(3px, -3px);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) translate(-3px, 3px);
        opacity: 0.5;
    }
    75% {
        transform: translate(-50%, -50%) translate(-2px, -2px);
        opacity: 0.9;
    }
}

@keyframes glitch-3 {
    0%, 100% {
        transform: translate(-50%, -50%) translate(0) scale(1);
        opacity: 0.2;
    }
    33% {
        transform: translate(-50%, -50%) translate(-4px, 4px) scale(1.01);
        opacity: 0.4;
    }
    66% {
        transform: translate(-50%, -50%) translate(4px, -4px) scale(0.99);
        opacity: 0.3;
    }
}

/* Contract Section */
.contract-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contract-address {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.ca-label {
    color: #c084fc;
    font-weight: 600;
}

.ca-value {
    color: #e9d5ff;
    font-weight: 500;
    letter-spacing: 0.05em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 500px;
}

.ca-placeholder {
    color: rgba(192, 132, 252, 0.6);
    font-style: italic;
}

.copy-btn {
    background: transparent;
    border: none;
    color: #c084fc;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin-left: 0.5rem;
}

.copy-btn:hover {
    color: #e9d5ff;
    background: rgba(168, 85, 247, 0.2);
    transform: scale(1.1);
}

.copy-btn svg {
    width: 16px;
    height: 16px;
}

.buy-button {
    padding: 0.875rem 2.5rem;
    background: linear-gradient(135deg, #a855f7 0%, #c084fc 100%);
    border: 2px solid rgba(168, 85, 247, 0.5);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.buy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.buy-button:hover::before {
    left: 100%;
}

.buy-button:hover {
    background: linear-gradient(135deg, #9333ea 0%, #a855f7 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5);
    border-color: rgba(192, 132, 252, 0.7);
}

.buy-button:active {
    transform: translateY(0);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    width: 56px;
    height: 56px;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    color: #c084fc;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.3), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(192, 132, 252, 0.6);
    color: #e9d5ff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.social-link svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.2) rotate(5deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        gap: 3rem;
        padding: 1rem;
    }
    
    .coming-soon-title {
        font-size: clamp(1.8rem, 10vw, 3.5rem);
    }
    
    .glitch-effect {
        font-size: clamp(1.8rem, 10vw, 3.5rem);
    }
    
    .contract-section {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .contract-address {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }
    
    .ca-value {
        max-width: 100%;
        font-size: 0.8rem;
        white-space: normal;
        word-break: break-all;
    }
    
    .buy-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
    }
    
    .degen-logo {
        max-width: clamp(250px, 40vw, 400px);
    }
}

/* Particle Effect Background */
.coming-soon-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(192, 132, 252, 0.1) 0%, transparent 50%);
    animation: background-pulse 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes background-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

