
    @import url('inline-font1_1.900&display=swap');

    :root {
        --primary: #237df3;
        --accent: #CC3333;
        --secondary: #00bbcc;
        --dark-bg: #181818;
        --card-bg: #292929;
        --text-primary: #c3c3c3;
        --text-secondary: #888;
    }

    strong {
        color: var(--accent);
    }

    html {
        background: url(inline-font1_2.jpg) no-repeat center top fixed;
        background-size: cover
    }

    body {
        font-family: "Work Sans", sans-serif;
        margin: 2rem auto;
        max-width: 1140px;
        background: var(--dark-bg);
        border-radius: 1rem;
        padding: 3rem 3rem 2rem;
        box-sizing: border-box
    }

    header {
        text-transform: uppercase;
        font-family: "Oswald", sans-serif;
        background: var(--primary);
        color: #fff;
        font-weight: 700;
        font-size: 43px;
        letter-spacing: -1px;
        padding: 5px 9px 8px;
        display: inherit;
        border-radius: 3px;
        margin: 0 auto;
        width: max-content;
        line-height: 1
    }

    form#search-form {
        background: var(--card-bg);
        position: relative;
        border-radius: 2rem;
        display: flex;
        padding: 8px;
        justify-content: space-between
    }

    span.filter-btn.btn.btn-sm {
        border-radius: 50rem;
        background: #0f0f0f;
        padding: .3rem .8rem;
        font-size: 10.8px;
        color: var(--text-secondary)
    }

    input.form-control.search-input {
        background: none;
        border: none;
        color: var(--primary);
        text-align: center;
        flex-grow: 1;
        outline: none
    }

    form button {
        background: none;
        border: none;
        color: var(--primary)
    }

    p.btn-primary.px-5 {
        background: var(--primary);
        max-width: max-content;
        margin: 25px auto 40px;
        padding: 10px 40px;
        border-radius: 5px;
        font-size: 16px;
        font-weight: 500;
        color: #0f0f0f;
        cursor: pointer
    }

    p.btn-primary.px-5:hover {
        opacity: .9
    }

    article {
        color: var(--text-secondary);
        font-size: 15px;
        font-weight: 400;
        line-height: 1.5
    }

    h2,
    h3 {
        color: var(--text-primary)
    }

    h1 {
        text-align: center;
        color: var(--accent);
        font-size: 24px;
        font-weight: 500
    }

    article img {
        max-width: 100%;
        margin: auto;
        height: auto;
        display: flex
    }

    /* Enhanced Community Feedback Styling */
    .community-feedback {
        background: linear-gradient(135deg, var(--card-bg) 0%, #1f1f1f 100%);
        border-radius: 15px;
        padding: 2rem;
        margin: 2rem 0;
        border-left: 4px solid var(--secondary);
        box-shadow: 0 8px 32px rgba(0, 187, 204, 0.1);
        position: relative;
        overflow: hidden;
    }

    .community-feedback::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--secondary), var(--primary), var(--accent));
    }

    .community-feedback h3 {
        background: linear-gradient(135deg, var(--secondary), var(--primary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .community-feedback h3::before {
        content: '💬';
        font-size: 1.2em;
    }

    .feedback-quote {
        background: rgba(35, 125, 243, 0.05);
        border: 1px solid rgba(35, 125, 243, 0.2);
        border-radius: 12px;
        padding: 1.5rem;
        margin: 1rem 0;
        position: relative;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .feedback-quote:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(35, 125, 243, 0.15);
        border-color: rgba(35, 125, 243, 0.4);
    }

    .feedback-quote::before {
        content: '"';
        font-size: 3rem;
        color: var(--primary);
        position: absolute;
        top: -10px;
        left: 15px;
        font-family: Georgia, serif;
        opacity: 0.3;
    }

    .feedback-quote p {
        margin: 0;
        font-style: italic;
        color: var(--text-primary);
        font-size: 1rem;
        line-height: 1.6;
        padding-left: 25px;
    }

    .quote-source {
        color: var(--secondary);
        font-weight: 500;
        font-size: 0.9rem;
        margin-top: 10px;
        text-align: right;
        padding-right: 10px;
    }

    .quote-source::before {
        content: '— ';
    }

    /* Enhanced Table Styling */
    .styled-table {
        width: 100%;
        border-collapse: collapse;
        margin: 2rem 0;
        background: linear-gradient(135deg, var(--card-bg) 0%, #1f1f1f 100%);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
    }

    .styled-table thead {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        position: relative;
    }

    .styled-table thead::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--accent), var(--primary), var(--secondary));
    }

    .styled-table th {
        padding: 1.2rem 1rem;
        text-align: left;
        font-weight: 600;
        color: #ffffff;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        position: relative;
    }

    .styled-table th:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 25%;
        height: 50%;
        width: 1px;
        background: rgba(255, 255, 255, 0.2);
    }

    .styled-table td {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--text-primary);
        font-size: 0.9rem;
        transition: all 0.3s ease;
        position: relative;
    }

    .styled-table tbody tr {
        transition: all 0.3s ease;
        position: relative;
    }

    .styled-table tbody tr:hover {
        background: rgba(35, 125, 243, 0.1);
        transform: scale(1.01);
        box-shadow: 0 5px 15px rgba(35, 125, 243, 0.2);
    }

    .styled-table tbody tr:nth-child(even) {
        background: rgba(255, 255, 255, 0.02);
    }

    .styled-table tbody tr:last-child td {
        border-bottom: none;
    }

    /* Status indicators for table cells */
    .status-free {
        color: #4CAF50;
        font-weight: 600;
    }

    .status-paid {
        color: var(--accent);
        font-weight: 600;
    }

    .status-legal {
        color: #4CAF50;
        font-weight: 600;
    }

    .status-illegal {
        color: var(--accent);
        font-weight: 600;
    }

    .status-high {
        color: var(--secondary);
        font-weight: 600;
    }

    .status-medium {
        color: #FFA726;
        font-weight: 600;
    }

    .status-low {
        color: var(--accent);
        font-weight: 600;
    }

    .status-yes {
        color: var(--accent);
        font-weight: 600;
    }

    .status-no {
        color: #4CAF50;
        font-weight: 600;
    }

    .status-variable {
        color: #FFA726;
        font-weight: 600;
    }

    .status-good {
        color: var(--secondary);
        font-weight: 600;
    }

    @media only screen and (max-width: 600px) {
        body {
            margin: 0;
            padding: 1rem
        }

        .styled-table {
            font-size: 0.8rem;
        }

        .styled-table th,
        .styled-table td {
            padding: 0.8rem 0.5rem;
        }

        .community-feedback {
            padding: 1.5rem;
        }

        .feedback-quote {
            padding: 1rem;
        }
    }

    #view-full {
        text-align: center;
        margin: 25px auto 40px;
    }

    #view-full .button {
        background-color: var(--accent);
        display: inline-block;
        padding: 12px 40px;
        border-radius: 25px;
        font-size: 16px;
        font-weight: 600;
        color: #ffffff;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(204, 51, 51, 0.3);
        border: 2px solid transparent;
    }

    #view-full .button:hover {
        background: var(--secondary);
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 8px 25px rgba(0, 187, 204, 0.4);
        border-color: var(--secondary);
    }

    header#header {
        background-color: transparent !important;
        box-shadow: none !important;
    }

    .watch {
        text-align: center;
        margin-bottom: 20px;
    }

    .watch p {
        margin: 0;
        color: var(--secondary);
        font-size: 20px;
        font-style: italic;
    }

    h3 {
        background: linear-gradient(transparent 90%, #D4F3FC 0);
        color: #ffd1a1;
        display: initial;
        font-style: italic;
    }
    