/* Personalisation Page Styles - Neo-brutalism */
.personalisation-page {
    min-height: 100vh;
    background: #ffffff;
}

.personalisation-main {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.personalisation-header {
    text-align: center;
    margin-bottom: 3rem;
    color: #000000;
}

.personalisation-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.personalisation-hero p {
    font-size: 1.2rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.personalisation-categories {
    margin-bottom: 3rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.category-card {
    background: #ffffff;
    border: 3px solid #000000;
    border-radius: 0;
    padding: 2rem;
    box-shadow: none;
    transition: none;
    text-align: center;
    cursor: pointer;
}

.category-card:hover {
    background: #f5f5f5;
    transform: none;
    box-shadow: none;
}

.category-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    color: #ffffff;
    border-radius: 0;
    padding: 0.5rem;
    border: 3px solid #000000;
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-card p {
    color: #666666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.category-btn {
    background: #000000;
    color: #ffffff;
    border: 3px solid #000000;
    border-radius: 0;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: none;
    box-shadow: none;
}

.category-btn:active {
    transform: none;
}

.personalisation-tips {
    background: #ffffff;
    border: 3px solid #000000;
    border-radius: 0;
    padding: 2rem;
    box-shadow: none;
}

.personalisation-tips h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    background: #f5f5f5;
    border-radius: 0;
    padding: 1.5rem;
    border-left: 4px solid #000000;
}

.tip-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.tip-card p {
    color: #666666;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .personalisation-main {
        padding: 1rem;
    }

    .personalisation-hero h1 {
        font-size: 2rem;
    }

    .personalisation-hero p {
        font-size: 1rem;
    }

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

    .tips-grid {
        grid-template-columns: 1fr;
    }
}

/* Accessibility Improvements */
.personalisation-card:focus,
.category-btn:focus {
    outline: 3px solid #000000 !important;
    outline-offset: 2px !important;
}

@media (prefers-reduced-motion: reduce) {
    .category-card,
    .category-btn,
    .tip-card {
        animation: none !important;
        transition: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .category-card {
        border: 3px solid #000000;
    }

    .category-btn {
        border: 3px solid #000000;
    }
}

/* Print styles */
@media print {
    .nav,
    .category-btn,
    .personalisation-tips h2 {
        display: none;
    }

    .category-card {
        break-inside: avoid;
        border: 1px solid #ccc;
    }
}