/**
 * WoW Linkek Gyűjtemény - Stílusok
 */

#wow-linkek-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   HEADER
   ============================================ */

.wow-linkek-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(147, 51, 234, 0.1));
    border-radius: 16px;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.wow-linkek-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.wow-linkek-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    margin: 0;
}

/* ============================================
   CATEGORY SECTIONS
   ============================================ */

.linkek-category {
    margin-bottom: 4rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(147, 51, 234, 0.2));
    border-radius: 12px;
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.category-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e2e8f0;
    margin: 0;
}

.category-description {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    padding-left: 76px;
}

/* ============================================
   LINK CARDS GRID
   ============================================ */

.linkek-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.link-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.6));
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-card:hover {
    transform: translateY(-5px);
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.2);
}

/* ============================================
   LINK CARD HEADER
   ============================================ */

.link-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.link-card-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e2e8f0;
    margin: 0;
}

.link-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(96, 165, 250, 0.2);
    color: #60a5fa;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(96, 165, 250, 0.3);
    white-space: nowrap;
}

.link-badge.popular {
    background: rgba(234, 179, 8, 0.2);
    color: #fbbf24;
    border-color: rgba(234, 179, 8, 0.3);
}

/* ============================================
   LINK CARD CONTENT
   ============================================ */

.link-description {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* ============================================
   LINK BUTTON
   ============================================ */

.link-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(147, 51, 234, 0.15));
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 8px;
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.link-button:hover {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.25), rgba(147, 51, 234, 0.25));
    border-color: rgba(96, 165, 250, 0.5);
    transform: translateX(5px);
}

.link-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.link-button:hover .link-arrow {
    transform: translateX(5px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .linkek-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    #wow-linkek-container {
        padding: 1rem;
    }

    .wow-linkek-header {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .wow-linkek-header h1 {
        font-size: 2rem;
    }

    .wow-linkek-subtitle {
        font-size: 1rem;
    }

    .linkek-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .category-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }

    .category-header h2 {
        font-size: 1.5rem;
    }

    .category-description {
        padding-left: 0;
        font-size: 0.9rem;
    }

    .link-card {
        padding: 1.2rem;
    }

    .link-card-header h3 {
        font-size: 1.2rem;
    }

    .link-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .wow-linkek-header h1 {
        font-size: 1.5rem;
    }

    .category-header h2 {
        font-size: 1.3rem;
    }

    .link-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .link-button {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}
