  .Afrikaans-HL {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #6c073d, #ee8b18);
    margin: 0;
    padding: 15px 50px;
    min-height: 100vh;
        }
        
        h1 {
            color: white;
            text-align: center;
            margin-bottom: 15px;
            font-size: 35px;
            font-weight: 700;
        }
        
        p {
            text-align: center;
            color: white;
            margin-bottom: 30px;
            font-size: 16px;
        }
        
        .past-papers-intro {
            color: white;
            text-align: center;
            margin-bottom: 30px;
            padding: 25px;
            border-radius: 12px;
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .year-container {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            animation: fadeIn 0.5s ease-out forwards;
            opacity: 0;
        }
        
        .year-container:nth-child(3) { animation-delay: 0.1s; }
        .year-container:nth-child(4) { animation-delay: 0.2s; }
        .year-container:nth-child(5) { animation-delay: 0.3s; }
        .year-container:nth-child(6) { animation-delay: 0.4s; }
        .year-container:nth-child(7) { animation-delay: 0.5s; }
        .year-container:nth-child(8) { animation-delay: 0.6s; }
        .year-container:nth-child(9) { animation-delay: 0.7s; }
        .year-container:nth-child(10) { animation-delay: 0.8s; }
        .year-container:nth-child(11) { animation-delay: 0.9s; }
        .year-container:nth-child(12) { animation-delay: 1.0s; }
        .year-container:nth-child(13) { animation-delay: 1.1s; }
        .year-container:nth-child(14) { animation-delay: 1.2s; }
        
        .year {
            font-weight: bold;
            font-size: 1.5em;
            width: 15%;
            display: flex;
            align-items: center;
            color: #6c073d;
        }
        
        .exams {
            width: 80%;
            display: flex;
            justify-content: space-around;
        }
        
        .button {
            padding: 10px 20px;
            background: linear-gradient(135deg, #6c073d, #8a0a4e);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            display: inline-block;
            text-align: center;
            min-width: 120px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }
        
        .button:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }
        
        .disabled {
            background: linear-gradient(135deg, #cccccc, #aaaaaa);
            color: #666666;
            cursor: not-allowed;
            position: relative;
        }
        
        .disabled:hover {
            background: linear-gradient(135deg, #cccccc, #aaaaaa);
            transform: none;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }
        
        .disabled::after {
            content: "🔒";
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 768px) {
            .Afrikaans-HL {
                padding: 15px;
            }
            
            .exams {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }
            
            .year-container {
                flex-direction: column;
                text-align: center;
            }
            
            .year {
                width: 100%;
                justify-content: center;
                margin-bottom: 10px;
            }
            
            .exams {
                width: 100%;
            }
        }