/* ========================================
   New UI Design System - DongLi Travel
   Primary: #2E6AB0 | Accent: #4088D0
   ======================================== */

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; border: none; }
.clearfix::after { content: ""; display: table; clear: both; }

/* ========================================
   Header / Navbar
   ======================================== */
.new-header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-row {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 32px;
    height: 60px;
}
.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    width: 180px;
}
.header-logo img { height: 34px; }
.header-nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: center;
}
.header-nav .nav-item {
    position: relative;
}
.header-nav .nav-item a {
    display: block;
    color: #666;
    padding: 8px 22px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    border-radius: 6px;
    text-decoration: none;
}
.header-nav .nav-item a:hover {
    color: #2E6AB0;
    background: #f0f5ff;
}
.header-nav .nav-item.active a {
    color: #fff;
    background: linear-gradient(135deg, #2E6AB0, #4088D0);
}
.header-action {
    flex-shrink: 0;
    width: 260px;
    text-align: right;
}
.header-dl-btn {
    display: inline-block;
    position: relative;
    padding: 7px 20px;
    background: linear-gradient(135deg, #2E6AB0, #4088D0);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(46,106,176,0.3);
}
.header-dl-btn:hover {
    box-shadow: 0 4px 16px rgba(46,106,176,0.4);
    transform: translateY(-1px);
}
.header-dl-popup {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    padding: 24px;
    gap: 20px;
    width: 400px;
    z-index: 1001;
    flex-direction: column;
    white-space: nowrap;
}
.header-dl-popup > .dl-popup-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
}
.header-dl-popup::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}
.header-dl-popup::after {
    content: "";
    position: absolute;
    top: -6px;
    right: 28px;
    border: 6px solid transparent;
    border-bottom-color: #fff;
    border-top: none;
}
.header-dl-btn:hover .header-dl-popup { display: flex; }
.dl-popup-item {
    text-align: center;
}
.dl-popup-item img {
    width: 100px;
    height: 100px;
    border-radius: 6px;
    border: 1px solid #f0f0f0;
}
.dl-popup-item span {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #888;
}
.dl-popup-item a {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: #2E6AB0;
    text-decoration: none;
}
.dl-popup-item a:hover {
    text-decoration: underline;
}
.dl-popup-divider {
    width: 1px;
    background: #eee;
    align-self: stretch;
}
.dl-popup-bottom {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
    font-size: 11px;
    color: #aaa;
    line-height: 1.8;
}
.dl-popup-bottom b { color: #666; }
/* Floating Contact Sidebar (meiya-style) */
.float-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100000;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(22, 34, 50, 0.24);
    border-radius: 30px;
    padding: 10px 0;
    width: 60px;
}
.float-sidebar-mini {
    position: fixed;
    right: 0;
    top: auto;
    bottom: 20%;
    z-index: 100000;
    width: 60px;
    height: 60px;
    background: rgba(22, 34, 50, 0.24);
    border-radius: 30px 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}
.float-sidebar-mini:hover { background: rgba(22, 34, 50, 0.4); }
.float-sidebar-item {
    position: relative;
    width: 44px;
    padding: 4px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}
.float-sidebar-item:hover {
    background: rgba(255,255,255,0.12);
    border-radius: 10px;
}
.float-sidebar-item:hover .float-sidebar-icon {
    transform: scale(1.15);
}
.float-sidebar-icon {
    width: 44px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    line-height: 1;
    transition: transform 0.25s ease;
}
.float-sidebar-item:hover .float-sidebar-label {
    color: #fff;
    opacity: 1;
}
.float-sidebar-label {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    text-align: center;
    margin-top: 1px;
    white-space: nowrap;
    transition: color 0.25s, opacity 0.25s;
}
.float-sidebar-item + .float-sidebar-item { border-top: 1px solid rgba(255,255,255,0.12); }
.float-sidebar-popup {
    display: none;
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0,0,0,0.15);
    padding: 20px 16px;
    text-align: center;
    min-width: 200px;
    z-index: 100001;
}
.float-sidebar-popup::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #fff;
    border-right: none;
}
.float-sidebar-item:hover .float-sidebar-popup { display: block; }
.float-sidebar-popup img {
    width: 140px;
    height: 140px;
    border-radius: 6px;
}
.float-sidebar-popup p {
    margin: 6px 0 0;
    font-size: 13px;
    color: #555;
}
.float-sidebar-popup .popup-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}
.float-sidebar-popup .popup-phone {
    font-size: 17px;
    color: #2E6AB0;
    font-weight: 700;
    margin: 4px 0;
}
.float-sidebar-popup .popup-sub {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}
.float-sidebar-popup .popup-divider {
    height: 1px;
    background: #eee;
    margin: 12px 0;
}
#sidebar-top .float-sidebar-icon { height: 44px; }

