    @import url('https://fonts.googleapis.com/css?family=Roboto:400,500,300,700');
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
    
    body {
        background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
        font-family: 'Roboto', 'Poppins', sans-serif;
        position: relative;
        margin: 0;
        padding: 20px;
        overflow-x: hidden;
    }
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 20% 40%, rgba(46, 204, 113, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 40% 90%, rgba(241, 196, 15, 0.08) 0%, transparent 50%);
        pointer-events: none;
        z-index: 0;
    }
    
    /* Floating Particles Animation */
    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(2px 2px at 15% 30%, rgba(255,255,255,0.4) 100%, transparent),
            radial-gradient(3px 3px at 75% 60%, rgba(255,255,255,0.3) 100%, transparent),
            radial-gradient(1.5px 1.5px at 45% 85%, rgba(255,255,255,0.35) 100%, transparent),
            radial-gradient(2.5px 2.5px at 90% 20%, rgba(255,255,255,0.25) 100%, transparent),
            radial-gradient(1px 1px at 30% 55%, rgba(255,255,255,0.4) 100%, transparent);
        background-repeat: no-repeat;
        background-size: 250px 250px, 350px 350px, 200px 200px, 300px 300px, 180px 180px;
        animation: floatParticles 25s infinite ease-in-out;
        pointer-events: none;
        z-index: 0;
        opacity: 0.6;
    }
    
    @keyframes floatParticles {
        0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.4; }
        25% { transform: translateY(-20px) translateX(15px); opacity: 0.7; }
        50% { transform: translateY(15px) translateX(-10px); opacity: 0.5; }
        75% { transform: translateY(-8px) translateX(20px); opacity: 0.6; }
    }
    
    /* Animated Wave Background at Bottom */
    body .wave-container {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 120px;
        pointer-events: none;
        z-index: 0;
        overflow: hidden;
    }
    
    body .wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(46,204,113,0.12)" fill-opacity="1" d="M0,192L48,197.3C96,203,192,213,288,208C384,203,480,181,576,181.3C672,181,768,203,864,213.3C960,224,1056,224,1152,208C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') repeat-x;
        background-size: 1440px 100px;
        animation: waveMove 20s linear infinite;
        opacity: 0.5;
    }
    
    body .wave:nth-child(2) {
        bottom: 20px;
        opacity: 0.25;
        animation: waveMove 15s linear infinite reverse;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(52,152,219,0.1)" fill-opacity="1" d="M0,224L48,213.3C96,203,192,181,288,186.7C384,192,480,224,576,234.7C672,245,768,235,864,213.3C960,192,1056,160,1152,160C1248,160,1344,192,1392,208L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') repeat-x;
        background-size: 1440px 100px;
    }
    
    @keyframes waveMove {
        0% { background-position-x: 0px; }
        100% { background-position-x: 1440px; }
    }
    
    /* ========== SCROLLBAR STYLING ========== */
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }
    
    ::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
    }
    
    ::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #2ecc71, #3498db);
        border-radius: 10px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #27ae60, #2980b9);
    }
    
    /* ========== TABLE STYLES - Glass Morphism ========== */
    .list {
        width: 90%;
        table-layout: fixed;
        border-collapse: separate;
        border-spacing: 0 15px;
        max-width: 1200px;
        margin: 10px auto;
        font-size: 16px;
        position: relative;
        z-index: 1;
        background: transparent;
        border: none;
    }
    
    .tbl-header, .othercourses {
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(10px);
    }
    
    .tbl-header th {
        background: linear-gradient(135deg, rgba(46, 204, 113, 0.25), rgba(52, 152, 219, 0.25));
        backdrop-filter: blur(12px);
        padding: 20px 15px;
        text-align: center;
        font-weight: 600;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-size: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    
    .tbl-header th:first-child {
        border-right: none;
    }
    
    .tbl-header th:last-child {
        border-left: none;
    }
    
    .tbl-header th:nth-child(2) {
        border-left: none;
        border-right: none;
    }
    
    .list td {
        padding: 15px;
        vertical-align: middle;
        font-weight: 500;
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        cursor: pointer;
        word-wrap: break-word;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 15px;
    }
    .navigation td {
        cursor:inherit;
    }
    
    /* Subject cell hover effect */
    .list td:hover {
        background: linear-gradient(135deg, rgba(46, 204, 113, 0.3), rgba(52, 152, 219, 0.3));
        transform: translateY(0) scale(1.02);
        border-color: rgba(46, 204, 113, 0.6);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    }
    
    /* First and last cell border radius for each row */
    .list tr:not(.tbl-header):not(.navigation) td:first-child {
        border-radius: 15px 0 0 15px;
    }
    
    .list tr:not(.tbl-header):not(.navigation) td:last-child {
        border-radius: 0 15px 15px 0;
    }
    
    /* Empty cells styling */
    .list td:empty,
    .list td[onclick*="streamto='';"] {
        background: rgba(0, 0, 0, 0.25);
        cursor: default;
        opacity: 0.5;
    }
    
    .list td:empty:hover,
    .list td[onclick*="streamto='';"]:hover {
        transform: none;
        background: rgba(0, 0, 0, 0.25);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: none;
    }
    
    .othercourses {
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .othercourses:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-2px);
    }
    
    /* ========== LOGO & HEADER SECTION ========== */
    .logoholder {
        text-align: center;
        margin: 15px auto;
        max-width: 1200px;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(20px);
        border-radius: 30px;
        padding: 25px 35px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
    }
    
    .logoholder:hover {
        background: rgba(0, 0, 0, 0.4);
        border-color: rgba(46, 204, 113, 0.4);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    }
    
    .logoholder a {
        margin: auto 2.5px;
    }
    
    h1, h2 {
        font-family: 'Poppins', 'Roboto', arial, sans-serif;
        color: #fff;
        font-weight: 300;
        text-align: left;
        margin-bottom: 15px;
        display: block;
        margin: 5px;
    }
    
    h1 {
        font-size: 32px;
        font-weight: 700;
        background: linear-gradient(135deg, #fff, #a8e6cf);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: none;
        letter-spacing: 1px;
    }
    
    h2 {
        font-size: 22px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.9);
    }
    
    h2 font {
        font-style: italic;
        font-size: 25px;
        font-weight: 400;
        color: #2ecc71;
    }
    
    .logo {
        width: 100px;
        vertical-align: middle;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
        transition: transform 0.3s ease;
    }
    
    .logo:hover {
        transform: scale(1.05);
    }
    
    .titleholder {
        display: inline-block;
        vertical-align: middle;
    }
    
    /* ========== NAVIGATION STYLES ========== */
    .navigation a, .navigation td {
        color: #fff0cc;
        line-height: 2.5;
    }
    
    .navigation {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 50px;
        padding: 10px 20px !important;
        text-align: center;
    }
    
    .navigation td {
        padding: 12px 20px !important;
        text-align: center !important;
        background: transparent !important;
    }
    
    .navigation a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-weight: 500;
        padding: 8px 18px;
        border-radius: 25px;
        transition: all 0.3s ease;
    }
    
    .navigation a:hover {
        background: rgba(46, 204, 113, 0.3);
        color: #fff;
        text-shadow: 0 0 8px rgba(46, 204, 113, 0.5);
    }
    
    .skbuacin {
        padding: 10px 18px;
        background: linear-gradient(135deg, rgba(46, 204, 113, 0.2), rgba(52, 152, 219, 0.2));
        color: white !important;
        border-radius: 25px;
        backdrop-filter: blur(5px);
    }
    
    .skbuacin:hover {
        background: linear-gradient(135deg, rgba(46, 204, 113, 0.4), rgba(52, 152, 219, 0.4));
    }
    
    /* ========== OTHER STYLES (Preserved from original) ========== */
    .noexistance {
        height: 300px;
    }
    
    .list a {
        color: white;
        text-decoration: none;
    }
    
    .fade {
        background: rgba(0, 0, 0, 0.5);
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        z-index: 101010;
    }
    
    .popup {
        margin: 10vh auto 0;
        background: white;
        color: black;
        border-radius: 10px;
        max-width: 500px;
        width: 70%;
        padding: 20px;
        max-height: 70vh;
        overflow: auto;
    }
    
    .popup P {
        word-wrap: break-word;
    }
    
    .list .commentsection {
        max-width: 1200px;
        margin: 0 auto;
        background: #fff;
        padding-top: 30px;
        position: relative;
    }
    
    .hideplugcomment {
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        padding: 25px;
        background: white;
        color: black;
        font-weight: 600;
    }
    
    .list input, .list select {
        position: relative;
        margin: -5px 0;
        border-radius: 11px;
        outline: 0;
        border: 0;
        padding: 10px;
        width:100%;
        width:calc(100% - 20px);
        width: -webkit-fill-available;
    }
    .putitrelative {
        position:relative;
    }
    .autofil {
        position:absolute;
        top:55px;
        border:1px solid #D8D8D8;
        background:white;
    }
    .autofil a{
        text-decoration:none;
        cursor:pointer;
        padding:5px 10px;
        display:block;
        color:#a8a8a8;
    }
    .loader {
        border: 4px solid #f3f3f3;
        border-radius: 50%;
        border-top: 4px solid gray;
        width: 30px;
        height: 30px;
        -webkit-animation: spin 2s linear infinite; /* Safari */
        animation: spin 2s linear infinite;
    	display:inline-block;
        vertical-align:middle;
    }
    @-webkit-keyframes spin {
        0% { -webkit-transform: rotate(0deg); }
        100% { -webkit-transform: rotate(360deg); }
    }
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    .backfade {
    	position:fixed;
        background:rgba(0,0,0,0.8);
        right:0;
        left:0;
        top:0;
        bottom:0;
        color:white;
        display:none;
        z-index: 1;
    }
    .backfade p {
        padding:5px;
        text-align:center;
        word-wrap: break-word;
        font-size:20px;
    }
    .backfade .p {
    	display:inline-block;
        vertical-align:middle;
        margin:0;
        margin-left:20px;
        font-size:30px;
    }
    .backfade a {
        color:#c9f7ff;
        text-decoration:none;
    }
    .backfade a:after {
        content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAABmJLR0QA/wD/AP+gvaeTAAAAxUlEQVQokZ2SPQ5BQRSFzxGJhMQesACFSmcRRKHQ2ImVKK2BWmcJIloFOh7Fp/BG3sO8lzjJJHPnznfvmR/pTzlMgI6kVi5pr4G+pEZmeWv7HKA2kACn7EhzmzR+8NLgXQIYAMeYLWAMXIF7ACtlZwGGkhaSZpIun8mfHTOdxmm8AnqFIDACbsCkyE4OjEHAMZyx+qNITdJc0tT2MtbsC7SdAF3bSdSiIrdaBmU7HiQ1w6MXqJ7uzX25lqROCbizvS9zU6gnqW+mYnPLx6wAAAAASUVORK5CYII=);
        margin:5px;
    }
    .waitcontainer {
    	margin:40vh auto 0;
        width:160px;
    }
    
    /* ========== RESPONSIVE DESIGN ========== */
    @media screen and (max-width: 768px) {
        body {
            padding: 15px;
        }
        
        .list {
            font-size: 13px;
            width: 95%;
            border-spacing: 0 10px;
        }
        
        .tbl-header th {
            font-size: 16px;
            padding: 14px 10px;
        }
        
        .list td {
            padding: 12px 8px;
            font-size: 12px;
        }
        
        h1 {
            font-size: 22px;
            text-align: center;
            margin-bottom:0;
        }
        
        h2 {
            font-size: 16px;
            text-align: center;
            margin-top:0;
        }
        
        h2 font {
            font-size: 20px;
        }
        
        .logo {
            width: 70px;
        }
        
        .logoholder {
            padding: 18px 22px;
        }
        
        .navigation a {
            padding: 5px 12px;
            font-size: 12px;
        }
    }
    
    @media screen and (max-width: 600px) {
        .list {
            font-size: 11px;
            font-weight: 500;
            width: 100%;
        }
        
        .tbl-header th {
            font-size: 13px;
            padding: 10px 5px;
        }
        
        .list td {
            padding: 10px 5px;
            font-size: 10px;
        }
        
        h1 {
            font-size: 18px;
        }
        
        h2 {
            font-size: 13px;
        }
        
        .logo {
            width: 55px;
        }
        
        .logoholder {
            padding: 15px;
        }
    }
    
    @media screen and (max-width: 480px) {
        .tbl-header th {
            font-size: 11px;
            letter-spacing: 0;
        }
        
        .list td {
            font-size: 9px;
            padding: 8px 3px;
        }
        
        .navigation a {
            padding: 4px 8px;
            font-size: 10px;
        }
    }