@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

:root {
    --font-base: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --primary: #3d5a73;
    --primary-dark: #2f4659;
    --text-dark: #1f2933;
    --text-gray: #6b7280;
    --text-light: #94a3b8;
    --border: rgba(31, 41, 51, 0.1);
    --bg-white: #ffffff;
    --bg-gray: #f3f5f7;
    --db-accent: #f5d76e;
    --db-mint: #9fe0d8;
    --db-surface: rgba(255, 255, 255, 0.72);
    --db-radius: 14px;
    --db-shadow: 0 8px 28px rgba(31, 41, 51, 0.08);
    --db-blur: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-base);
    background: var(--bg-white);
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #5a7a94 100%);
    border: none;
    color: #fff;
    padding: 11px 18px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: filter 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 20px rgba(61, 90, 115, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--border);
    color: var(--text-dark);
    padding: 10px 18px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(31, 41, 51, 0.08);
    backdrop-filter: blur(16px);
}

.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-family: var(--font-base);
    transition: border-color 0.2s, box-shadow 0.2s;
    background: rgba(255, 255, 255, 0.82);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.app-layout {
display: flex;
flex-direction: column;
min-height: 100vh;
}

.s1i2d3e4b5 {
    width: 280px;
    background: #fff;
    border-right: 1px solid var(--border);
    position: fixed;
    height: calc(100vh - 64px);
    left: -280px;
    top: 64px;
    z-index: 200;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.s1i2d3e4b5.active {
    left: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 150;
    display: none;
}

.sidebar-overlay.active {
    display: block;
}

.s1i2d3e4b5 .sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.s1i2d3e4b5 .logo,
.s1i2d3e4b5 .db-brand {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    letter-spacing: -0.04em;
}

.s1i2d3e4b5 .db-logo-mark {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: block;
}

.s1i2d3e4b5 .db-brand-text {
    color: #1f2933;
    line-height: 1;
}

.s1i2d3e4b5 .close-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
}

.s1i2d3e4b5 .nav-list {
    list-style: none;
    flex: 1;
    overflow-y: auto;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.sidebar-login,
.sidebar-logout {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 8px;
    color: var(--text-gray);
    font-weight: 500;
    transition: all 0.2s;
    width: 100%;
}

.sidebar-logout {
    color: #e03131;
}

.sidebar-login:hover,
.sidebar-logout:hover {
    background: rgba(61,90,115, 0.1);
    color: var(--primary);
}

.sidebar-logout:hover {
    background: rgba(224, 49, 49, 0.1);
    color: #e03131;
}

.s1i2d3e4b5 .nav-list li {
    margin-bottom: 4px;
}

.s1i2d3e4b5 .nav-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 8px;
    color: var(--text-gray);
    font-weight: 500;
    transition: all 0.2s;
}

.s1i2d3e4b5 .nav-list a:hover,
.s1i2d3e4b5 .nav-list a.active {
    background: rgba(61,90,115, 0.1);
    color: var(--primary);
}

.s1i2d3e4b5 .nav-list i {
    font-size: 20px;
}

.table th.sortable {
    cursor: pointer;
    user-select: none;
    position: relative;
    padding-right: 24px;
}

.table th.sortable:hover {
    background: var(--bg-gray);
}

.table th.sortable::after {
    content: '↕';
    position: absolute;
    right: 8px;
    color: var(--text-light);
    font-size: 12px;
}

.table th.sortable.sort-asc::after {
    content: '↑';
    color: var(--primary);
}

.table th.sortable.sort-desc::after {
    content: '↓';
    color: var(--primary);
}

.rolling-ticker-container {
    height: 20px;
    width: 90px;
    overflow: hidden;
    position: absolute;
    right: 90px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: transparent !important;
    display: flex;
    align-items: center
}

.rolling-ticker-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    transition: transform 0.5s ease
}

.rolling-ticker-item {
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #eee;
    width: 100%
}

.rolling-ticker-rank {
    font-weight: 700;
    color: #3d5a73;
    margin-right: 8px;
    font-style: italic
}

.rolling-ticker-keyword {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
    letter-spacing: -1px;
    max-width: 50px
}

.rolling-ticker-trend {
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 3px;
    margin-left: 8px
}

.trend-up {
    color: #ff6b6b
}

.trend-down {
    color: #4dabf7
}

.trend-new {
    color: #fcc419;
    font-weight: 700;
    font-size: 9px
}

.h1e2a3d4e5 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 24px;
    z-index: 1002;
}

.h1e2a3d4e5 .hamburger {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    margin-right: 16px;
}

