/* Find Moolah Section Base */
.section_find_moolah {
    background: linear-gradient(135deg, #16213e 0%, #1a2851 50%, #526EF9 100%);
    color: #fff;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Find Moolah Section Complete Styles */
.find_moolah_container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.find_moolah_left {
    flex: 1;
    background-image: url('../../images/trade/super.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    position: relative;
    min-height: 500px;
}

.find_moolah_left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(22, 33, 62, 0.6);
    z-index: 1;
}

.find_moolah_content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.find_moolah_title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.find_moolah_subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.community_creation_button {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.community_creation_button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.find_moolah_right {
    flex: 1;
    background: linear-gradient(45deg, #526EF9, #6B7FFC);
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.find_moolah_right::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;
    z-index: 1;
}

.exchanges_container {
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.exchanges_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.exchange_item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
}

.exchange_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.exchange_item:hover::before {
    opacity: 1;
}

.exchange_item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.exchange_logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.exchange_item:hover .exchange_logo {
    transform: scale(1.1);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}

.exchange_name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    hyphens: auto;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contract_address {
    display: flex;
    align-items: center;
    background: #2a2a2e;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #3a3a3e;
    font-family: 'SF Mono', 'Menlo', 'Monaco', monospace;
    max-width: max-content;
    margin: 1.5rem auto 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.address_text {
    color: #a0a0a0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 0.75rem;
}

.copy_button {
    background: transparent;
}

/* Find Moolah Responsive */
@media screen and (max-width: 1024px) {
    .section_find_moolah {
        padding: 0;
    }
    
    .find_moolah_container {
        flex-direction: column;
        border-radius: 20px;
        max-width: 900px;
    }
    
    .find_moolah_left,
    .find_moolah_right {
        flex: none;
        min-height: 400px;
    }
    
    .find_moolah_title {
        font-size: 3rem;
    }
    
    .exchanges_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
    
    .exchange_item {
        padding: 1.5rem;
    }
    
    .exchange_logo {
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 768px) {
    .section_find_moolah {
        padding: 0;
    }
    
    .find_moolah_container {
        border-radius: 16px;
    }
    
    .find_moolah_left,
    .find_moolah_right {
        padding: 2.5rem;
        min-height: 350px;
    }
    
    .find_moolah_title {
        font-size: 2.5rem;
    }
    
    .find_moolah_subtitle {
        font-size: 1.25rem;
    }
    
    .exchanges_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .exchange_item {
        padding: 1.4rem;
        border-radius: 16px;
    }
    
    .exchange_logo {
        width: 46px;
        height: 46px;
        border-radius: 10px;
    }
    
    .exchange_name {
        font-size: 1rem;
    }

    .copy_button {
        display: none;
    }

    .contract_address {
        padding: 0.75rem 1rem; /* Adjust padding now that button is gone */
        justify-content: center;
    }

    .address_text {
        margin-right: 0;
    }
}

@media screen and (max-width: 480px) {
    .section_find_moolah {
        padding: 0;
    }
    
    .find_moolah_container {
        border-radius: 12px;
    }
    
    .find_moolah_left,
    .find_moolah_right {
        padding: 2rem;
        min-height: 300px;
    }
    
    .find_moolah_title {
        font-size: 2rem;
    }
    
    .find_moolah_subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .exchanges_grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
    
    .exchange_item {
        padding: 1.2rem;
        border-radius: 14px;
    }
    
    .exchange_logo {
        width: 42px;
        height: 42px;
        border-radius: 8px;
    }
    
    .exchange_name {
        font-size: 0.9rem;
    }
} 