/* CSS Variables for Cosmic Theme */
:root {
    --cosmic-black: #0D0D0D;
    --cosmic-purple: #5A2A82;
    --galactic-magenta: #B6247D;
    --sanctuary-cream: #E8E0CF;
    --divine-gold: #F5D76E;
    
    --font-primary: 'Cormorant Garamond', serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    
    --shadow-cosmic: 0 4px 20px rgba(90, 42, 130, 0.3);
    --shadow-divine: 0 0 30px rgba(245, 215, 110, 0.4);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* Prevent horizontal overflow */
html, body {
    width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--cosmic-black);
    color: var(--sanctuary-cream);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Extra clamp for browsers supporting overflow: clip */
@supports (overflow: clip) {
    html, body { overflow-x: clip; }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cosmic-black);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--cosmic-purple), var(--galactic-magenta));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--galactic-magenta), var(--divine-gold));
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(90, 42, 130, 0.2);
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--divine-gold);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--sanctuary-cream);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--divine-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cosmic-purple), var(--galactic-magenta));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.social-link {
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(90, 42, 130, 0.2);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: rgba(245, 215, 110, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Sebelumnya visible menyebabkan animasi absolute child melebar dan memicu horizontal scroll */
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 4rem 0 2rem 0;
    }
}

.cosmic-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, var(--cosmic-purple) 0%, var(--cosmic-black) 70%);
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--sanctuary-cream), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--divine-gold), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--sanctuary-cream), transparent),
        radial-gradient(1px 1px at 130px 80px, var(--divine-gold), transparent),
        radial-gradient(2px 2px at 160px 30px, var(--sanctuary-cream), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    /* Ganti animasi agar tidak pakai translateX (yang menambah scrollWidth); gunakan background-position */
    animation: sparkle-bg 20s linear infinite;
}

@keyframes sparkle-bg {
    from { background-position: 0 0; }
    to { background-position: 200px 0; }
}

.cosmic-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(182, 36, 125, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    contain: paint;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.65; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.85; }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
    width: 100%;
    box-sizing: border-box;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-mascot {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    margin-top: 6rem;
}

.mascot-image {
    width: 300px;
    height: 300px;
    object-fit: contain;
    border-radius: 50%;
    /* Replace drop-shadow (could extend paint area) with box-shadow */
    box-shadow: 0 0 25px 5px rgba(245, 215, 110, 0.35);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.halo-effect {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: center center;
    width: 340px;
    height: 340px;
    border: 3px solid rgba(245, 215, 110, 0.4);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.token-symbol {
    background: linear-gradient(45deg, var(--divine-gold), var(--sanctuary-cream));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(245, 215, 110, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 500;
    color: var(--galactic-magenta);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--sanctuary-cream);
    opacity: 0.9;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .hero-title {
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        margin-bottom: 0.5rem;
    }
    
    .hero-description {
        margin-bottom: 1.5rem;
    }
}

.contract-section {
    /* Turunkan posisi dengan menambah margin-top */
    margin: 5rem 0 3rem 0;
    padding: 2rem;
    background: rgba(90, 42, 130, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(90, 42, 130, 0.3);
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .contract-section {
        margin: 3rem 0 1.5rem 0; /* Tetap turun tapi proporsional di layar kecil */
        padding: 1rem 1rem 1.25rem 1rem;
        max-width: 100%;
    }

    /* Sembunyikan tombol aksi hero di mobile */
    .hero-actions { display: none !important; }
}

.contract-label {
    font-size: 1rem;
    color: var(--sanctuary-cream);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.contract-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.contract-address {
    background: rgba(13, 13, 13, 0.5);
    color: var(--divine-gold);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    border: 1px solid rgba(245, 215, 110, 0.3);
    word-break: break-all;
    overflow-wrap: break-word;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    white-space: pre-wrap;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, var(--cosmic-purple), var(--galactic-magenta));
    color: var(--sanctuary-cream);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-primary);
}

.copy-btn:hover {
    background: linear-gradient(45deg, var(--galactic-magenta), var(--divine-gold));
    transform: translateY(-2px);
    box-shadow: var(--shadow-cosmic);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-fast);
    border: 2px solid transparent;
    font-family: var(--font-primary);
}

.btn-primary {
    background: linear-gradient(45deg, var(--galactic-magenta), var(--divine-gold));
    color: var(--cosmic-black);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-divine);
    filter: brightness(1.1);
}

