/* ===========================================
   HOMEPAGE STYLES
   Lightning Faucet - Free Bitcoin Focus
   =========================================== */

/* Hero Section - FREE BITCOIN */
.hero-section {
    background: radial-gradient(ellipse at center top, rgba(247, 147, 26, 0.2) 0%, transparent 60%),
                linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 5rem 2rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-btc-orange), transparent);
}

.hero-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(247, 147, 26, 0.5));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-title-highlight {
    background: linear-gradient(135deg, var(--color-btc-orange), var(--color-btc-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--color-btc-orange), var(--color-btc-gold));
    color: #000;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1.25rem 3rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(247, 147, 26, 0.4);
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(247, 147, 26, 0.5);
}

.hero-cta-icon {
    font-size: 1.5rem;
}

.hero-note {
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hero-note a {
    color: var(--color-btc-orange);
    text-decoration: none;
}

.hero-note a:hover {
    text-decoration: underline;
}

/* Trust badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
}

.trust-badge-icon {
    color: var(--color-btc-orange);
}

/* Products Section */
.products-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-top: -2rem;
    margin-bottom: 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-btc-orange), var(--color-btc-gold));
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-btc-orange);
    box-shadow: 0 12px 40px rgba(247, 147, 26, 0.15);
}

.product-card:hover::before {
    opacity: 1;
}

.product-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.product-info {
    flex: 1;
}

.product-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.product-badge.live {
    background: linear-gradient(135deg, var(--color-btc-orange), #ff9f1c);
    color: #000;
}

.product-badge.coming-soon {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.product-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.product-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.2s;
}

.product-cta svg {
    flex-shrink: 0;
    fill: currentColor;
}

.product-card.casino .product-cta {
    background: linear-gradient(135deg, var(--color-btc-orange), #ff9f1c);
    color: #000;
}

.product-card.casino:hover .product-cta {
    box-shadow: 0 4px 15px rgba(247, 147, 26, 0.4);
}

.product-card.prediction .product-cta {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
}

.product-card.prediction:hover .product-cta {
    border-color: var(--color-btc-orange);
    color: var(--color-btc-orange);
}

/* Explore Section */
.explore-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.explore-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.explore-card:hover {
    border-color: var(--color-btc-orange);
    transform: translateY(-3px);
}

.explore-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.explore-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.explore-description {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.explore-tag {
    margin-left: auto;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    flex-shrink: 0;
}

.explore-tag.cost {
    background: rgba(247, 147, 26, 0.15);
    color: var(--color-btc-orange);
}

.explore-tag.free {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.explore-tag.donate {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
}

/* Trust Section */
.trust-section {
    background: var(--bg-secondary);
    padding: 3rem 2rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
}

.trust-item.highlight {
    border-color: rgba(247, 147, 26, 0.3);
    background: rgba(247, 147, 26, 0.05);
}

.trust-icon {
    font-size: 1.5rem;
}

.trust-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.trust-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-label a {
    color: var(--color-btc-orange);
    text-decoration: none;
}

.trust-label a:hover {
    text-decoration: underline;
}

/* More Section */
.more-section {
    background: var(--bg-secondary);
    padding: 4rem 2rem;
}

.more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.more-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.more-card:hover {
    border-color: var(--color-btc-orange);
    transform: translateY(-4px);
}

.more-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.more-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.more-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .explore-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .more-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 3rem 1rem 4rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }
}
