:root {
    --kz-orange: #fb9d4c;
    --blue-accent: #007bff; /* New blue accent color */
}

@font-face {
    font-family: "SF-Pro";
    src: url("fonts/SF-Pro.ttf") format("truetype"); /* Assuming this font file exists */
}

* {
    font-family: "SF-Pro", sans-serif;
    scrollbar-width: thin;
    scrollbar-color: #c27725 #222;
    box-sizing: border-box;
    margin: 0; /* Reset default margin */
    padding: 0; /* Reset default padding */
}

/* Custom Scrollbar Styles */
*::-webkit-scrollbar {
    width: 5px;
}
*::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: #c27725;
}
*::-webkit-scrollbar-track {
    background-color: #202020;
}

body {
    background-color: #121212;
    margin: 0;
    padding: 20px 0;
    overflow-y: scroll;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    min-height: 100vh; /* Ensure body takes full viewport height */
}

/* New class to disable body scrolling when modal is active */
body.no-scroll {
    overflow: hidden;
}

.website {
    background-color: #151515;
    width: 90%;
    max-width: 1500px; /* Max width for the entire website content */
    margin: 0 auto;
    border-radius: 8px;
    min-height: calc(100vh - 40px); /* Adjust min-height to account for body padding */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); /* Added subtle shadow for depth */
}

.container {
    width: 100%; /* Takes full width of .website */
    display: block;
    padding: 0 20px; /* Added padding to container for inner content */
}

/* Navigation Bar Styles */
.nav {
    background-color: #202020;
    width: 100%; /* Takes full width of .website */
    height: 70px; /* Adjusted height to be more compact like the screenshot */
    margin: 0 auto 30px auto; /* Increased bottom margin for separation */
    border-radius: 8px;
    padding: 0 20px; /* Adjusted padding to match .container */
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Shadow for navigation bar */
}


.logo {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-right: 30px; /* Space between logo and nav links */
}

/* Style for the orange part of the logo */
.orange-text {
    color: var(--kz-orange);
}

.nav-links {
    display: flex;
    gap: 25px; /* Spacing between navigation links */
}

.nav-link {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: color 0.2s ease; /* Smooth color transition on hover */
}

.nav-link:hover {
    color: var(--kz-orange);
}

.nav-link.active {
    color: var(--kz-orange); /* Active link color */
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--kz-orange);
    border-radius: 2px; /* Underline for active link */
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px; /* Spacing between action buttons/icons */
}

.icon-button {
    background: none;
    border: none;
    color: #ccc;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: color 0.2s ease, background-color 0.2s ease; /* Smooth transitions */
}

.icon-button:hover {
    color: var(--kz-orange);
    background-color: #2a2a2a; /* Background on hover */
}

.premium-button {
    background-color: var(--kz-orange);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease, filter 0.2s ease; /* Smooth transitions */
    margin-left: 10px;
}

.premium-button:hover {
    filter: brightness(1.1); /* Slightly brighter on hover */
}

/* Hero Section Styles */
.hero-section {
    background-color: #202020;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Shadow for hero section */
}

.hero-section h1 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.stats-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    color: #ccc;
    font-size: 15px;
}

.stat-item span {
    color: var(--kz-orange);
    font-weight: bold;
    font-size: 18px;
    margin-right: 5px;
}

/* Skord Menu Feature Styles */
.skord-feature {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 30px;
    margin-top: 30px; /* Space from stats */
    border: 1px solid #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center; /* Centered content */
}

.skord-feature h2 {
    color: var(--kz-orange);
    font-size: 32px;
    margin-bottom: 15px;
}

.skord-feature p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.skord-button {
    background-color: var(--kz-orange);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.2s ease, filter 0.2s ease;
    text-decoration: none; /* For anchor tag */
    display: inline-block; /* For anchor tag */
}

.skord-button:hover {
    filter: brightness(1.1);
}


/* Content Sections Styles */
.section-title {
    color: #fff;
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--kz-orange); /* Underline effect */
    padding-bottom: 10px;
    display: inline-block; /* Ensures underline only spans text */
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
    gap: 25px; /* Spacing between cards */
}