.h1e2a3d4e5 .logo,
.h1e2a3d4e5 .db-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin-right: 24px;
    text-decoration: none;
    letter-spacing: -0.04em;
}

.h1e2a3d4e5 .db-logo-mark {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: block;
}

.h1e2a3d4e5 .db-brand-text {
    color: #1f2933;
    line-height: 1;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.header-nav .nav-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 6px;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.header-nav .nav-item:hover,
.header-nav .nav-item.active {
    background: rgba(61,90,115, 0.1);
    color: var(--primary);
}

.header-nav .nav-item i {
    font-size: 16px;
}

.h1e2a3d4e5 .user-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-left: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    padding: 0;
}

.h1e2a3d4e5 .user-dropdown {
    position: relative;
    margin-left: 16px;
}

.h1e2a3d4e5 .user-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    z-index: 1000;
    display: none;
    overflow: hidden;
}

.h1e2a3d4e5 .user-dropdown-menu.show {
    display: block;
}

.user-dropdown-header {
    padding: 16px;
    background: linear-gradient(135deg, #3d5a73 0%, #2f4659 100%);
    color: #ffffff;
    border-radius: 8px 8px 0 0;
}

.user-dropdown-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #ffffff;
}

.user-dropdown-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.h1e2a3d4e5 .user-dropdown-content {
    padding: 12px 16px;
}

.h1e2a3d4e5 .user-dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.h1e2a3d4e5 .user-dropdown-item:last-child {
    border-bottom: none;
}

.h1e2a3d4e5 .user-dropdown-item .label {
    font-size: 13px;
    color: var(--text-gray);
}

.h1e2a3d4e5 .user-dropdown-item .value {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.h1e2a3d4e5 .user-dropdown-footer {
    padding: 8px;
    border-top: 1px solid var(--border);
}

.h1e2a3d4e5 .user-dropdown-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    transition: background 0.2s;
    font-family: inherit;
}

.h1e2a3d4e5 .user-dropdown-link:hover {
    background: var(--bg-gray);
    color: var(--text-primary);
}

.h1e2a3d4e5 .user-dropdown-loading,
.h1e2a3d4e5 .user-dropdown-error {
    padding: 20px;
    text-align: center;
    color: var(--text-gray);
    font-size: 13px;
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .h1e2a3d4e5 {
        justify-content: space-between;
        padding: 0 16px;
    }

    .h1e2a3d4e5 .hamburger {
        margin-right: 0;
        flex-shrink: 0;
    }

    .h1e2a3d4e5 .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin-right: 0;
    }

    .h1e2a3d4e5 .user-btn,
    .h1e2a3d4e5 .user-dropdown {
        margin-left: 0;
        flex-shrink: 0;
    }
}

.main-content {
margin-top: 64px;
padding: 40px 0;
width: 100%;
flex: 1;
display: flex;
flex-direction: column;
background-size: cover;
background-position: center;
background-attachment: fixed;
}

.content-container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast i {
    font-size: 20px;
}

.toast-success i {
    color: #28a745;
}

.toast-error i {
    color: #dc3545;
}

.toast-warning i {
    color: #ffc107;
}

.toast-info i {
    color: #17a2b8;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    visibility: hidden;
}

