:root {
    --white: #FFFFFF;
    --cream: #FEFCFB;
    --soft-pink: #FFF5F5;
    --soft-blue: #F0F9FF;
    --light-blue: #DBEAFE;
    --blue: #60A5FA;
    --blue-medium: #3B82F6;
    --blue-dark: #2563EB;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --border-soft: rgba(59, 130, 246, 0.15);
    --shadow-soft: 0 4px 20px rgba(59, 130, 246, 0.12);
    --shadow-medium: 0 8px 30px rgba(59, 130, 246, 0.15);
    --shadow-hover: 0 12px 40px rgba(59, 130, 246, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Snowflakes */
.snowflakes-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    color: rgba(96, 165, 250, 0.5);
    font-size: 1em;
    animation: snowfall linear infinite;
}

@keyframes snowfall {
    0% {
        transform: translateY(-10px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Main Hero */
.main-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--soft-pink) 0%, var(--soft-blue) 100%);
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(96, 165, 250, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(251, 191, 36, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-main-content {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 10;
}

.hero-character-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.character-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-character {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 40px;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 20px 60px rgba(96, 165, 250, 0.25));
    animation: gentle-float 6s ease-in-out infinite;
}

@keyframes gentle-float {
    0%, 100% {
        transform: translateY(0px) rotate(-1deg);
    }
    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.snow-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.2) 0%, transparent 70%);
    animation: pulse-circle 4s ease-in-out infinite;
    z-index: 1;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.circle-2 {
    width: 350px;
    height: 350px;
    bottom: -30px;
    right: -30px;
    animation-delay: 1s;
}

.circle-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

@keyframes pulse-circle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.hero-info {
    flex: 1;
    max-width: 550px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--white);
    border: 2px solid var(--border-soft);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--blue-medium);
    margin-bottom: 32px;
    box-shadow: var(--shadow-soft);
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.hero-main-title {
    font-family: 'Comfortaa', cursive;
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.title-gradient {
    background: linear-gradient(135deg, var(--blue-medium) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-main-text {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

.btn-hero-primary {
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--blue-medium) 0%, var(--blue) 100%);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-listen {
    padding: 18px 32px;
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-soft);
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-listen:hover {
    background: var(--soft-blue);
    border-color: var(--blue-medium);
    transform: translateY(-2px);
}

/* Contract Card */
.contract-card-section {
    padding: 40px 0;
    position: relative;
    z-index: 10;
    background: var(--white);
}

.contract-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--soft-blue) 0%, var(--light-blue) 100%);
    border-radius: 32px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--border-soft);
}

.contract-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.contract-icon {
    font-size: 1.5rem;
}

.contract-title {
    font-family: 'Comfortaa', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.contract-input-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border-radius: 20px;
    padding: 4px;
    box-shadow: var(--shadow-soft);
}

.contract-code {
    flex: 1;
    font-family: 'Inter', monospace;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 16px 20px;
    word-break: break-all;
    background: transparent;
    border: none;
}

.contract-code.coming-soon-text {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    color: var(--text-gray);
    font-weight: 500;
}

.btn-copy-contract {
    padding: 14px 24px;
    background: var(--blue-medium);
    color: var(--white);
    border: none;
    border-radius: 16px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-copy-contract:hover {
    background: var(--blue-dark);
    transform: scale(1.05);
}

.btn-copy-contract.copied {
    background: #10B981;
}

/* Story Section */
.story-section {
    padding: 120px 0;
    background: var(--soft-pink);
    position: relative;
    z-index: 10;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 100px;
    align-items: center;
}

.story-image-side {
    position: relative;
}

.story-image-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 8px solid var(--white);
}

.story-image {
    width: 100%;
    height: auto;
    display: block;
}

.story-decoration {
    position: absolute;
    font-size: 3rem;
    color: var(--blue);
    opacity: 0.4;
    z-index: 2;
    animation: decor-float 5s ease-in-out infinite;
}

.deco-1 {
    top: -30px;
    right: -20px;
    animation-delay: 0s;
}

.deco-2 {
    bottom: -30px;
    left: -20px;
    animation-delay: 2s;
}

@keyframes decor-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

.story-text-side {
    position: relative;
}

.story-title {
    font-family: 'Comfortaa', cursive;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.story-text {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.9;
}

.story-text p {
    margin-bottom: 24px;
}

.story-lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.story-final {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 32px;
}

.story-text strong {
    color: var(--blue-dark);
    font-weight: 700;
}

/* Links Grid */
.links-grid-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    z-index: 10;
}

.links-header {
    text-align: center;
    margin-bottom: 60px;
}

.links-title {
    font-family: 'Comfortaa', cursive;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.links-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: linear-gradient(135deg, var(--soft-blue) 0%, var(--light-blue) 100%);
    border: 2px solid var(--border-soft);
    border-radius: 28px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.platform-card:hover::before {
    left: 100%;
}

.platform-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--blue);
}

.platform-card.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.platform-card.coming-soon:hover {
    transform: none;
    box-shadow: var(--shadow-soft);
    border-color: var(--border-soft);
}

.platform-card.coming-soon:hover::before {
    left: -100%;
}

.platform-icon {
    font-size: 3rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.platform-icon-svg {
    width: 60px;
    height: 60px;
}

.platform-icon-img {
    width: 60px;
    height: 60px;
}

.dex-icon {
    width: 100%;
    height: 100%;
    color: var(--blue-medium);
}

.pump-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.platform-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.platform-name {
    font-family: 'Comfortaa', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.platform-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.platform-arrow {
    font-size: 2rem;
    color: var(--blue-medium);
    opacity: 0.6;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.platform-card:hover .platform-arrow {
    opacity: 1;
    transform: translateX(6px);
}

/* Features */
.features-section {
    padding: 80px 0;
    background: var(--soft-blue);
    position: relative;
    z-index: 10;
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    justify-items: center;
}

.feature-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: 24px;
    border: 2px solid var(--border-soft);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: var(--blue);
}

.feature-emoji {
    font-size: 3rem;
    margin-bottom: 16px;
}

.feature-label {
    font-family: 'Comfortaa', cursive;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Footer */
.footer-section {
    padding: 80px 0 40px;
    background: var(--cream);
    border-top: 2px solid var(--border-soft);
    position: relative;
    z-index: 10;
}

.footer-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    object-fit: cover;
    border: 3px solid var(--light-blue);
    box-shadow: var(--shadow-soft);
}

.footer-logo-text {
    font-family: 'Comfortaa', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.footer-message {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

.footer-disclaimer {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-main-content {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .story-image-side {
        order: -1;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .features-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .main-hero {
        padding: 60px 0 40px;
    }
    
    .contract-card {
        padding: 24px;
    }
    
    .contract-input-wrapper {
        flex-direction: column;
    }
    
    .btn-copy-contract {
        width: 100%;
    }
    
    .features-wrapper {
        grid-template-columns: 1fr;
    }
}