.btn-secondary {
    background: transparent;
    color: var(--sanctuary-cream);
    border-color: var(--sanctuary-cream);
}

.btn-secondary:hover {
    background: var(--sanctuary-cream);
    color: var(--cosmic-black);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--divine-gold), transparent);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--divine-gold);
}

/* Section Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .section-container {
        padding: 3rem 1rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2rem;
    }
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--sanctuary-cream), var(--divine-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--galactic-magenta);
    opacity: 0.9;
}

/* About Section */
.about {
    background: linear-gradient(135deg, rgba(90, 42, 130, 0.1) 0%, rgba(13, 13, 13, 0.9) 100%);
    position: relative;
    overflow: visible;
    z-index: 1;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(1px 1px at 25px 25px, rgba(232, 224, 207, 0.2), transparent),
        radial-gradient(1px 1px at 75px 75px, rgba(245, 215, 110, 0.1), transparent);
    background-size: 100px 100px;
    opacity: 0.3;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.about-card {
    background: rgba(90, 42, 130, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(90, 42, 130, 0.3);
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 3;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-cosmic);
    border-color: var(--galactic-magenta);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--cosmic-purple), var(--galactic-magenta));
    border-radius: 50%;
    color: var(--sanctuary-cream);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--divine-gold);
    margin-bottom: 1rem;
    text-align: center;
}

.card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--sanctuary-cream);
    opacity: 0.9;
    text-align: center;
}

/* How to Buy Section */
.how-to-buy {
    background: var(--cosmic-black);
}

/* Ensure elements are visible even if JS fails */
.step {
    opacity: 1;
    transform: translateX(0);
}

.about-card {
    opacity: 1;
    transform: translateY(0);
}

.main-card,
.info-item {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.section-title {
    opacity: 1;
    transform: translateY(0);
}

.steps-container {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .steps-container {
        gap: 1rem;
        margin-bottom: 2rem;
    }
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: rgba(90, 42, 130, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--galactic-magenta);
    transition: var(--transition-smooth);
}

.step:hover {
    background: rgba(90, 42, 130, 0.1);
    transform: translateX(10px);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--cosmic-purple), var(--galactic-magenta));
    color: var(--sanctuary-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--divine-gold);
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--sanctuary-cream);
    opacity: 0.9;
}

.buy-actions {
    text-align: center;
}

/* Tokenomics Section */
.tokenomics {
    background: linear-gradient(135deg, rgba(182, 36, 125, 0.1) 0%, rgba(13, 13, 13, 0.9) 100%);
    position: relative;
}

.tokenomics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 50px 50px, rgba(245, 215, 110, 0.2), transparent),
        radial-gradient(1px 1px at 100px 100px, rgba(232, 224, 207, 0.1), transparent);
    background-size: 150px 150px;
    opacity: 0.3;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.main-card {
    background: rgba(90, 42, 130, 0.15);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(245, 215, 110, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.main-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(245, 215, 110, 0.1), transparent);
    animation: rotate 20s linear infinite;
}

.card-header {
    position: relative;
    z-index: 2;
}

.supply-number {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--divine-gold);
    margin: 1rem 0;
    text-shadow: 0 0 20px rgba(245, 215, 110, 0.5);
}

.supply-label {
    font-size: 1.25rem;
    color: var(--sanctuary-cream);
    opacity: 0.8;
}

.tokenomics-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(90, 42, 130, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(90, 42, 130, 0.2);
    transition: var(--transition-smooth);
}

.info-item:hover {
    background: rgba(90, 42, 130, 0.1);
    border-color: var(--galactic-magenta);
    transform: translateY(-5px);
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--divine-gold);
    margin-bottom: 0.5rem;
}