.modal-overlay.show {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modal-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.modal-box p,
.modal-box .modal-message {
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.modal-actions button {
    min-width: 80px;
}

.password-toggle {
    position: relative;
}

.password-toggle input {
    padding-right: 40px;
}

.password-toggle-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle-btn:hover {
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .content-container {
        padding: 0 20px;
    }

    .toast {
        right: 10px;
        left: 10px;
        min-width: auto;
    }

    .modal-actions {
        display: flex;
        gap: 12px;
        justify-content: space-between;
    }

    .modal-actions .modal-confirm,
    .modal-actions .modal-cancel {
        flex: 1;
        min-width: 0;
    }
}

.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.fab-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #3d5a73;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(61,90,115, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.fab-main:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(61,90,115, 0.5);
}

.fab-main.active {
    transform: rotate(45deg);
}

.fab-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.fab-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.fab-item {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border);
    color: var(--primary);
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.fab-item:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.fab-item:nth-child(1) {
    transition-delay: 0.1s;
}

.fab-item:nth-child(2) {
    transition-delay: 0.2s;
}

.fab-menu.active .fab-item {
    animation: fabSprout 0.3s ease forwards;
}

@keyframes fabSprout {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.8);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.fab-label {
    position: absolute;
    right: 60px;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.fab-item:hover .fab-label {
    opacity: 1;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
}

.modal-overlay.show .modal-box {
    transform: scale(1);
    opacity: 1;
}

.modal-box {
    background: white;
    border-radius: 12px;
    padding: 32px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal-box.payment-modal {
    max-width: 900px;
    width: 95%;
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-gray);
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}

.modal-close-btn:hover {
    color: var(--text-dark);
}

.subscription-plans-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.subscription-plans-table th,
.subscription-plans-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.subscription-plans-table th {
    background: var(--bg-gray);
    font-weight: 600;
    color: var(--text-dark);
}

.subscription-plans-table tr:hover {
    background: var(--bg-gray);
}

.subscription-plans-table .plan-name {
    font-weight: 600;
    color: var(--primary);
}

.subscription-plans-table .plan-price {
    font-weight: 600;
    color: var(--text-dark);
}

.subscription-plans-table .plan-price.free {
    color: var(--text-gray);
}

.direct-chat-special-wrap {
    margin-top: 18px;
}

.direct-chat-special-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(61,90,115, 0.28);
    border-radius: 14px;
    background: linear-gradient(135deg, #f3f5f7 0%, #fff 48%, #fff1e7 100%);
}

.direct-chat-special-box strong {
    color: #3d5a73;
    font-size: 15px;
    font-weight: 800;
}

.direct-chat-special-box span {
    color: #9a3412;
    font-size: 13px;
    font-weight: 700;
}

.direct-chat-special-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
    padding: 16px;
    border: 1px solid rgba(61,90,115, 0.22);
    border-radius: 14px;
    background: #f3f5f7;
}

.direct-chat-special-card h4 {
    margin: 0 0 8px;
    color: #9a3412;
    font-size: 16px;
    font-weight: 800;
}

.direct-chat-special-card p {
    margin: 0;
    color: #7c2d12;
    font-size: 13px;
    font-weight: 700;
}

.direct-chat-special-prices {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
    color: #7c2d12;
}

.direct-chat-special-prices span {
    font-size: 13px;
    font-weight: 700;
}

.direct-chat-special-prices strong {
    font-size: 16px;
    font-weight: 900;
}
.db-footer {
    position: relative;
    margin-top: auto;
    width: 100%;
    flex-shrink: 0;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(244, 246, 248, 0.35) 0%, rgba(31, 41, 51, 0.03) 100%),
        #f0f3f6;
    border-top: 1px solid rgba(61, 90, 115, 0.12);
}

.db-footer-glow {
    position: absolute;
    inset: -40% auto auto 50%;
    width: 520px;
    height: 220px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(159, 224, 216, 0.28) 0%, transparent 70%);
    pointer-events: none;
}

.db-footer-inner {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 24px 28px;
}

.db-footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 36px 48px;
    align-items: start;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(31, 41, 51, 0.08);
}

.db-footer-logo,
.db-footer .db-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1f2933;
    margin-bottom: 10px;
}

.db-footer .db-logo-mark {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: block;
}

.db-footer .db-brand-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #1f2933;
    line-height: 1;
}

.db-footer-tag {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 600;
    color: #3d5a73;
    letter-spacing: -0.02em;
}

.db-footer-notice {
    max-width: 420px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 22px rgba(31, 41, 51, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.db-footer-notice p {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
    color: #5b6470;
}

.db-footer-notice p + p {
    margin-top: 6px;
}

.db-footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.db-footer-col h4 {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #94a3b8;
}

.db-footer-col a {
    display: block;
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.2s ease, transform 0.2s ease;
}

.db-footer-col a:last-child {
    margin-bottom: 0;
}

.db-footer-col a:hover {
    color: #3d5a73;
    transform: translateX(2px);
}

.db-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 24px;
    margin-top: 0;
    padding-top: 18px;
}

.db-footer-copy,
.db-footer-legal {
    margin: 0;
    font-size: 11px;
    line-height: 1.55;
    color: #8b949e;
}

.db-footer-copy {
    max-width: 480px;
}

.db-footer-legal {
    max-width: 520px;
    text-align: right;
}

@media (max-width: 860px) {
    .db-footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .db-footer-notice {
        max-width: none;
    }

    .db-footer-bottom {
        flex-direction: column;
    }

    .db-footer-legal {
        text-align: left;
        max-width: none;
    }
}

@media (max-width: 600px) {
    .db-footer-inner {
        padding: 32px 16px 22px;
    }

    .db-footer-nav {
        gap: 20px;
    }

    .db-footer-col a {
        font-size: 13px;
    }
}
