@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #FF6B35 0%, #F7931E 25%, #FFD700 50%, #FF8C00 75%, #FF4500 100%);
    --secondary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --dark-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-primary: #ffffff;
    --text-secondary: #cbd5e0;
    --text-accent: #FFD700;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-gradient);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(247, 147, 30, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: 52px;
    height: 52px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-accent);
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--primary-gradient);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: var(--shadow-md), var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

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

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

.cta-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 215, 0, 0.4);
}

/* Hero Section */
.hero {
    margin-top: 100px;
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(16, 21, 62, 0.8) 50%, rgba(15, 52, 96, 0.7) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 32px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 50%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--text-secondary);
    line-height: 1.7;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    color: white;
    padding: 18px 36px;
    border: 2px solid var(--glass-border);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--text-accent);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(255, 215, 0, 0.3);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(255, 107, 53, 0.3));
    animation: float-gentle 6s ease-in-out infinite;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

/* Section Styles */
.section {
    padding: 120px 0;
    position: relative;
}

/* Eligibility Checker Section */
.eligibility-checker {
    background: linear-gradient(135deg, rgba(34, 49, 63, 0.6) 0%, rgba(25, 39, 52, 0.8) 50%, rgba(20, 33, 61, 0.7) 100%);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.eligibility-checker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 60%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.eligibility-content {
    position: relative;
    z-index: 2;
}

.eligibility-header {
    text-align: center;
    margin-bottom: 80px;
}

.eligibility-form-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.eligibility-form {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.eligibility-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.eligibility-form:hover::before {
    opacity: 0.03;
}

.eligibility-form:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
}

.form-group {
    margin-bottom: 32px;
}


.wallet-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 16px;
    padding: 18px 24px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Inter', monospace;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.wallet-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.wallet-input:focus {
    border-color: var(--text-accent);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15), var(--shadow-md);
    background: rgba(255, 255, 255, 0.08);
}


.form-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.check-eligibility-btn {
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    text-align: center;
    justify-content: center;
    gap: 0;
}

/* Eligibility Stats */
.eligibility-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.stat-card:hover::before {
    opacity: 0.05;
}

.stat-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.2;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}


.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.7;
    opacity: 0.9;
}

/* Ecosystem Section - Different Background */
.ecosystem-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(34, 49, 63, 0.9) 0%, rgba(25, 39, 52, 0.95) 50%, rgba(20, 33, 61, 0.9) 100%);
    backdrop-filter: blur(10px);
}

.ecosystem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(118, 75, 162, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.ecosystem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.ecosystem-text {
    padding-right: 40px;
}

.ecosystem-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
}

.ecosystem-text p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.9;
}

.ecosystem-text strong {
    color: var(--text-accent);
    font-weight: 600;
}

.ecosystem-cards-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    padding-top: 100px;
    padding-right: 60px;
}

.ecosystem-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.ecosystem-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 180px;
}

.ecosystem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.ecosystem-card:hover::before {
    opacity: 0.1;
}

.ecosystem-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.ecosystem-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
    transition: transform 0.3s ease;
}

.ecosystem-card:hover img {
    transform: scale(1.1) rotate(5deg);
}

.ecosystem-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
    line-height: 1.3;
}

/* Token Cards */
.token-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    margin-top: 80px;
}

.token-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.token-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.token-card:hover::before {
    opacity: 0.05;
}

.token-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 50px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
}

.token-header {
    padding: 40px 32px 20px;
    text-align: center;
    position: relative;
}

.token-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 24px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transition: transform 0.3s ease;
}

.token-card:hover .token-icon {
    transform: scale(1.05) rotate(5deg);
}

.token-icon img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.token-content {
    padding: 0 32px 40px;
}

.token-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.live-charts {
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    color: var(--text-accent);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.token-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.token-highlight {
    color: var(--text-accent);
    font-weight: 600;
}

/* How to Buy Section */
.how-to-buy {
    background: rgba(255, 107, 53, 0.05);
    backdrop-filter: blur(10px);
}

.buy-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.buy-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.astronaut-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.astronaut-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(255, 107, 53, 0.3));
    animation: float-gentle 8s ease-in-out infinite;
}

/* Quick Start Guide */
.guide-steps {
    display: grid;
    gap: 48px;
    margin-top: 80px;
}

.step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    align-items: center;
    padding: 32px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    box-shadow: var(--shadow-md), var(--shadow-glow);
    transition: transform 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
}

.step-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

