/* Hub Pages Specific Styles for Web Blocker */

.page-hero {
    padding: 100px 40px 60px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #FFFFFF;
}

.page-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.tags-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 100px auto;
    padding: 0 40px;
}

.tag-card {
    flex: 1 1 300px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-decoration: none;
    color: #FFFFFF;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.tag-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tag-icon-wrapper {
    width: 64px;
    height: 64px;
    background: #F86466;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(248, 100, 102, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 10px;
}

.tag-card:hover .tag-icon-wrapper {
    transform: translateY(-5px) rotate(5deg);
}

.tag-icon-wrapper svg {
    width: 32px;
    height: 32px;
    fill: #FFFFFF;
}

.tag-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
}

.tag-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.empty-state {
    text-align: center;
    padding: 60px 40px;
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    max-width: 800px;
    margin: 0 auto 100px auto;
}

@media (max-width: 900px) {
    .tag-card {
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 600px) {
    .page-title {
        font-size: 40px;
    }
    
    .tags-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 20px;
    }
    
    .tag-card {
        max-width: 100%;
        width: 100%;
    }
    
    .page-hero {
        padding: 80px 20px 40px;
    }
}
