/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
    /*************** ADD MOBILE ONLY CSS HERE  ***************/


}

:root {
    /* --primary-gradient: linear-gradient(135deg, #000000e0 0%, #2196F3 100%); */
    /* --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%); */
    --primary-gradient: linear-gradient(90deg, #E53E3E 0%, #1E40AF 100%);
    --secondary-gradient: linear-gradient(90deg, #E53E3E 0%, #1E40AF 100%);
    --dark-bg: #1a1a2e;
    --card-bg: #16213e;
    --text-primary: #ffffff;
    --text-secondary: #b8c5d1;
    --accent: #1E40AF;
    --primary-red: #E53E3E;
    --secondary-blue: #1E40AF;
}

:host,
:root {
    --fa-style-family-classic: "Font Awesome 6 Free";
    --fa-font-solid: normal 900 1em / 1 "Font Awesome 6 Free";
}

body {
    background: var(--dark-bg);
    color: var(--text-primary);
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
}

.navbar {
    background: rgba(22, 33, 62, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 1.8rem;
}

.hero-section {
    background: var(--primary-gradient);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    overflow: hidden;

}

/* .card-title {
    color: #fff;
} */

.card-text {
    color: #fff;
}

.small,
small {
    color: #fff;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.token-card {
    position: relative;
}

.token-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary-gradient);
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    border-radius: 25px;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 25px;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--accent);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.stats-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-live {
    background: var(--accent-gradient);
    color: white;
}

.status-upcoming {
    background: var(--secondary-gradient);
    color: white;
}

.status-ended {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
}

.progress {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.progress-bar {
    background: var(--secondary-gradient);
    border-radius: 4px;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-elements::before,
.floating-elements::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-elements::before {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-elements::after {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.filter-tabs {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 5px;
    display: inline-flex;
    margin: 20px 0;
}

.filter-tab {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    /* padding: 10px 20px; */
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-tab.active {
    background: var(--primary-gradient);
    color: white;
}

.search-box-home {
    /* background: rgba(255, 255, 255, 0.05) !important; */
    /* border: 1px solid rgba(255, 255, 255, 0.1) !important; */
    border-radius: 25px !important;
    padding: 12px 20px !important;
    color: white !important;
    width: 100%;
    max-width: 400px;
}

.search-box-home:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.footer {
    background: var(--card-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 0 30px;
    margin-top: 80px;
}

/* Gradient Color Picker Controls */
.gradient-controls {
    position: fixed;
    top: 80px;
    right: 20px;
    background: var(--card-bg);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    min-width: 250px;
}

.gradient-preset {
    padding: 10px;
    border-radius: 8px;
    margin: 5px 0;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.gradient-preset:hover {
    border-color: var(--accent);
}

.gradient-preset.active {
    border-color: var(--accent);
    background: rgba(0, 212, 255, 0.1);
}

#brokers {
    /* background: #1a1a2e; */
    background: linear-gradient(90deg, #E53E3E 0%, #1E40AF 100%);
}

#brokers h6,
#brokers h5 {
    color: #fff;
}

/*****************Card*************************/
.stats-card {
    /* background: rgba(255, 255, 255, 0.95); */
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.filter-section {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.token-card {
    background: white;
    border-radius: 20px;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.token-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.token-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-color);
}

.verified-badge {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-weight: 600;
}

.rating-stars {
    color: #fbbf24;
}

.price-tag {
    /* background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)); */
    color: var(--bs-secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
}

.price-text {
    padding: 0.5rem 1rem;
}

.network-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.network-ethereum {
    background: #627eea;
    color: white;
}

.network-bsc {
    background: #f3ba2f;
    color: #000;
}

.network-polygon {
    background: #8247e5;
    color: white;
}

.buy-btn {
    background: linear-gradient(45deg, var(--success-color), #059669);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.buy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.trending-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

.broker-endorsed {
    border-left: 4px solid var(--warning-color);
}

.cta-section {
    background: linear-gradient(45deg, #1f2937, #111827);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
}


.btn-primary-custom,
.btn-secondary-custom {
    position: relative;
    color: #fff !important;
    /* font-size: 16px !important; */
    border-radius: 50px !important;
    /* font-weight: 600; */
    transition: all 0.3s !important;
    box-shadow: none;
    border: none;
    z-index: 1;
    padding: 4px 20px !important;
    cursor: pointer;
    overflow: hidden;
    background: var(--primary-gradient);
}

.btn-primary-custom::before,
.btn-secondary-custom::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    /* border thickness */
    /* background: linear-gradient(135deg, var(--primary-red), var(--secondary-blue));
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; */
    z-index: -1;
    filter: blur(0.5px);
    /* smoothens the edge */
}


.btn-secondary-custom:hover,
.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}