/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f9fb;
    color: #333333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a8a;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.logo-arc {
    width: 80px;
    height: 12px;
    margin-top: -2px;
    margin-left: 2px;
}

/* Navigation Menu */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    color: #4b5563;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    background-color: #f3f4f6;
    color: #1f2937;
}

.nav-link i.fa-chevron-down {
    font-size: 0.7rem;
    margin-left: 0.2rem;
    transition: transform 0.2s ease;
}

.nav-item.dropdown:hover .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
}

/* GPU Icon */
.gpu-icon {
    color: #8b5cf6;
    font-size: 0.85rem;
    margin-right: 0.3rem;
}

/* Release Notes Icon */
.release-notes-icon {
    color: #2563eb;
    font-size: 0.85rem;
    margin-right: 0.3rem;
}

/* Adjustments Icon */
.adjustments-icon {
    color: #10b981;
    font-size: 0.85rem;
    margin-right: 0.3rem;
}

/* Downloads Icon */
.downloads-icon {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-right: 0.3rem;
}

/* Products Icon */
.products-icon {
    color: #8b5cf6;
    font-size: 0.85rem;
    margin-right: 0.3rem;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    list-style: none;
    min-width: 200px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 100;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.65rem 1.25rem;
    color: #4b5563;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.15s ease;
}

.dropdown-menu a:hover {
    background-color: #f9fafb;
    color: #1f2937;
}

/* Login Button */
.header-actions {
    flex-shrink: 0;
}

.login-btn {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.login-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

/* Main Content */
.main-content {
    flex: 1 0 auto;
    padding: 0;
}

/* Remove min-height for homepage to prevent unnecessary scroll */
.content-wrapper .home-hero {
    min-height: auto;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem;
}

.content-wrapper h1:not(.hero-headline) {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.content-wrapper p:not(.hero-description) {
    font-size: 1.2rem;
    color: #6b7280;
}

/* Home Hero Section */
.home-hero {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 1rem 0;
}

.hero-content {
    flex: 1;
    text-align: left;
    max-width: 600px;
    font-family: 'Inter', sans-serif;
}

.hero-headline {
    font-family: 'Inter', sans-serif;
    font-size: 32px !important;
    font-weight: 700;
    color: #000000 !important;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-headline-line {
    display: block;
    width: 60px;
    height: 3px;
    background-color: #3b82f6;
    margin: 0.5rem 0;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px !important;
    line-height: 1.7;
    color: #000000 !important;
    margin-bottom: 1.5rem;
    max-width: 550px;
    font-weight: 400;
}

.privacy-text {
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 4px;
}

.hero-button {
    font-family: 'Inter', sans-serif;
    display: inline-block;
    background-color: #3b82f6;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8125rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-button .arrow {
    display: inline-flex;
    align-items: center;
    animation: arrowMove 1.5s ease-in-out infinite;
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 0.5rem;
    line-height: 1;
    opacity: 0.9;
}

@keyframes arrowMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(4px);
    }
}

