/* Common Styles for MediaForge Application */
/* This file contains shared styles used across multiple pages */
button,
a:not(.dropdown-item, .nav-link) {
    /* border-radius: 20%!important; */
    outline: none !important;
    border-radius: 20% 0px 20% 0 !important;
}

/* Loading overlay styles */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.loading-content {
    text-align: center;
    color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    background: linear-gradient(145deg, #111111 0%, #1a1a1a 100%);
    border: 1px solid #333333;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.loading-content h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.loading-content p {
    background: linear-gradient(145deg, #1a1a1a 0%, #222222 100%);
    border: 1px solid #333333;
    padding: 20px;
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 0.875rem;
    line-height: 1.6;
    border-radius: 8px;
}

.loading-content p:hover {
    border-color: #2adb5c;
    background: linear-gradient(145deg, #222222 0%, #2a2a2a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 219, 92, 0.3);
}

.loading-content p.active {
    background: linear-gradient(135deg, #2adb5c 0%, #22c55e 100%);
    color: #000000;
    font-weight: 600;
    border-color: #2adb5c;
}

.loading-content p.completed {
    background: linear-gradient(145deg, #1a2e1a 0%, #2a4a2a 100%);
    border-color: #2adb5c;
    color: #2adb5c;
    opacity: 0.8;
}

.loading-content p.error {
    background: linear-gradient(145deg, #2a1a1a 0%, #4a2a2a 100%);
    border-color: #dc2626;
    color: #dc2626;
}


.loading-overlay>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #333333;
    border-top: 4px solid #2adb5c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loading-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Result Modal Styles */
.result-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.result-modal-content {
    background: linear-gradient(145deg, #111111 0%, #1a1a1a 100%);
    border: 1px solid #333333;
    padding: 32px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 3px 12px;
    text-align: center;
}

.result-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #666666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.result-modal-close:hover {
    color: #ef4444;
}

.result-modal h3 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 600;
}

.result-modal p {
    color: #cccccc;
    margin-bottom: 24px;
    line-height: 1.6;
    white-space: pre-line;
}

.result-download-btn {
    background: linear-gradient(135deg, #2adb5c 0%, #22c55e 100%);
    color: #fff;
    padding: 12px 24px;
    border: none;
    text-decoration: none;
    display: inline-block;
    margin-right: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 0;
}

.result-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(42, 219, 92, 0.4);
}

.result-close-btn {
    background: #333333;
    color: #cccccc;
    padding: 12px 24px;
    border: 1px solid #555555;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
}

.result-close-btn:hover {
    background: #444444;
    transform: translateY(-2px);
}

/* Common Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2adb5c 0%, #22c55e 100%);
    color: #000000;
    padding: 16px 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    z-index: 10001;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 350px;
    word-wrap: break-word;
}

.notification.show {
    transform: translateX(0);
}

.notification.error {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #ffffff;
}

.notification.success {
    background: linear-gradient(135deg, #2adb5c 0%, #22c55e 100%);
    color: #000000;
}

.notification.warning {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    color: #000000;
}

/* Common Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #2adb5c 0%, #22c55e 100%);
    color: #000000;
    padding: 12px 24px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(42, 219, 92, 0.4);
}

.btn-secondary {
    background: #333333;
    color: #cccccc;
    padding: 12px 24px;
    border: 1px solid #555555;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #444444;
    border-color: #666666;
    transform: translateY(-2px);
}

/* Common Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #cccccc;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px;
    background: #222222;
    border: 1px solid #444444;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #2adb5c;
    box-shadow: 0 0 0 3px rgba(42, 219, 92, 0.3);
}

.form-input::placeholder {
    color: #666666;
}

/* Common Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 32px;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 32px;
}

.p-0 {
    padding: 0;
}

.p-1 {
    padding: 8px;
}

.p-2 {
    padding: 16px;
}

.p-3 {
    padding: 24px;
}

.p-4 {
    padding: 32px;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.d-inline {
    display: inline;
}

.d-inline-block {
    display: inline-block;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .result-modal-content {
        padding: 24px;
        margin: 20px;
    }

    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }

    .notification.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .result-modal-content {
        padding: 20px;
        margin: 10px;
    }

    .result-download-btn,
    .result-close-btn {
        display: block;
        width: 100%;
        margin: 8px 0;
    }
}

select,
input[type="number"] {
    width: auto;
    padding: 12px 16px;
    background: linear-gradient(145deg, #222222 0%, #1a1a1a 100%);
    border: 1px solid #444444;
    color: #ffffff;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

select:hover,
input[type="number"]:hover {
    border-color: #2adb5c;
    background: linear-gradient(145deg, #2a2a2a 0%, #333333 100%);
}

select option:hover {
    background-color: #333333;
}

select option {
    background-color: #222222;
    color: #ffffff;
    padding: 8px 12px;
}

input[type="text"] {
    width: auto;
    padding: 12px 16px;
    background: linear-gradient(145deg, #222222 0%, #1a1a1a 100%);
    border: 1px solid #444444;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-top: 8px;
}

input[type="text"]:hover {
    border-color: #2adb5c;
}

/* Navigation Styles */
/* Breadcrumb Navigation */
.breadcrumb-nav {
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #cccccc;
    position: relative;
}

.breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(42, 219, 92, 0.1), transparent);
    transition: left 0.6s ease;
}

.breadcrumb:hover::before {
    left: 100%;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 12px;
    color: #666666;
    font-weight: 400;
}

.breadcrumb-item a {
    color: #2adb5c;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.breadcrumb-item a:hover {
    color: #22c55e;
    background: rgba(42, 219, 92, 0.2);
    text-shadow: 0 0 8px rgba(42, 219, 92, 0.5);
}

.breadcrumb-item.active {
    color: #888888;
    font-weight: 500;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(10px);
    padding: 0;
    height: 70px;
    /* border-bottom: 1px solid #444; */
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 24px;
}

.flex-row-center {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
    text-decoration: none;
}

.brand-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(42, 219, 92, 0.5));
    transition: all 0.3s ease;
}

.brand-icon img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 8px rgba(42, 219, 92, 0.6));
    transition: all 0.3s ease;
}