.card {
    background-color: #202020;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Smooth hover effects */
    display: flex;
    flex-direction: column;
    position: relative; /* For positioning inner elements */
    padding-bottom: 15px; /* Space for download button */
}

.card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4); /* Enhanced shadow on hover */
}

.card-image-section {
    position: relative;
    width: 100%;
    height: 180px; /* Fixed height for image section */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px); /* Blurred background */
    transform: scale(1.1); /* Slightly upscale for blur effect */
}

.card-main-icon {
    position: relative; /* To ensure it's above the blurred background */
    width: 100px; /* Size of the main icon */
    height: 100px;
    object-fit: contain;
    border-radius: 8px; /* Rounded corners for the icon */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); /* Shadow for the icon */
}

.card-header {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #2a2a2a; /* Slightly lighter background for header */
    border-bottom: 1px solid #333;
    font-size: 13px;
    color: #ccc;
}

.card-header .profile-pic {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
}

.card-header .user-id {
    font-weight: 500;
    color: #eee;
}

.card-header .item-id {
    margin-left: auto;
    background-color: #333;
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--kz-orange);
    font-weight: bold;
}


.card-content {
    padding: 15px;
    flex-grow: 1; /* Allows content to take available space */
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    color: var(--kz-orange);
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 8px;
}

.card-content p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1; /* Allows description to push meta to bottom */
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #888;
    margin-top: auto; /* Pushes meta to the bottom */
    padding: 0 15px 15px; /* Padding for meta, aligns with content */
}

.card-meta .rating {
    color: gold; /* Star color */
}

.card-meta .difficulty {
    background-color: #333;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.card-download-button {
    background-color: var(--kz-orange);
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease, filter 0.2s ease;
    text-decoration: none;
    display: flex; /* Use flex to center icon and text */
    align-items: center;
    justify-content: center;
    width: calc(100% - 30px); /* Adjust width for padding */
    margin: 0 15px 15px; /* Centered with bottom margin */
}

.card-download-button:hover {
    filter: brightness(1.1);
}

.card-download-button i {
    margin-right: 8px;
}


/* Styles for the "Other Ways to Get Involved" section */
.get-involved-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #333; /* Separator line */
}

.get-involved-section h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}

.get-involved-section p {
    color: #ccc;
    font-size: 15px;
    margin-bottom: 30px;
}

.involved-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.involved-card {
    background-color: #202020;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes content to top, button to bottom */
}

.involved-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.involved-card h3 {
    color: var(--kz-orange);
    font-size: 20px;
    margin-bottom: 10px;
}

