.opportunity-card {
    position: relative;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 16px;
    height: 100%;
    transition: all 0.2s ease;
}

.opportunity-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid var(--color-primary);
}

.opportunity-card:hover .opportunity-title{
    color: var(--color-primary)
}

.opportunity-card:hover .opportunity-btn i{
    transform: translateX(2px);
}

.opportunity-header{
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    padding: 10px;            
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.opportunity-header i{
    font-size: 1.5rem;
}

.opportunity-status {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 500;
}

.opportunity-status.available{
    background: #dcfce7;
    color: #16a34a;
}

.opportunity-status.comingsoon {
    background: rgba(255, 149, 0, 0.15);
    color: #ff9f0a;
    border: 1px solid rgba(255, 149, 0, 0.35);
    font-weight: 500;
}

.opportunity-status.beta {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.35);
}

.opportunity-status.development {
    background: rgba(234, 179, 8, 0.15);
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, 0.35);
}

.opportunity-title {
    color: var(--color-text);
    font-size: 20px;
    margin-bottom: 10px;
}

.opportunity-desc {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.opportunity-features-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #64748b;
    margin-bottom: 10px;
}

.opportunity-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 22px;
}

.opportunity-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opportunity-features li {
    font-size: 11px;
    color: var(--color-text);
    margin-bottom: 8px;
    white-space: nowrap;
}

.opportunity-features i {
    color: #3b82f6;
    margin-right: 8px;
}

.opportunity-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #2563eb;
    color: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.opportunity-btn:hover {
    background: #1d4ed8;
    color: #fff;
}

.cta-section-get-started {
    padding: 40px 0;
    background: transparent;
}

.cta-box {
    background: oklch(0.96 0.02 225.77);
    border: 1px solid var(--color-primary);
    border-radius: 14px;
    padding: 40px 20px;        
}

:root.dark .cta-box{
    background: #08181f;        
}

.cta-text {
    font-size: 14px;
    color: #888;
    max-width: 620px;
    margin: 0 auto;
}

.cta-btn-primary {
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
}

.cta-btn-outline {
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    color: #60a5fa;
    border-color: #2563eb;
}

.cta-btn-outline:hover {
    background: rgba(37,99,235,0.15);
}

.project-info-box {
    background: #f3f9ff;
    border: 1px solid rgba(59,130,246,0.25);
    border-radius: 12px;
    padding: 20px 24px;
}

:root.dark .project-info-box{
    background: linear-gradient(180deg, #0b1220, #070d1a);
}

.info-label {
    font-size: 11px;
    letter-spacing: 0.08em;
    color: #888;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.info-value {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.5;
}

.country-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.country-tags .tag {
    background: rgba(37,99,235,0.15);
    color: #60a5fa;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.status-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;                          
}

.status-icon.green{
    background: rgba(34,197,94,0.15); 
    color: #22c55e;
    box-shadow: 0 0 12px rgba(34,197,94,0.45);
}

.status-icon.blue {
    background: rgba(59,130,246,0.15);
    color: #3b82f6;
    box-shadow: 0 0 12px rgba(59,130,246,0.45);
}

.status-icon.purple {
    background: rgba(168,85,247,0.15);
    color: #a855f7;
    box-shadow: 0 0 12px rgba(168,85,247,0.45);
}

@media (max-width:992px){
    .opportunity-desc {
        font-size: 13px;
    }

    .opportunity-features li{
        font-size: 12px;            
    }
}

@media (max-width:576px){
    .opportunity-card{
        padding: 10px;
    }
    .opportunity-desc {
        font-size: 11px;
    }

    .opportunity-features li{
        font-size: 10px;            
    }
}