.hero-button:hover {
    background-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.hero-button:hover .arrow {
    animation-duration: 0.8s;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

.hero-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
}

@media (max-width: 968px) {
    .home-hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-headline {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 15px;
        max-width: 100%;
    }
}

/* Release Notes Page Styles */
.release-notes-content {
    min-height: calc(100vh - 70px);
    padding: 0;
}

/* Active Nav Link */
.nav-link.active {
    color: #2563eb !important;
    background-color: #eff6ff;
}

/* Release Banner Section */
.release-banner {
    background: linear-gradient(135deg, #6b21a8 0%, #9333ea 50%, #a855f7 100%);
    padding: 1.25rem 2rem;
    position: relative;
    overflow: hidden;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    position: relative;
    z-index: 2;
}

.banner-text {
    flex: 1;
    color: #ffffff;
    max-width: 600px;
    padding-right: 1rem;
}

.banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    line-height: 1.25;
    color: #ffffff;
    letter-spacing: -0.01em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.banner-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.banner-illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 130px;
}

.illustration-wrapper {
    position: relative;
    width: 100%;
    max-width: 200px;
    height: 130px;
}

.illustration-person {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.person-head {
    width: 35px;
    height: 35px;
    background-color: #d4a574;
    border-radius: 50%;
    position: absolute;
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.person-body {
    width: 42px;
    height: 55px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 22px 22px 8px 8px;
    position: relative;
    margin: 0 auto;
}

.illustration-notepad {
    width: 100px;
    height: 120px;
    background-color: #bfdbfe;
    border-radius: 5px;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.illustration-notepad::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: #60a5fa;
}

.illustration-notepad::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 30px;
    right: 20px;
    height: 2px;
    background-color: #93c5fd;
    box-shadow: 0 25px 0 #93c5fd, 0 50px 0 #93c5fd, 0 75px 0 #93c5fd, 0 100px 0 #93c5fd, 0 125px 0 #93c5fd, 0 150px 0 #93c5fd, 0 175px 0 #93c5fd;
}

.person-pencil {
    width: 3.5px;
    height: 42px;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%) rotate(-10deg);
    z-index: 4;
}

.illustration-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.illustration-dots .dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.illustration-dots .dot:nth-child(1) {
    top: 20%;
    left: 10%;
}

.illustration-dots .dot:nth-child(2) {
    top: 40%;
    right: 15%;
}

.illustration-dots .dot:nth-child(3) {
    bottom: 30%;
    left: 20%;
}

.illustration-dots .dot:nth-child(4) {
    top: 60%;
    right: 25%;
}

.illustration-dots .dot:nth-child(5) {
    bottom: 10%;
    right: 10%;
}

.speech-bubble {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 40px;
    height: 30px;
    background-color: #3b82f6;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    z-index: 5;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #3b82f6;
}

/* Community Banner Section */
.community-banner {
    background-color: #0f766e;
    padding: 1.5rem 2rem;
}

.community-container {
    max-width: 1200px;
    margin: 0 auto;
}

.community-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.community-icon {
    flex-shrink: 0;
}

.community-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.community-text {
    flex: 1;
    color: #ffffff;
    min-width: 300px;
}

.community-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.community-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.community-action {
    flex-shrink: 0;
}

.feature-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #a78bfa;
    color: #4c1d95;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.feature-btn:hover {
    background-color: #c4b5fd;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Filters Section */
.filters-section {
    background-color: #ffffff;
    padding: 1rem 2rem 0.5rem;
    border-top: 1px solid #e5e7eb;
}

.filters-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.adjustments-filters-container {
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.75rem;
}

.adjustments-filters-container .filter-group {
    margin: 0;
    flex-shrink: 0;
    min-width: 160px;
    max-width: 200px;
}

/* Ensure filters stay together in a row */
.adjustments-filters-container .filter-group:not(:first-child) {
    margin-left: 0;
}

/* Container for filters only (without title) */
.adjustments-filters-wrapper {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.adjustments-filters-wrapper .filter-group {
    flex-shrink: 0;
}

.adjustments-page-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.filter-group {
    flex: 0 0 auto;
    min-width: 160px;
    max-width: 200px;
    display: flex;
    align-items: center;
}

.filter-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.4rem;
}

.filter-dropdown {
    position: relative;
    border: 1px solid #1f2937;
    border-radius: 5px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 2rem;
}

.filter-label-inline {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.65rem;
    background-color: #f3f4f6;
    color: #374151;
    font-size: 0.75rem;
    font-weight: 600;
    border-right: 1px solid #1f2937;
    flex-shrink: 0;
}

.filter-select {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.8rem;
    color: #1f2937;
    appearance: none;
    cursor: pointer;
    outline: none;
    padding: 0.35rem 1.5rem 0.35rem 0.65rem;
    line-height: 1.4;
    font-weight: 500;
    min-width: 0;
}

.filter-select option {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
    color: #4b5563;
    background-color: #ffffff;
    font-weight: 400;
}

.filter-select option:hover {
    background-color: #f9fafb;
    color: #1f2937;
}

.filter-select option:checked {
    background-color: #2563eb;
    color: #ffffff;
    font-weight: 500;
}

.filter-select:focus {
    outline: none;
}

.filter-select:focus + .filter-chevron {
    color: #2563eb;
}

.filter-chevron {
    position: absolute;
    right: 0.65rem;
    top: 50%;
    transform: translateY(-50%);
    color: #1f2937;
    pointer-events: none;
    font-size: 0.65rem;
    transition: transform 0.2s ease, color 0.2s ease;
}

.filter-dropdown:focus-within .filter-chevron {
    transform: translateY(-50%) rotate(180deg);
    color: #1f2937;
}

.filter-dropdown:hover {
    border-color: #1f2937;
    background-color: #ffffff;
}

.filter-dropdown:focus-within {
    border-color: #1f2937;
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.filter-reset-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    background-color: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    color: #374151;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    min-width: 80px;
}

.filter-reset-btn:hover {
    background-color: #e5e7eb;
    border-color: #9ca3af;
    color: #1f2937;
}

.filter-reset-btn:active {
    background-color: #d1d5db;
    transform: scale(0.98);
}

.filter-reset-btn i {
    font-size: 0.75rem;
}

/* Release Notes Content */
.release-notes-list {
    background-color: #ffffff;
    padding: 1.5rem 2rem 2rem;
}

.notes-container {
    max-width: 1200px;
    margin: 0 auto;
}

.notes-section {
    margin-bottom: 1.5rem;
}

.notes-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.75rem;
    margin-top: 0;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.product-name-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 0.75rem;
    margin-top: 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.notes-content {
    color: #4b5563;
    line-height: 1.7;
    flex: 1;
}

.notes-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 0.5rem 0;
}