/* ========================================
   Footer
   ======================================== */
.new-footer {
    background: #2d3748;
    color: rgba(255,255,255,0.7);
    padding: 30px 20px;
    margin-top: 40px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
}
.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.3s;
}
.footer-links a:hover { color: #fff; }
.footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.footer-info {
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

/* ========================================
   Hero / Banner Section
   ======================================== */
.hero-section {
    background: linear-gradient(135deg, #e6f7fa 0%, #d4f1f9 50%, #c8eaf5 100%);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10,77,104,0.05) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hero-title {
    font-size: 36px;
    font-weight: 700;
    color: #2E6AB0;
    margin-bottom: 12px;
}
.hero-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.hero-badge {
    background: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    color: #2E6AB0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* ========================================
   Content Sections
   ======================================== */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}
.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #2E6AB0;
    text-align: center;
    margin-bottom: 10px;
}
.section-label {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #F59E0B;
    margin-bottom: 4px;
}
.section-subtitle {
    text-align: center;
    color: #777;
    font-size: 14px;
    margin-bottom: 30px;
}

/* Cards */
.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.card-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.card-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2E6AB0, #4088D0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 16px;
}
.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}
.card-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.8;
}

/* ========================================
   Form Styles
   ======================================== */
.form-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}
.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #2E6AB0;
    text-align: center;
    margin-bottom: 30px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    margin-bottom: 0;
}
.form-group.full-width {
    grid-column: 1 / -1;
}
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 6px;
}
.form-label .required {
    color: #e74c3c;
    margin-left: 2px;
}
.form-input {
    width: 100%;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    background: #fff;
}
.form-input:focus {
    border-color: #2E6AB0;
    box-shadow: 0 0 0 3px rgba(10,77,104,0.1);
}
.form-input::placeholder { color: #aaa; }
select.form-input {
    appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat right 12px center;
    cursor: pointer;
}
textarea.form-input {
    height: auto;
    padding: 12px 14px;
    resize: vertical;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
}
.btn-primary {
    background: linear-gradient(135deg, #2E6AB0, #4088D0);
    color: #fff;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #083d55, #067280);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(10,77,104,0.3);
}
.btn-outline {
    background: transparent;
    color: #2E6AB0;
    border: 2px solid #2E6AB0;
}
.btn-outline:hover {
    background: #2E6AB0;
    color: #fff;
}
.btn-block { display: block; width: 100%; }
.btn-lg { padding: 14px 40px; font-size: 16px; }

/* ========================================
   Page Specific: Homepage Features
   ======================================== */
.features-section { padding: 50px 20px; background: #fff; }
.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.feature-item { text-align: center; padding: 20px; }
.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #e6f7fa, #d4f1f9);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: #2E6AB0;
}
.feature-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}
.feature-desc {
    font-size: 13px;
    color: #888;
}

/* ========================================
   Login Box (Homepage)
   ======================================== */
.login-container {
    max-width: 1200px;
    margin: -40px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}
.banner-login-row {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.banner-side {
    width: 1920px;
    height: 400px;
}
.banner-side .slideBox {
    width: 100%;
    height: 100%;
}
.banner-side .slideBox .bd li {
    width: 100%;
    height: 400px;
}
.banner-side .slideBox .bd li img {
    width: 1920px;
    height: 400px;
    display: block;
}
.login-side {
    position: absolute;
    left: 100px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.login-side .login-card {
    width: 100%;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.login-card {
    background: rgba(255,255,255,0.97);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 28px 24px;
    width: 100%;
    backdrop-filter: blur(8px);
}
.login-title {
    font-size: 18px;
    font-weight: 700;
    color: #2E6AB0;
    margin-bottom: 18px;
    text-align: center;
}
.login-input-group {
    position: relative;
    margin-bottom: 14px;
}
.login-input-group .icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
}
.login-input {
    width: 100%;
    height: 38px;
    padding: 0 12px 0 36px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s;
}
.login-input:focus { border-color: #2E6AB0; }
.login-row {
    display: flex;
    gap: 10px;
    align-items: center;
}
.login-code-img {
    height: 38px;
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0;
}
.login-agreement {
    font-size: 11px;
    color: #666;
    margin: 0;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 4px;
    line-height: 1.4;
}
.login-agreement input { margin-top: 2px; flex-shrink: 0; }
.login-agreement a { color: #2E6AB0; white-space: nowrap; }
.login-btn {
    width: 240px !important;
    height: 40px !important;
    padding: 0 !important;
    flex-shrink: 0;
    background: linear-gradient(135deg, #2E6AB0, #4088D0) !important;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.login-btn:hover,
.login-btn:focus {
    background: linear-gradient(135deg, #083d55, #067280);
    box-shadow: 0 0 0 3px rgba(10,36,99,0.4);
    outline: none;
}
.login-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    font-size: 12px;
}
.login-links a { color: #2E6AB0; }
.login-error {
    color: #e74c3c;
    font-size: 13px;
    text-align: center;
    margin-top: 8px;
}

/* ========================================
   Page Specific: About
   ======================================== */
.about-section {
    padding: 50px 20px;
}
.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}
.about-sidebar .card { padding: 0; margin-bottom: 20px; }
.about-menu-item {
    padding: 14px 24px;
    font-size: 15px;
    color: #555;
    cursor: pointer;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}
.about-menu-item:hover,
.about-menu-item.active {
    background: #e6f7fa;
    color: #2E6AB0;
    border-left-color: #2E6AB0;
    font-weight: 600;
}
.about-content .card { min-height: 400px; }
.about-company-title {
    font-size: 28px;
    font-weight: 700;
    color: #2E6AB0;
    margin-bottom: 16px;
}
.about-company-desc {
    font-size: 15px;
    line-height: 2;
    color: #555;
}
.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}
.contact-item .label { color: #999; min-width: 60px; }

/* ========================================
   Page Specific: Agreement Wizard
   ======================================== */
.wizard-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}
.wizard-steps {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}
.wizard-step {
    flex: 1;
    padding: 16px;
    text-align: center;
    font-size: 14px;
    color: #999;
    position: relative;
    transition: all 0.3s;
}
.wizard-step.active {
    color: #2E6AB0;
    font-weight: 600;
    background: #fff;
}
.wizard-step.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #2E6AB0, #4088D0);
}
.wizard-step .step-num {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 50%;
    background: #ddd;
    color: #fff;
    font-size: 12px;
    margin-right: 6px;
}
.wizard-step.active .step-num {
    background: linear-gradient(135deg, #2E6AB0, #4088D0);
}
.wizard-body { padding: 30px; }
.wizard-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    border-top: 1px solid #eee;
}

/* ========================================
   Page Specific: Dterm
   ======================================== */
.dterm-section { padding: 50px 20px; }
.dterm-grid {
    max-width: 1000px;
    margin: 0 auto;
}
.dterm-feature-list {
    list-style: none;
    padding: 0;
}
.dterm-feature-list li {
    padding: 10px 0;
    padding-left: 20px;
    position: relative;
    font-size: 15px;
    color: #555;
}
.dterm-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #2E6AB0;
    border-radius: 50%;
    transform: translateY(-50%);
}
.download-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}
.download-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 24px;
    text-align: center;
    transition: transform 0.3s;
}
.download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.download-card img {
    width: 160px;
    height: 160px;
    margin-bottom: 12px;
}
.download-card .platform-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}
.download-card a {
    color: #2E6AB0;
    font-size: 14px;
    word-break: break-all;
}

/* ========================================
   Page Specific: Recruitment
   ======================================== */
.recruit-section { padding: 50px 20px; }
.recruit-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}
.recruit-header {
    background: linear-gradient(135deg, #2E6AB0, #4088D0);
    padding: 40px;
    text-align: center;
    color: #fff;
}
.recruit-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
}
.recruit-header p {
    font-size: 16px;
    opacity: 0.85;
}
.recruit-body { padding: 40px; }

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .header-row { flex-wrap: wrap; height: auto; padding: 10px 16px; gap: 8px; }
    .header-nav { flex-wrap: wrap; gap: 2px; justify-content: flex-start; }
    .form-grid { grid-template-columns: 1fr; }
    .card-grid, .card-grid-2, .card-grid-4 { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 28px; }
    .contact-info { grid-template-columns: 1fr; }
    .banner-login-row {
        position: relative;
        height: 400px;
        overflow: hidden;
    }
    .login-side {
        position: relative;
        width: 100%;
        height: auto;
        padding: 20px 0;
    }
    .login-side .login-card {
        height: auto;
        border-radius: 0;
    }
    .banner-side {
        width: 1920px;
        height: 400px;
    }
    .banner-side .slideBox .bd li,
    .banner-side .slideBox .bd li img {
        width: 1920px;
        height: 400px;
    }
}

/* ========================================
   Utilities
   ======================================== */
.text-center { text-align: center; }
.text-primary { color: #2E6AB0; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.hidden { display: none; }

/* ========================================
   Slider Override (keep existing slider working)
   ======================================== */
.page_main_binand_logo { position: relative; }
.page_main_binand_logo .login {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 320px;
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    padding: 24px;
}

/* ========================================
   Legacy compatibility
   ======================================== */
.main { width: 100%; }
.page_main_about { max-width: 1200px; margin: 0 auto; background: transparent; }
