         * {
            margin: 0; 
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: #141e30;
            color: #e0e0e0;
            line-height: 1.6;
            margin: 0;
        }

        header {
            position: fixed;
            top: 0; 
            left: 0;
            width: 100%;
            background-color: #000000;
            color: #ffffff;
            z-index: 999;
            padding: 12px 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        main {
            padding-top: 70px;
        }

        .series-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
        }

        .series-header {
            /*background: #1e1e1e;*/
            background: linear-gradient(120deg, #4158d0 0%, #c850c0 100%) !important;
            color: #ffffff;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 25px;
            border: 1px solid #333;
            text-align: center;
        }

        .series-header h1 {
            font-size: 24px;
            font-weight: 500;
            margin: 0;
        }

        .search-wrapper {
            position: relative;
            width: 100%;
            margin-bottom: 20px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .search-input {
            width: 100%;
            padding: 12px 20px 12px 45px;
            border-radius: 8px;
            border: none;
            background: #2d2d2d;
            color: #ffffff;
            font-size: 16px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .search-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #b0b0b0;
            font-size: 18px;
        }

        .files-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .file-card {
            background: #243b55;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
            border: 2px solid transparent;
            display: flex;
            flex-direction: column;
        }

        .file-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            background: #252525;
            border-color: #6a11cb;
        }

        .file-header {
            display: flex;
            /*align-items: center;*/
            gap: 10px;
            margin-bottom: 15px;
        }

        .file-icon {
            font-size: 22px;
            background: linear-gradient(45deg, #ff5f6d, #ffc371);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .file-details h3 {
            font-size: 16px;
            color: #ffffff;
            font-weight: 500;
            margin: 0;
            word-break: break-word;
            white-space: normal;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .file-meta {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            color: #b0b0b0;
            margin-bottom: 15px;
        }

        .file-meta .left,
        .file-meta .right {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .download-btn {
            background: linear-gradient(45deg, #ff5f6d, #ffc371);
            color: white;
            padding: 10px 15px;
            border-radius: 5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s;
            font-weight: 700;
            width: 100%;
            font-size: 15px;
            margin-top: auto;
        }

        .download-btn:hover {
            background: linear-gradient(45deg, #f857a6, #ff5858);
            transform: translateY(-2px);
        }

        .no-results {
            text-align: center;
            grid-column: 1 / -1;
            color: #b0b0b0;
            padding: 20px;
        }

        @media (max-width: 768px) {
            main {
                padding-top: 70px;
            }

            .series-container {
                padding: 15px;
                max-width: 100%;
            }

            .series-header {
                padding: 15px;
                margin-bottom: 20px;
            }

            .series-header h1 {
                font-size: 20px;
            }

            .search-wrapper {
                max-width: 100%;
            }

            .file-card {
                padding: 12px;
            }
            
            .file-details h3 {
                -webkit-line-clamp: 3;
            }
        }

        @media (max-width: 480px) {
            .file-details h3 {
                font-size: 16px;
            }
        }
        
        
/* Footer Styles */
.footer {
    padding: 15px 0;
    text-align: right;
    margin-top: 30px;
}

.footer-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 30px;
}