.notes-content p {
    margin-bottom: 0.5rem;
}

.notes-content ul, .notes-content ol {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.notes-content li {
    margin-bottom: 0.25rem;
}

.notes-content a {
    color: #3b82f6;
    text-decoration: none;
}

.notes-content a:hover {
    text-decoration: underline;
}

.notes-item {
    margin-bottom: 0.875rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.notes-item .badge {
    margin-top: 0.125rem;
}

.notes-item:first-child {
    align-items: flex-start;
}

.notes-item:last-child {
    margin-bottom: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #ffffff;
    width: 110px;
    flex-shrink: 0;
    text-align: center;
    line-height: 1.4;
    white-space: nowrap;
    height: fit-content;
}

.badge-feature {
    background-color: #10b981;
}

.badge-bug {
    background-color: #8b5cf6;
}

.badge-changed {
    background-color: #14b8a6;
}

.notes-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.notes-list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.35rem;
    color: #000000;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: left;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.notes-list li:last-child {
    margin-bottom: 0;
}

.notes-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: normal;
    font-size: 0.9rem;
    top: 0;
    line-height: 1.6;
}

.notes-divider {
    width: 100%;
    height: 1px;
    background-color: #000000;
    margin-top: 2rem;
    margin-bottom: 0;
    opacity: 1;
    border: none;
    display: block;
}

/* Adjustments Section */
.adjustments-section {
    background-color: #ffffff;
    padding: 0.5rem 2rem 2rem;
}

.adjustments-container {
    max-width: 1200px;
    margin: 0 auto;
}

