.elementor-2 .elementor-element.elementor-element-c70dcff{--display:flex;}.elementor-2 .elementor-element.elementor-element-fe48158.xpro-widget-bg-overlay:before{transition:background 0.3s;}body.elementor-page-2:not(.elementor-motion-effects-element-type-background), body.elementor-page-2 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, var( --e-global-color-astglobalcolor4 ) 0%, #0F172A 100%);}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-fe48158 *//* ===== Homepage Styling ===== */
.crypto-homepage {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
    background-color: #0f172a;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 0 0 20px 20px;
    margin-bottom: 60px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #94a3b8;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Search Bar */
.search-bar-container {
    margin-bottom: 30px;
}

.search-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.search-form input {
    flex: 1;
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: #e2e8f0;
    font-size: 16px;
    outline: none;
}

.search-form input::placeholder {
    color: #64748b;
}

.search-button {
    padding: 0 25px;
    background: #3b82f6;
    border: none;
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.search-button:hover {
    background: #2563eb;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: #3b82f6;
    color: white;
}

.cta-button.primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.cta-button.secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* Top Picks Section */
.top-picks-section {
    padding: 60px 0;
    text-align: center;
}

.top-picks-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #f1f5f9;
}

.category-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.category-card {
    background: #1e293b;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #f1f5f9;
}

.category-card p {
    color: #94a3b8;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.card-cta {
    display: inline-block;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.card-cta:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* Latest Reviews Section */
.latest-reviews-section {
    padding: 60px 0;
    background: #1e293b;
    border-radius: 20px;
    margin-bottom: 60px;
}

.latest-reviews-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #f1f5f9;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background: #0f172a;
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-logo {
    width: 50px;
    height: 50px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
}

.review-title-container h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #f1f5f9;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
    color: #fbbf24;
    font-size: 14px;
}

.review-excerpt {
    color: #94a3b8;
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.review-cta {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.review-cta:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* Trust Signals Section */
.trust-signals-section {
    padding: 60px 0;
    text-align: center;
}

.trust-signals-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #f1f5f9;
}

.trust-signals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.trust-signal-card {
    background: #1e293b;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.trust-signal-card:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.trust-signal-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #f1f5f9;
}

.trust-signal-card p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.5;
}

.trust-cta {
    text-align: center;
    margin-top: 20px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    margin-bottom: 40px;
}

.newsletter-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f1f5f9;
}

.newsletter-section p {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #334155;
    background: #1e293b;
    color: #e2e8f0;
    font-size: 16px;
}

.newsletter-form input::placeholder {
    color: #64748b;
}

.newsletter-form button {
    padding: 12px 20px;
    background: #3b82f6;
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #2563eb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .search-form {
        flex-direction: column;
    }

    .search-form input {
        padding: 12px 20px;
        border-radius: 12px 12px 0 0;
    }

    .search-form button {
        padding: 12px 20px;
        border-radius: 0 0 12px 12px;
    }

    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .category-cards-grid,
    .reviews-grid,
    .trust-signals-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 6px;
    }

    .newsletter-form button {
        width: 100%;
    }
}/* End custom CSS */