/* ShibaSwap Section - Different Background */
.shibaswap {
    background: linear-gradient(135deg, rgba(16, 33, 62, 0.8) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(15, 52, 96, 0.8) 100%);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.shibaswap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.shibaswap-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.platform-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 40px rgba(102, 126, 234, 0.3);
}

.platform-image img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.platform-image:hover img {
    transform: scale(1.05);
}

.certik-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 16px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-accent);
}

/* Modern Footer Design */
.footer {
    background: linear-gradient(135deg, rgba(15, 15, 25, 0.98) 0%, rgba(10, 10, 20, 0.99) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 80px 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-logo img {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.footer-brand-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social-link {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-social-link:hover::before {
    opacity: 1;
}

.footer-social-link:hover {
    transform: translateY(-4px) scale(1.1);
}

.footer-social-link img {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 2;
}

/* Specific social colors for footer */
.footer-social-link[data-social="twitter"] {
    background: linear-gradient(135deg, #1da1f2, #0d95e8);
}

.footer-social-link[data-social="reddit"] {
    background: linear-gradient(135deg, #ff4500, #ff6600);
}

.footer-social-link[data-social="discord"] {
    background: linear-gradient(135deg, #5865f2, #4752c4);
}

.footer-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding: 4px 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-links a:hover {
    color: var(--text-accent);
    transform: translateX(4px);
}

.footer-newsletter {
    margin-top: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.newsletter-input {
    flex: 1;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px 16px;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--text-accent);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.newsletter-button {
    background: var(--primary-gradient);
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 14px;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--text-accent);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .buy-content,
    .shibaswap-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .ecosystem-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .ecosystem-text {
        padding-right: 0;
    }
    
    .ecosystem-text h2 {
        text-align: center;
    }
    
    .ecosystem-cards-container {
        justify-content: center;
        padding-top: 0;
    }
    
    .ecosystem-cards {
        justify-content: center;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .eligibility-form-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .eligibility-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stat-card {
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .section,
    .ecosystem-section {
        padding: 80px 0;
    }
    
    .footer-content {
        padding: 60px 0 30px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .ecosystem-content {
        gap: 40px;
    }
    
    .ecosystem-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .ecosystem-card {
        width: 100%;
        max-width: 280px;
    }
    
    .token-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .hero-buttons,
    .buy-buttons {
        justify-content: center;
        gap: 16px;
    }
    
    .step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }
    
    .guide-steps {
        gap: 32px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .eligibility-form {
        padding: 32px 24px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .check-eligibility-btn {
        min-width: unset;
    }
    
    .eligibility-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* Floating Elements */
.floating-coins {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.floating-coin {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
    filter: blur(1px);
}

.floating-coin:nth-child(1) {
    top: 15%;
    right: 8%;
    animation-delay: 0s;
    width: 120px;
    height: 120px;
}

.floating-coin:nth-child(2) {
    top: 55%;
    right: 3%;
    animation-delay: 2.5s;
    width: 80px;
    height: 80px;
}

.floating-coin:nth-child(3) {
    top: 75%;
    right: 12%;
    animation-delay: 5s;
    width: 100px;
    height: 100px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-20px) rotate(5deg) scale(1.05);
    }
    50% {
        transform: translateY(-30px) rotate(0deg) scale(1);
    }
    75% {
        transform: translateY(-10px) rotate(-5deg) scale(0.95);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    opacity: 0.8;
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Focus States */
button:focus,
a:focus {
    outline: 2px solid var(--text-accent);
    outline-offset: 2px;
}

/* Smooth Animations */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
} 

/* Eligibility Result Styling */
.eligibility-result {
    display: none;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 32px;
    padding: 20px 24px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eligibility-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    min-height: 20px;
    flex-shrink: 0;
}

.eligibility-icon svg {
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.eligibility-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px; /* Match the icon height for better alignment */
    flex: 1;
}

/* Success state */
.eligibility-result:has(.eligibility-icon.ok) {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.2) 100%);
    border: 1px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.15), inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.eligibility-result:has(.eligibility-icon.ok) .eligibility-text {
    color: #10b981;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Error state */
.eligibility-result:has(.eligibility-icon.error) {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.2) 100%);
    border: 1px solid rgba(239, 68, 68, 0.4);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.15), inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.eligibility-result:has(.eligibility-icon.error) .eligibility-text {
    color: #ef4444;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .eligibility-result {
        padding: 16px 20px;
        gap: 12px;
    }
    
    .eligibility-text {
        font-size: 14px;
    }
} 