.info-content p {
    font-size: 1rem;
    color: var(--sanctuary-cream);
    opacity: 0.9;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--cosmic-black) 0%, rgba(90, 42, 130, 0.2) 100%);
    border-top: 1px solid rgba(90, 42, 130, 0.3);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--divine-gold);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--galactic-magenta);
    font-size: 1.1rem;
}

/* Footer links removed from markup; keep container non-disruptive */
.footer-links { display: none !important; }

/* Footer Social Icons */
.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.75rem;
    justify-content: flex-end; /* push icons to the right inside their area */
    justify-self: end; /* align grid item to the right side of footer */
    width: 100%;
}

.footer-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(90, 42, 130, 0.4);
    border-radius: 50%;
    color: var(--sanctuary-cream);
    text-decoration: none;
    background: rgba(90, 42, 130, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.footer-social .social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(245,215,110,0.15), transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.footer-social .social-icon:hover {
    border-color: var(--divine-gold);
    color: var(--divine-gold);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 12px -2px rgba(245,215,110,0.4);
}

.footer-social .social-icon:hover::before { opacity: 1; }

.footer-social svg { width: 22px; height: 22px; }

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--sanctuary-cream);
    margin-bottom: 1rem;
}

.footer-link {
    display: block;
    color: var(--sanctuary-cream);
    text-decoration: none;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--divine-gold);
    opacity: 1;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(90, 42, 130, 0.2);
    color: var(--sanctuary-cream);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links { display: none !important; }
    .footer-social { justify-content: flex-start; }
}

@media (max-width: 768px) {
    .nav {
        position: fixed !important;
        background: rgba(13, 13, 13, 0.95) !important;
        backdrop-filter: blur(15px) !important;
        transform: none !important;
        transition: none !important;
        will-change: auto !important;
    }
    
    .nav-container {
        transform: none !important;
        transition: none !important;
    }
    
    .nav-links {
        display: none;
    }
    
    /* Disable hover effects on mobile for navigation */
    .nav-link:hover {
        transform: none !important;
    }
    
    .social-link:hover {
        transform: none !important;
    }
    
    .hero-mascot {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    .mascot-image {
        width: 250px;
        height: 250px;
    }
    
    .halo-effect {
        width: 290px;
        height: 290px;
    }
    
    .contract-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .contract-address {
        font-size: 0.7rem;
        text-align: center;
        padding: 0.75rem 1rem;
        word-break: break-all;
        overflow-wrap: break-word;
        white-space: pre-wrap;
        max-width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-social { justify-content: center; }
    .footer-social { justify-self: center; width: auto; }
    .footer-brand { align-items: center; text-align: center; }
    .footer-content { align-items: center !important; text-align: center !important; }
}

@media (max-width: 480px) {
    .section-container {
        padding: 2rem 0.75rem;
    }
    
    .hero-container {
        padding: 1rem 0.75rem;
    }
    
    .nav-container {
        padding: 0.75rem 0.75rem;
    }
    
    .nav {
        position: fixed !important;
        background: rgba(13, 13, 13, 0.95) !important;
        backdrop-filter: blur(15px) !important;
        transform: none !important;
        transition: none !important;
        will-change: auto !important;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0.75rem 0.75rem;
        transition: none !important;
        transform: none !important;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-container {
        padding: 1rem 0.5rem;
    }
    
    .hero-mascot {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .mascot-image {
        width: 200px;
        height: 200px;
    }
    
    .halo-effect {
        width: 240px;
        height: 240px;
    }
    
    .contract-section {
        padding: 1.5rem 0.75rem;
        margin: 2rem 0;
    }
    
    .contract-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        max-width: 100%;
    }
    
    .contract-address {
        font-size: 0.65rem;
        padding: 0.75rem 0.5rem;
        word-break: break-all;
        overflow-wrap: break-word;
        white-space: pre-wrap;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .about-card,
    .step {
        padding: 1.5rem;
    }
    
    .main-card {
        padding: 2rem;
    }
}

/* Animation Classes for GSAP */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
}

/* Copy Success Animation */
.copy-success {
    background: linear-gradient(45deg, #4CAF50, #45a049) !important;
    transform: scale(0.95);
}

.copy-success svg {
    animation: checkmark 0.5s ease;
}

@keyframes checkmark {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}