
.page-header {
    text-align: center;
    color: #2c2c2c;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.category-card {
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.category-item {
    border: 1px solid #ddd;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 200px;
    transition: all 0.3s ease;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    background: #404040;
}

.category-card:hover .category-item {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-color: #333;
}

.category-title {
    font-size: 24px;
    font-weight: 600;
    padding: 30px 20px 0;
    z-index: 1;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.category-btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    color: white;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.category-btn:hover {
    background: white;
    color: #2c2c2c;
    transform: scale(1.05);
}