.nav-brand:hover .brand-icon img {
    filter: drop-shadow(0 0 12px rgba(42, 219, 92, 0.8));
    transform: scale(1.05);
}

.brand-text {
    background: linear-gradient(135deg, #2adb5c 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;

}

@media (min-width: 1200px) {
    .nav-link {
        border-radius: 20% 0px 20% 0;
    }
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(42, 219, 92, 0.2);
    transform: translateY(-1px);
}

.nav-link:active {
    transform: translateY(0);
}

.nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, #2adb5c 0%, #22c55e 100%);
    box-shadow: 0 4px 12px rgba(42, 219, 92, 0.4),
        0 2px 4px rgba(42, 219, 92, 0.2);
    position: relative;
    overflow: hidden;


}

.nav-link.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.nav-link.active:hover::before {
    left: 100%;
}

.nav-link.active .fas {
    color: #fff !important;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.nav-link.active:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 219, 92, 0.5),
        0 3px 6px rgba(42, 219, 92, 0.3);
}

.nav-link.active:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(42, 219, 92, 0.4);
}

/* Dropdown Navigation Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

optgroup {
    background-color: #222222;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid #333333;
    padding: 8px 0;
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1001;
}

/* Multi-column dropdown styles for desktop */
.dropdown-menu-columns {
    display: flex;
    min-width: 600px;
    padding: 16px 0;
}

.dropdown-column {
    flex: 1;
    padding: 0 16px;
    border-right: 1px solid #333333;
}

.dropdown-column:last-child {
    border-right: none;
}

.dropdown-column-header {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #2adb5c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #333333;
}

.dropdown-column-header span {
    color: #ffffff;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.dropdown-item {
    display: block;
    padding: 12px;
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    /* width: max-content; */
    white-space: nowrap;
}

.dropdown-item:hover {
    background: rgba(42, 219, 92, 0.2);
    color: #ffffff;
    /* padding-left: 24px; */
}

.dropdown-item.active {
    background: linear-gradient(135deg, #2adb5c 0%, #22c55e 100%);
    color: #fff;
}

.dropdown-item.active i {
    color: #fff !important;
}

.dropdown-item.active:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.dropdown-item.disabled {
    color: #666666;
    cursor: not-allowed;
    pointer-events: none;
}

.dropdown-divider {
    height: 1px;
    background: #333333;
    margin: 8px 0;
}

input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2adb5c;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #444444;
    background: linear-gradient(145deg, #222222 0%, #1a1a1a 100%);
    flex-shrink: 0;
}

input[type="checkbox"]:hover {
    border-color: #2adb5c;
    transform: scale(1.05);
}

input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #2adb5c 0%, #22c55e 100%);
    border-color: #2adb5c;
    box-shadow: 0 2px 8px rgba(42, 219, 92, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(42, 219, 92, 0.2);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #ffffff;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .navbar {
        height: 60px;
    }

    .nav-container {
        padding: 0 16px;
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid #333333;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        transform: translateY(-100vh);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        overflow-x: hidden;
        /* Hide scrollbar but keep functionality */
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE and Edge */
    }

    .nav-menu::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(51, 51, 51, 0.5);
        justify-content: flex-start;
        display: flex;
        align-items: center;

    }

    .nav-link:hover {
        background: rgba(42, 219, 92, 0.2);
        transform: none;
    }

    .nav-link.active {
        background: linear-gradient(135deg, #2adb5c 0%, #22c55e 100%);
        box-shadow: 0 2px 8px rgba(42, 219, 92, 0.3);
        position: relative;
    }

    .nav-link.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
        transition: left 0.5s ease;
    }

    .nav-link.active:hover::before {
        left: 100%;
    }

    .nav-link.active:hover {
        background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
        box-shadow: 0 3px 12px rgba(42, 219, 92, 0.4);
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        display: none;
        background: rgba(0, 0, 0, 0.9);
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    /* Mobile: Single column layout */
    .dropdown-menu-columns {
        display: block;
        min-width: auto;
        padding: 0;
    }

    .dropdown-column {
        flex: none;
        padding: 0;
        border-right: none;
        border-bottom: 1px solid rgba(51, 51, 51, 0.3);
    }

    .dropdown-column:last-child {
        border-bottom: none;
    }

    .dropdown-column-header {
        padding: 12px 24px;
        margin-bottom: 0;
        background: rgba(42, 219, 92, 0.1);
        border-bottom: 1px solid rgba(42, 219, 92, 0.2);
        font-size: 0.8rem;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        padding: 12px 40px;
        border-bottom: 1px solid rgba(51, 51, 51, 0.3);
        font-size: 0.9rem;
    }

    .dropdown-item:hover {
        transform: none;
        background: rgba(42, 219, 92, 0.2);
    }

    .nav-brand {
        font-size: 1.1rem;
    }

    .brand-text {
        display: none;
    }

    body {
        padding-top: 60px;
    }

    body.nav-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 55px;
    }

    .nav-container {
        padding: 0 12px;
    }

    .nav-menu {
        top: 55px;
        max-height: calc(100vh - 55px);
        overflow-y: auto;
        overflow-x: hidden;
        /* Hide scrollbar but keep functionality */
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE and Edge */
    }

    .nav-menu::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }

    .nav-link {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .dropdown-item {
        padding: 10px 36px;
        font-size: 0.85rem;
    }

    .nav-brand {
        font-size: 1rem;
    }

    .mobile-menu-toggle {
        width: 36px;
        height: 36px;
    }

    .hamburger-line {
        width: 20px;
    }

    body {
        padding-top: 55px;
    }
}

