/* Universal League Extended - Main Styles */
.universal-league-extended {
    background-color: #1D365A;
    border-radius: 12px;
    padding: 2.5rem;
    margin: 2rem 0;
    border: 2px solid #FF9800;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.universal-league-intro h2 {
    color: #FF9800;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-align: center;
}

.universal-league-intro p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.universal-league-market-analytics {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.universal-league-section {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.universal-league-section h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    border-bottom: 2px solid #FF9800;
    padding-bottom: 0.5rem;
}

.universal-league-section p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.universal-league-link {
    color: #FF9800;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.universal-league-link:hover {
    color: #e68900;
    text-decoration: underline;
}

.universal-league-conclusion {
    background: white;
    color: #475569;
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid #e2e8f0;
}

.universal-league-conclusion h3 {
    color: #1e293b;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.universal-league-conclusion h4 {
    color: #374151;
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.universal-league-features li {
    color: #475569;
    margin-bottom: 0.5rem;
    position: relative;
}

.universal-league-features strong {
    color: #374151;
}

.universal-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin: 1rem 0;
}

/* Performance Optimizations */
.universal-league-extended {
    will-change: transform;
    backface-visibility: hidden;
}

.universal-league-section {
    will-change: transform;
}

/* SEO Enhanced CTA Styles */
.universal-seo-cta-container {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    border-radius: 12px;
    padding: 2.5rem;
    margin-top: 2rem;
    text-align: center;
    border: 2px solid #FFF;
    box-shadow: 0 8px 32px rgba(255, 152, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.universal-seo-cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF9800, #FFF, #FF9800);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.universal-seo-cta-wrapper {
    margin-bottom: 2.5rem; /* ΑΥΞΗΣΗ ΚΕΝΟΥ */
}

.universal-seo-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #1D365A;
    color: #FFF !important;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    border: 3px solid #FFF;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.universal-seo-cta-button:hover {
    background: #152642;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.universal-seo-cta-button:active {
    transform: translateY(-1px);
}

.universal-seo-cta-icon {
    font-size: 1.4rem;
    animation: bounce 2s infinite;
}

.universal-seo-cta-arrow {
    font-size: 1.3rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.universal-seo-cta-button:hover .universal-seo-cta-arrow {
    transform: translateX(4px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
    60% { transform: translateY(-3px); }
}

.universal-seo-cta-description p {
    color: #FFF;
    margin: 1rem auto 0; 
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 600px;
    line-height: 1.6;
    font-weight: 500;
}

.universal-seo-cta-description strong {
    color: #FFF;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .universal-league-extended {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .universal-league-intro h2 {
        font-size: 1.5rem;
    }

    .universal-league-intro p {
        font-size: 1rem;
    }

    .universal-league-section {
        padding: 1.25rem;
    }

    .universal-league-section h3 {
        font-size: 1.2rem;
    }

    .universal-league-conclusion {
        padding: 1.5rem;
    }

    .universal-seo-cta-container {
        padding: 2rem 1.5rem;
    }
    
    .universal-seo-cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .universal-seo-cta-description p {
        font-size: 1rem;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .universal-league-extended {
        padding: 1rem;
    }

    .universal-league-intro h2 {
        font-size: 1.3rem;
    }

    .universal-league-section {
        padding: 1rem;
    }

    .universal-league-section h3 {
        font-size: 1.1rem;
    }
    
    .universal-league-conclusion {
        padding: 1rem;
    }

    .universal-seo-cta-container {
        padding: 1.5rem 1rem;
    }
    
    .universal-seo-cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .universal-seo-cta-description p {
        font-size: 0.95rem;
    }
}

/* Print Styles */
@media print {
    .universal-league-extended {
        background: white !important;
        border: 2px solid #000 !important;
        color: #000 !important;
    }
    
    .universal-league-intro h2 {
        color: #000 !important;
    }
    
    .universal-league-intro p {
        color: #000 !important;
    }
    
    .universal-league-link {
        color: #000 !important;
    }
    
    .universal-seo-cta-container {
        background: #f0f0f0 !important;
        border: 2px solid #000 !important;
    }
    
    .universal-seo-cta-button {
        background: #333 !important;
        color: #FFF !important;
        border: 2px solid #000 !important;
    }
    
    .universal-seo-cta-description p {
        color: #000 !important;
    }
}