.involved-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.involved-card .card-link {
    color: var(--kz-orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: auto; /* Pushes link to the bottom */
    transition: color 0.2s ease;
}

.involved-card .card-link:hover {
    color: #d17c3b; /* Slightly darker orange on hover */
}

.involved-card .card-link i {
    margin-left: 8px;
    font-size: 14px;
}

/* Guides Section Styles (Accordion) */
.guides-section {
    margin-top: 30px;
    margin-bottom: 50px;
}

.guide-item {
    background-color: #202020;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden; /* Important for the accordion effect */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Hide the checkbox visually but keep it functional */
.guide-checkbox {
    display: none;
}

.guide-title-label {
    padding: 20px;
    color: var(--kz-orange);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    user-select: none; /* Prevent text selection on click */
}

.guide-title-label:hover {
    background-color: #2a2a2a;
}

/* Arrow icon for dropdown */
.guide-title-label::after {
    content: '\25BC'; /* Down arrow */
    font-size: 16px;
    color: #ccc;
    transition: transform 0.3s ease;
}

/* Rotate arrow when checkbox is checked (i.e., guide is open) */
.guide-checkbox:checked + .guide-title-label::after {
    transform: rotate(180deg); /* Up arrow when active */
}

.guide-content {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 0 20px;
    max-height: 0; /* Hidden by default */
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.guide-content p,
.guide-content ul,
.guide-content ol {
    padding-bottom: 20px; /* Padding for content inside answer */
    margin: 0; /* Reset default paragraph/list margin */
}

.guide-content ul,
.guide-content ol {
    padding-left: 40px; /* Indent lists */
}

.guide-content li {
    margin-bottom: 5px;
}

/* Show content when checkbox is checked */
.guide-checkbox:checked + .guide-title-label + .guide-content {
    max-height: 2000px; /* Increased to a larger value */
    padding-top: 10px; /* Add top padding when open */
    padding-bottom: 20px; /* Maintain bottom padding */
}

/* New Styles for Downloads Page */
.download-category {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #202020;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.download-category h3 {
    color: var(--kz-orange);
    font-size: 22px;
    margin-bottom: 10px;
    border-bottom: 1px solid #333;
    padding-bottom: 8px;
}

.download-category p {
    color: #ccc;
    font-size: 15px;
    margin-bottom: 20px;
}

.download-category .inline-link {
    color: var(--kz-orange);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.download-category .inline-link:hover {
    color: #d17c3b;
}


.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.download-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
    text-align: center;
    border: 1px solid #333;
    position: relative; /* For pseudo-elements */
    overflow: hidden; /* Ensure content doesn't spill */
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Added subtle gradient overlay on hover */
.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(251, 157, 76, 0.05), rgba(251, 157, 76, 0.15));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* Allow clicks to pass through */
}

.download-card:hover::before {
    opacity: 1;
}


.card-icon-wrapper {
    background-color: var(--kz-orange);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth icon transition */
}

.download-card:hover .card-icon-wrapper {
    transform: scale(1.1); /* Pop effect on icon */
    background-color: #d17c3b; /* Slightly darker orange on hover */
}

.card-icon-wrapper i {
    color: #fff;
    font-size: 28px;
}

.download-card h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.download-card:hover h4 {
    color: var(--kz-orange); /* Orange title on hover */
}

.download-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    flex-grow: 1; /* Allows description to take available space */
    margin-bottom: 15px;
}

.download-card .card-meta {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 13px;
    color: #888;
    margin-top: auto; /* Pushes meta to the bottom */
    margin-bottom: 15px;
    padding: 0; /* Reset padding from general .card-meta */
}

.download-card .card-meta span {
    background-color: #2a2a2a;
    padding: 5px 10px;
    border-radius: 4px;
    color: #eee;
}


.download-button {
    background-color: var(--kz-orange);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s ease, filter 0.2s ease, transform 0.2s ease; /* Added transform */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative; /* For button effects */
    overflow: hidden; /* For ripple effect */
}

.download-button:hover {
    filter: brightness(1.1);
    transform: translateY(-2px); /* Slight lift on hover */
}

/* Ripple effect for download button */
.download-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0;
    transform: scale(1) translate(-50%, -50%);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.download-button:active::after {
    transform: scale(20) translate(-50%, -50%);
    opacity: 1;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}


.download-button i {
    margin-right: 8px;
}


/* Responsive Adjustments */
@media (max-width: 1024px) {
    .nav-links {
        gap: 15px;
    }
    .hero-section h1 {
        font-size: 30px;
    }
    .skord-feature h2 {
        font-size: 28px;
    }
    .skord-feature p {
        font-size: 15px;
    }
    .skord-button {
        padding: 12px 25px;
        font-size: 16px;
    }
    .guide-title-label {
        font-size: 16px;
        padding: 15px;
    }
    .guide-content p,
    .guide-content ul,
    .guide-content ol {
        font-size: 14px;
        padding-bottom: 15px;
    }
    .download-category h3 {
        font-size: 20px;
    }
    .download-card h4 {
        font-size: 16px;
    }
    .download-card p {
        font-size: 13px;
    }
    .download-button {
        font-size: 14px;
        padding: 10px 15px;
    }
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        height: auto;
        padding: 15px;
        gap: 15px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .nav-actions {
        margin-top: 10px;
        justify-content: center;
        width: 100%;
    }
    .logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .hero-section {
        padding: 30px;
    }
    .hero-section h1 {
        font-size: 26px;
    }
    .stats-section {
        flex-direction: column;
        gap: 10px;
    }
    .skord-feature {
        padding: 20px;
    }
    .skord-feature h2 {
        font-size: 24px;
    }
    .skord-feature p {
        font-size: 14px;
    }
    .skord-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    .card-grid {
        grid-template-columns: 1fr; /* Stack cards on small screens */
    }
    .involved-cards-grid {
        grid-template-columns: 1fr;
    }
    .guide-title-label {
        font-size: 15px;
    }
    .guide-content p,
    .guide-content ul,
    .guide-content ol {
        font-size: 13px;
        padding-bottom: 15px;
    }
    .download-category {
        padding: 15px;
    }
    .download-category h3 {
        font-size: 18px;
    }
    .download-category p {
        font-size: 14px;
    }
    .download-grid {
        grid-template-columns: 1fr;
    }
    .download-card {
        padding: 15px;
    }
    .card-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    .card-icon-wrapper i {
        font-size: 24px;
    }
    .download-card h4 {
        font-size: 16px;
    }
    .download-card p {
        font-size: 13px;
    }
    .download-button {
        font-size: 13px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px 0;
    }
    .website {
        width: 95%;
        padding: 15px;
    }
    .nav {
        width: calc(100% - 30px);
    }
    .hero-section h1 {
        font-size: 22px;
    }
    .skord-feature h2 {
        font-size: 20px;
    }
    .skord-feature p {
        font-size: 13px;
    }
    .skord-button {
        padding: 8px 15px;
        font-size: 12px;
    }
    .section-title {
        font-size: 20px;
    }
    .guide-title-label {
        font-size: 14px;
        padding: 12px;
    }
    .guide-content p,
    .guide-content ul,
    .guide-content ol {
        font-size: 12px;
        padding-bottom: 12px;
    }
    .download-category {
        padding: 10px;
    }
    .download-category h3 {
        font-size: 16px;
    }
    .download-category p {
        font-size: 12px;
    }
    .download-card {
        padding: 10px;
    }
    .card-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    .card-icon-wrapper i {
        font-size: 20px;
    }
    .download-card h4 {
        font-size: 14px;
    }
    .download-card p {
        font-size: 11px;
    }
    .download-button {
        font-size: 12px;
        padding: 8px;
    }
}

/* New styles for the search bar */
.search-bar-container {
    position: relative;
    margin: 20px auto 40px auto; /* Centered, with more space below */
    max-width: 600px; /* Max width for the search bar */
}

.search-input {
    width: 100%;
    padding: 12px 15px 12px 45px; /* Left padding for icon */
    border: 1px solid #333;
    border-radius: 8px;
    background-color: #2a2a2a;
    color: #fff;
    font-size: 16px;
    outline: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input::placeholder {
    color: #888;
}

.search-input:focus {
    border-color: var(--kz-orange);
    box-shadow: 0 0 0 3px rgba(251, 157, 76, 0.3);
}

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

/* Styles for the new centered download button */
.download-button-centered {
    background-color: var(--blue-accent); /* Blue color */
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease, filter 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    display: block; /* Make it a block element */
    width: fit-content; /* Adjust width to content */
    margin: 20px auto 0 auto; /* Center it horizontally and add top margin */
    position: relative;
    overflow: hidden;
}

.download-button-centered:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.download-button-centered::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0;
    transform: scale(1) translate(-50%, -50%);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.download-button-centered:active::after {
    transform: scale(20) translate(-50%, -50%);
    opacity: 1;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.download-button-centered i {
    margin-right: 8px;
}

/* Style for the inline download button in guide-title-label (removed) */
/* .download-button-inline {
    background-color: var(--kz-orange);
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.2s ease, filter 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
}

.download-button-inline:hover {
    filter: brightness(1.1);
}

.download-button-inline i {
    margin-right: 5px;
} */