.column-label {
    flex-direction: column !important;
    align-items: flex-start !important;
    position: relative;
}

.column-label>b {
    position: absolute;
    left: 44px;
    font-weight: 500 !important;
}

.child-label-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.child-label-item input {
    margin: 0 !important;
}

select,
input,
textarea,
body {
    accent-color: #2adb5c !important;
}

/* Footer Styles */
.footer {
    /* background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%); */
    padding: 60px 0 30px 0;
    color: #ffffff;
    position: relative;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-header {
    text-align: center;
    margin-bottom: 50px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer-brand-icon {
    background: linear-gradient(135deg, #2adb5c 0%, #22c55e 100%);
    padding: 12px;
    border-radius: 16px;
    margin-right: 16px;
    box-shadow: 0 4px 12px rgba(42, 219, 92, 0.5);
}

.footer-brand-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.footer-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #2adb5c 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: #cccccc;
    font-size: 1.1rem;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    background: linear-gradient(145deg, #111111 0%, #1a1a1a 100%);
    border: 1px solid #333333;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(42, 219, 92, 0.1), transparent);
    transition: left 0.5s ease;
}

.footer-section:hover {
    border-color: #2adb5c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 219, 92, 0.3);
}

.footer-section:hover::before {
    left: 100%;
}

.footer-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-section-icon {
    /* padding: 10px; */
    margin-right: 12px;
}


.footer-section-icon i {
    color: #2adb5c;
    font-size: 1.5rem;
}

.footer-section-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #cccccc !important;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.footer-link i {
    margin-right: 8px;
    width: 16px;
    color: #2adb5c;
}

.footer-link:hover {
    background: rgba(42, 219, 92, 0.2);
    color: #ffffff;
    transform: translateX(4px);
}

.footer-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    padding: 30px;
    /* background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
    border: 1px solid #e2e8f0; */
}

.footer-stat {
    text-align: center;
}

.footer-stat-number {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.footer-stat-label {
    color: #cccccc;
    font-size: 0.875rem;
    margin-top: 4px;
}

.footer-divider {
    width: 1px;
    height: 40px;
    background: #444444;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-copyright p {
    color: #cccccc;
    margin: 0;
    font-size: 0.875rem;
}

.footer-powered {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-powered-text {
    color: #888888;
    font-size: 0.875rem;
}

.footer-powered-badge {
    background: linear-gradient(135deg, #2adb5c 0%, #22c55e 100%);
    color: #000000;
    padding: 4px 8px;
    font-weight: 600;
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    color: #cccccc;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 8px;
}

.footer-social-link:hover {
    color: #2adb5c;
    background: rgba(42, 219, 92, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-stats {
        flex-direction: column;
        gap: 20px;
    }

    .footer-divider {
        width: 100%;
        height: 1px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.footer-logo {
    display: inline-block;
    margin-right: 10px;
}

.select-btn {
    background: linear-gradient(135deg, #2adb5c 0%, #1e8e3e 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 219, 92, 0.4);
}

.preview-section>h3 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.remove-file {
    background: linear-gradient(135deg, #2adb5c 0%, #22c55e 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 14px;
    z-index: 11;
    border-radius: 0;
    transition: background, transform, 0.3s ease;
    font-weight: 500;
}

.remove-file:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(42, 219, 92, 0.4);
}

.remove-file i {
    margin-right: 5px;
}