/* Font Face */
@font-face {
    font-family: 'Super Vanilla';
    src: url('super_vanilla/Super Vanilla.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Super Vanilla', 'Arial Black', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #dd5fa7 0%, #c84395 25%, #b236a3 50%, #9c29b1 75%, #861cbf 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    opacity: 0.3;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Hero Title */
.hero-title {
    font-size: 8rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 
        -4px -4px 0 #000,
        4px -4px 0 #000,
        -4px 4px 0 #000,
        4px 4px 0 #000,
        -3px 0 0 #000,
        3px 0 0 #000,
        0 -3px 0 #000,
        0 3px 0 #000;
    margin-bottom: 1rem;
    line-height: 1;
}

/* Hero Description */
.hero-description {
    font-size: 1.3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
    max-width: 600px;
    line-height: 1.4;
    font-weight: 500;
    opacity: 0.95;
}

/* Contract Address */
.contract-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid #000;
    font-family: 'Super Vanilla', 'Courier New', monospace;
    font-weight: bold;
    color: #000;
    margin-bottom: 1rem;
    box-shadow: 2px 2px 0 #000;
    font-size: 0.8rem;
}

.ca-label {
    font-weight: bold;
    color: #000;
    font-size: 0.8rem;
}

.ca-value {
    color: #000;
    flex: 1;
    font-size: 0.7rem;
}

.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    transform: scale(1.1);
    color: #ec4899;
}

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

/* Social Links */
.social-links {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: white;
    border: 1px solid #000;
    border-radius: 6px;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 0 #000;
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.social-link:hover {
    background: #ec4899;
    color: white;
    transform: translateY(-1px);
    box-shadow: 3px 3px 0 #000;
}

/* Exchange Grid */
.exchange-grid {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.exchange-btn {
    background: #ec4899;
    color: white;
    border: 2px solid #000;
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 0 #000;
    letter-spacing: 0.05em;
    min-width: 90px;
    text-align: center;
}

.exchange-btn:hover {
    background: #ff6bc7;
    transform: translateY(-2px);
    box-shadow: 3px 3px 0 #000;
    color: white;
}

.exchange-btn:active {
    transform: translateY(0px);
    box-shadow: 1px 1px 0 #000;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 5rem;
        text-shadow: 
            -3px -3px 0 #000,
            3px -3px 0 #000,
            -3px 3px 0 #000,
            3px 3px 0 #000,
            -2px 0 0 #000,
            2px 0 0 #000,
            0 -2px 0 #000,
            0 2px 0 #000;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 450px;
    }
    
    .contract-address {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .ca-value {
        font-size: 0.9rem;
        word-break: break-all;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .social-link svg {
        width: 14px;
        height: 14px;
    }
    
    .exchange-grid {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0.4rem;
    }
    
    .exchange-btn {
        width: 100%;
        max-width: 250px;
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 350px;
        margin-bottom: 1rem;
    }
    
    .contract-address {
        padding: 0.75rem;
    }
    
    .ca-value {
        font-size: 0.8rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .exchange-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Copy notification */
.copy-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #10b981;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copy-notification.show {
    opacity: 1;
} 