.downloads-container {
    max-width: 1600px;
    margin: 0 auto;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.table-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.search-bar {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.search-input {
    padding: 0.5rem 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.9rem;
    width: 200px;
    outline: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.search-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-btn {
    padding: 0.5rem 1rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.search-btn:hover {
    background-color: #1d4ed8;
}

.dropdown-btn {
    padding: 0.5rem 0.75rem;
    background-color: #ffffff;
    color: #1f2937;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-btn:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
}

.table-wrapper {
    overflow-x: auto;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.adjustments-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
}

.adjustments-table thead {
    background-color: #f3f4f6;
}

.adjustments-table th {
    padding: 0.5rem 1rem;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    border-bottom: 1px solid #e5e7eb;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.adjustments-table th .sort-icon {
    margin-left: 0.5rem;
    font-size: 0.7rem;
    color: #6b7280;
}

.adjustments-table td {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #1f2937;
    border-bottom: 1px solid #e5e7eb;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.adjustments-table tbody tr:hover {
    background-color: #f9fafb;
}

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

.adjustments-table td strong {
    font-weight: 600;
    color: #000000;
}

.how-btn {
    background: none;
    border: none;
    color: #2563eb;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.25rem;
    transition: color 0.2s ease;
}

.how-btn:hover {
    color: #1d4ed8;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.modal.active,
.modal[style*="flex"] {
    display: flex !important;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    padding-top: 3rem;
}

.modal-content {
    background-color: #ffffff;
    border-radius: 8px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: #000000;
}

.modal-body {
    padding: 1rem;
    overflow: visible;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.instructions-box {
    background-color: #f9fafb;
    padding: 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
    width: 100%;
}

.instructions-box h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.75rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.instructions-list {
    list-style: decimal;
    padding-left: 1.5rem;
    margin: 0;
}

.instructions-content {
    width: 100%;
}

.instructions-list li {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

#contractNameDisplay {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #1f2937;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

#contractNameDisplay strong {
    font-weight: 600;
    color: #000000;
}

/* Downloads Page - Uses same styles as Adjustments */
.new-release-badge {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.25rem 0.5rem;
    background-color: #ffffff;
    border: 1px solid #10b981;
    color: #059669;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background-color: #ffdcba;
    color: #333;
    text-decoration: none;
    border: 1px solid #ffdcba;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.download-btn:hover {
    background-color: #ffd4a3;
    border-color: #ffd4a3;
    color: #1f2937;
}

.download-btn i {
    font-size: 0.75rem;
}

.instructions-list li {
    font-size: 0.9rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.instructions-list li:last-child {
    margin-bottom: 0;
}

.adjustment-form {
    background-color: #eff6ff;
    border: 2px solid #2563eb;
    border-radius: 6px;
    padding: 1.5rem;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.form-close {
    background: none;
    border: none;
    font-size: 1rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0.25rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #374151;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.form-input {
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #1f2937;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.date-input-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.date-input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 0.9rem;
}

.date-nav-btn {
    background: none;
    border: 1px solid #d1d5db;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    color: #6b7280;
}

.date-icon {
    color: #6b7280;
    font-size: 0.9rem;
}

.input-with-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-dropdown .form-input {
    flex: 1;
    padding-right: 2rem;
}

.dropdown-arrow {
    position: absolute;
    right: 0.75rem;
    color: #6b7280;
    pointer-events: none;
}

.form-select-small {
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 0.9rem;
    background-color: #ffffff;
    cursor: pointer;
}

.expiry-details {
    margin-bottom: 1.5rem;
}

.expiry-details h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.expiry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.expiry-item {
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
}

.expiry-item label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    display: block;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.expiry-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.expiry-info span {
    font-size: 0.85rem;
    color: #1f2937;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.form-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #1f2937;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.form-group-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group-inline label {
    font-size: 0.85rem;
    color: #374151;
    white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.form-input-small {
    padding: 0.4rem 0.6rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 0.85rem;
    width: 80px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.btn-proceed {
    padding: 0.6rem 1.5rem;
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.btn-proceed:hover {
    background-color: #2563eb;
}

.btn-exit {
    padding: 0.6rem 1.5rem;
    background-color: #6b7280;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.btn-exit:hover {
    background-color: #4b5563;
}

/* Hover Image Popup */
.hover-image-trigger {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-decoration: underline;
    color: #2563eb;
}

.hover-image-trigger i {
    color: #2563eb;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.hover-image-trigger:hover i {
    color: #1d4ed8;
}

.hover-image-popup {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
    max-width: 90vw;
    max-height: 70vh;
}

.hover-image-trigger:hover .hover-image-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.adjustment-image-container {
    margin-top: 0.75rem;
    text-align: center;
    width: 100%;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 0;
}

@media (max-width: 768px) {
    .modal-content {
        width: 98%;
        max-height: 95vh;
    }
    
    .adjustment-image-container {
        min-height: 400px;
    }
}

.adjustment-form-image {
    max-width: 100%;
    max-height: calc(90vh - 250px);
    width: auto;
    height: auto;
    object-fit: contain;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    display: block;
    margin: 0 auto;
}

.adjustment-form-placeholder {
    background-color: #eff6ff;
    border: 2px solid #2563eb;
    border-radius: 8px;
    padding: 1.5rem;
    max-width: 600px;
    min-width: 500px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.placeholder-header {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #2563eb;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.placeholder-field {
    font-size: 0.9rem;
    color: #1f2937;
    padding: 0.5rem;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.placeholder-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.placeholder-expiry {
    font-size: 0.85rem;
    color: #1f2937;
    padding: 0.75rem;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.placeholder-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1rem;
}

.placeholder-btn {
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.placeholder-btn:first-child {
    background-color: #3b82f6;
    color: #ffffff;
}

.placeholder-btn:last-child {
    background-color: #6b7280;
    color: #ffffff;
}

/* Responsive Design for Release Notes */
@media (max-width: 768px) {
    .release-banner {
        padding: 1.5rem 1.5rem;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .banner-title {
        font-size: 1.75rem;
    }

    .banner-description {
        font-size: 0.9rem;
    }

    .community-content {
        flex-direction: column;
        text-align: center;
    }

    .filters-container {
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .adjustments-filters-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .adjustments-filters-wrapper {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .filter-group {
        width: 100%;
        max-width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 1.5rem;
    }

    .nav-menu {
        gap: 0.25rem;
    }

    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
        height: auto;
        flex-wrap: wrap;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .main-nav {
        order: 3;
        width: 100%;
        margin-top: 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo {
        order: 1;
    }

    .header-actions {
        order: 2;
        margin-left: auto;
    }

    .login-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Products Page Styles */
.products-section {
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
    padding: 1.25rem 2rem 2.5rem 2rem;
    min-height: calc(100vh - 70px);
}

.products-container {
    max-width: 1600px;
    margin: 0 auto;
}

.products-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.products-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.products-subtitle {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.products-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 0.5rem;
    background-color: #ffffff;
}

.products-table thead {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.products-table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.products-table th:first-child {
    border-top-left-radius: 0;
}

.products-table th:last-child {
    border-top-right-radius: 0;
}

.products-table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: top;
    font-size: 0.85rem;
    color: #334155;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
}

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

.products-table tbody tr {
    background-color: #ffffff;
}

.product-name {
    font-weight: 600;
    color: #1e293b;
    min-width: 200px;
    width: 25%;
    font-size: 0.875rem;
    line-height: 1.4;
}

.exchanges-cell {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.exchanges-group,
.activations-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: flex-start;
    width: 100%;
}

.exchanges-group {
    padding-bottom: 0.625rem;
    border-bottom: 1px dashed #cbd5e1;
    margin-bottom: 0.375rem;
}

.activations-group {
    padding-top: 0.375rem;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    padding: 0.35rem 0.65rem;
    background-color: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 6px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.75rem;
    color: #475569;
    white-space: nowrap;
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}


.checkbox-label input[type="checkbox"] {
    width: 14px;
    height: 14px;
    cursor: pointer;
    accent-color: #2563eb;
    flex-shrink: 0;
    border-radius: 3px;
}

.checkbox-label input[type="checkbox"]:checked + span {
    color: #2563eb;
    font-weight: 600;
}

.checkbox-label:has(input[type="checkbox"]:checked) {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #2563eb;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

.products-footer {
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
    margin-top: 0;
}

.get-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3), 0 2px 4px -1px rgba(37, 99, 235, 0.2);
    letter-spacing: 0.01em;
}

.get-quote-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4), 0 4px 6px -2px rgba(37, 99, 235, 0.3);
}

.get-quote-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.get-quote-btn i {
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .products-section {
        padding: 1rem;
    }
    
    .products-table {
        font-size: 0.85rem;
    }
    
    .products-table th,
    .products-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .exchanges-cell,
    .activations-cell {
        gap: 0.5rem;
    }
    
    .checkbox-label {
        padding: 0.3rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .product-name {
        min-width: 150px;
    }
}

/* Footer Styles */
.main-footer {
    background-color: #f3f5f9;
    border-top: 1px solid #e5e7eb;
    padding: 1rem 2rem;
    margin-top: auto;
    width: 100%;
    flex-shrink: 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #333;
    margin: 0;
    font-weight: 400;
}

.footer-link {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #333;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .main-footer {
        padding: 0.75rem 1rem;
    }
    
    .footer-content p {
        font-size: 0.8125rem;
    }
}

