/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pump-green: #54d592;
    --pump-green-dark: #3bb870;
    --pump-green-light: #7de0a8;
    --pump-black: #0f0f0f;
    --pump-dark-gray: #1a1a1a;
    --pump-gray: #2a2a2a;
    --pump-gray-light: #3a3a3a;
    --pump-white: #ffffff;
    --pump-gray-text: #cccccc;
    --pump-accent: #932993;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-light: #999999;
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a1a1a;
    --bg-dark: #0f0f0f;
    --border-color: #54d592;
    --shadow-sm: 0 1px 2px 0 rgb(84, 213, 146, 0.1);
    --shadow-md: 0 4px 6px -1px rgb(84, 213, 146, 0.2);
    --shadow-lg: 0 10px 15px -3px rgb(84, 213, 146, 0.3);
    --shadow-xl: 0 20px 25px -5px rgb(84, 213, 146, 0.4);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--pump-green);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pump-green);
}

.nav-logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--pump-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pump-green);
    transition: width 0.3s ease;
}

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

/* Hero Section - Isolated */
section.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2a2a2a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

section.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

section.hero .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

section.hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

section.hero .hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

section.hero .gradient-text {
    background: linear-gradient(45deg, #54d592, #7de0a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

section.hero .hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

section.hero .hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--pump-green);
    color: var(--pump-black);
    box-shadow: var(--shadow-lg);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: var(--pump-dark-gray);
    color: var(--pump-green);
    border: 2px solid var(--pump-green);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--pump-green);
    color: var(--pump-black);
    transform: translateY(-2px);
}

/* Hero Visual - Isolated */
section.hero .hero-visual {
    position: relative;
}

section.hero .stream-preview {
    background: var(--pump-gray);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(20px);
    border: 2px solid var(--pump-green);
    box-shadow: var(--shadow-xl);
}

.stream-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.streamer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #54d592, #7de0a8);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.streamer-details {
    display: flex;
    flex-direction: column;
}

.streamer-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.viewer-count {
    font-size: 0.8rem;
    opacity: 0.8;
}

.total-pot {
    font-size: 0.8rem;
    color: var(--pump-green);
    font-weight: 600;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #ef4444;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.betting-panel {
    background: var(--pump-dark-gray);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid var(--pump-green);
}

.bet-title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.bet-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.bet-option {
    background: var(--pump-gray);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--pump-green);
    transition: all 0.3s ease;
}

.bet-option:hover {
    background: var(--pump-gray-light);
    transform: translateY(-2px);
}

.bet-option.yes {
    border-color: var(--pump-green);
}

.bet-option.no {
    border-color: #ef4444;
}

.option-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.odds {
    font-weight: 700;
    color: var(--pump-green);
}

.stake {
    font-size: 0.8rem;
    opacity: 0.8;
}

.bet-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--pump-dark-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--pump-gray);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid var(--pump-green);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--pump-green), var(--pump-green-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--pump-black);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.example-tag {
    background: var(--pump-dark-gray);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--pump-gray-text);
    border: 1px solid var(--pump-green);
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.highlight i {
    color: var(--pump-green);
    width: 16px;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--pump-dark-gray);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
}

.step:nth-child(even) {
    grid-template-columns: auto auto 1fr;
}

.step:nth-child(even) .step-content {
    order: 3;
}

.step:nth-child(even) .step-visual {
    order: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--pump-green), var(--pump-green-light));
    color: var(--pump-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.step-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.step-visual {
    background: var(--pump-dark-gray);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid var(--pump-green);
}

.creation-panel, .betting-interface, .resolution-panel {
    background: var(--pump-gray);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--pump-green);
}

.panel-header {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.panel-field {
    margin-bottom: 15px;
}

.panel-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--text-secondary);
}

.panel-field input,
.panel-field select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--pump-green);
    border-radius: 8px;
    background: var(--pump-dark-gray);
    color: var(--pump-white);
}

.bet-question {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.bet-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.bet-option {
    background: var(--pump-dark-gray);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid var(--pump-green);
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.bet-btn {
    background: var(--pump-green);
    color: var(--pump-black);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 600;
}

.resolution-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--pump-green);
    font-weight: 600;
}

.payout-info {
    text-align: center;
}

.winner {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.payout {
    color: var(--pump-green);
    font-weight: 600;
}

/* Growth & Impact Section */
.coming-soon {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--pump-gray), var(--pump-gray-light));
    color: var(--pump-green);
    text-align: center;
}

.growth-content {
    max-width: 1200px;
    margin: 0 auto;
}

.growth-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--pump-green);
}

.growth-header p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    color: var(--pump-green-light);
}

.growth-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-item {
    background: rgba(15, 15, 15, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--pump-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    color: var(--pump-green-light);
}

.growth-visualization {
    margin: 4rem 0;
}

.chart-container {
    background: rgba(15, 15, 15, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
}

.chart-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--pump-green);
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 200px;
    margin-bottom: 1rem;
    gap: 1rem;
}

.bar {
    background: var(--pump-black);
    width: 60px;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
    position: relative;
}

.bar:hover {
    background: rgba(15, 15, 15, 0.8);
    transform: scale(1.05);
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    opacity: 0.8;
}

.prediction-impact {
    margin: 4rem 0;
}

.prediction-impact h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 600;
    color: var(--pump-green);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.impact-item {
    background: rgba(15, 15, 15, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: left;
}

.impact-icon {
    width: 60px;
    height: 60px;
    background: var(--pump-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.impact-icon i {
    font-size: 1.5rem;
    color: var(--pump-green);
}

.impact-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--pump-green);
}

.impact-item p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    color: var(--pump-green-light);
}

.coming-soon-content {
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    background: rgba(15, 15, 15, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    backdrop-filter: blur(10px);
}

.coming-soon-icon i {
    font-size: 2rem;
    color: var(--pump-black);
}

.coming-soon h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.coming-soon p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 15, 15, 0.2);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.feature-item i {
    color: var(--pump-black);
}

.coming-soon-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--pump-dark-gray);
    color: var(--pump-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--pump-green);
    color: var(--pump-black);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(84, 213, 146, 0.2);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    section.hero .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    section.hero .hero-title {
        font-size: 2.5rem;
    }
    
    section.hero .hero-cta {
        justify-content: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .step:nth-child(even) .step-content,
    .step:nth-child(even) .step-visual {
        order: unset;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .coming-soon-cta {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    section.hero .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .step-visual {
        padding: 20px;
    }
}