:root {
    --bg: #0a0a0a;
    --panel: #121212;
    --panel-soft: #171717;
    --panel-elevated: #1b1b1b;
    --border: #262626;
    --border-strong: #353535;
    --text: #f5f5f5;
    --text-soft: #b0b0b0;
    --text-muted: #7a7a7a;
    --positive: #19fb9b;
    --warning: #ffb84d;
    --danger: #ff6363;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Manrope', sans-serif;
    --transition: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: var(--font-body);
    background: linear-gradient(180deg, #070707 0%, #0d0d0d 100%);
    color: var(--text);
    line-height: 1.5;
    letter-spacing: -0.02em;
    -webkit-font-smoothing: antialiased;
}

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

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 14px 20px 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.96), rgba(10, 10, 10, 0));
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(15, 15, 15, 0.92);
    backdrop-filter: blur(10px);
}

.nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.sync-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--panel-soft);
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
}

.sync-button:hover {
    background: #202020;
    color: var(--text);
}

.sync-button.is-connected {
    border-color: rgba(25, 251, 155, 0.18);
    color: var(--text);
}

.sync-button.is-connecting {
    border-color: rgba(255, 184, 77, 0.24);
}

.sync-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--text-muted);
}

.sync-button.is-connected .sync-dot {
    background: var(--positive);
}

.sync-button.is-connecting .sync-dot {
    background: var(--warning);
}

.lang-switch {
    display: inline-flex;
    gap: 4px;
    padding: 3px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--panel-soft);
}

.lang-btn {
    min-width: 44px;
    padding: 6px 10px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
    background: #ffffff;
    color: #000000;
}

.main {
    padding: 24px 20px 48px;
}

.hero {
    margin-bottom: 24px;
}

.hero-card,
.table-container,
.apple-card,
.strategy-table-container,
.modal-content,
.footer-content {
    border: 1px solid var(--border);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 14px 18px;
    border-radius: 16px;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-align: center;
}

.action-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.section {
    margin-bottom: 36px;
}

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.section-subtitle {
    margin-top: 10px;
    color: var(--text-soft);
    font-size: 14px;
}

.apple-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 12px 16px;
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    background: var(--panel-soft);
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
}

.apple-button:hover {
    background: #1d1d1d;
}

.apple-button-primary {
    background: #ffffff;
    color: #000000;
}

.apple-button-primary:hover {
    background: #ececec;
}

.table-container,
.apple-card,
.strategy-table-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.fixed-income-table,
.strategy-table {
    width: 100%;
    border-collapse: collapse;
}

.fixed-income-table th,
.strategy-table th {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    background: #161616;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fixed-income-table td,
.strategy-table td {
    padding: 18px;
    border-bottom: 1px solid var(--border);
    color: var(--text-soft);
    font-size: 14px;
}

.fixed-income-table tr:last-child td,
.strategy-table tr:last-child td {
    border-bottom: none;
}

.fixed-income-table tr:hover td,
.strategy-table tr:hover td {
    background: #161616;
}

.fixed-income-table th:nth-child(4),
.fixed-income-table th:nth-child(5),
.fixed-income-table td:nth-child(4),
.fixed-income-table td:nth-child(5) {
    min-width: 150px;
}

.fixed-income-table th:last-child,
.fixed-income-table td:last-child {
    width: 180px;
    white-space: nowrap;
}

.table-token {
    font-family: var(--font-display);
    color: var(--text);
    font-size: 18px;
    font-weight: 700;
}

.table-platform {
    color: var(--text-muted);
}

.table-apy,
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

.table-apy {
    border: 1px solid rgba(25, 251, 155, 0.18);
    background: rgba(25, 251, 155, 0.1);
    color: #c6ffe2;
}

.table-days {
    color: var(--text);
    font-weight: 800;
}

.table-days.warning {
    color: var(--warning);
}

.table-days.danger {
    color: var(--danger);
}

.table-detail-btn,
.table-delete-btn {
    padding: 8px 10px;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    background: var(--panel-soft);
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.table-detail-btn {
    margin-right: 8px;
}

.table-detail-btn:hover,
.table-delete-btn:hover {
    background: #202020;
}

.empty-state {
    padding: 56px 20px;
    text-align: center;
}

.empty-state p {
    margin-bottom: 6px;
    color: var(--text-soft);
}

.empty-hint {
    color: var(--text-muted) !important;
    font-size: 13px;
}

.apple-card {
    padding: 22px;
    margin-bottom: 18px;
}

.strategy-section {
    display: grid;
    gap: 16px;
    margin-bottom: 20px;
}

.strategy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    background: #161616;
}

.strategy-title {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: -0.05em;
}

.strategy-subtitle {
    color: var(--text-muted);
    font-size: 13px;
}

.strategy-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: 18px;
    align-items: end;
}

.strategy-add-panel {
    min-width: 0;
}

.strategy-add-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.strategy-add-button {
    min-width: 132px;
}

.strategy-secondary-actions {
    margin-top: 12px;
}

.strategy-inline-button {
    min-height: 40px;
    padding: 10px 14px;
}

.strategy-card-header {
    align-items: flex-start;
}

.strategy-card-heading {
    display: flex;
    flex: 1;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.strategy-card-title {
    min-width: 0;
}

.strategy-ratio-control {
    width: min(180px, 100%);
}

.strategy-ratio-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.strategy-card-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    background: #141414;
}

.strategy-field {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    background: var(--panel-soft);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.strategy-select,
.strategy-field-select {
    appearance: none;
    padding-right: 42px;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--text-muted) 50%),
        linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
    background-position:
        calc(100% - 21px) calc(50% - 3px),
        calc(100% - 15px) calc(50% - 3px);
    background-size: 6px 6px;
    background-repeat: no-repeat;
}

.strategy-quantity {
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.strategy-row-delete,
.strategy-delete-btn {
    min-width: 96px;
}

.strategy-table-empty {
    color: var(--text-muted);
    font-size: 13px;
    text-align: center;
}

.badge-buy {
    border: 1px solid rgba(25, 251, 155, 0.18);
    background: rgba(25, 251, 155, 0.1);
    color: #c6ffe2;
}

.badge-sell {
    border: 1px solid rgba(255, 99, 99, 0.18);
    background: rgba(255, 99, 99, 0.1);
    color: #ffd3d3;
}

.highlight-amount {
    color: var(--text);
    font-weight: 800;
}

.input-group {
    max-width: 440px;
}

.apple-label,
.form-label {
    display: block;
    margin-bottom: 10px;
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
}

.apple-input,
.form-input,
.form-textarea,
.strategy-field {
    width: 100%;
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    background: var(--panel-soft);
    color: var(--text);
    font-family: var(--font-body);
    transition: var(--transition);
}

.apple-input,
.form-input {
    min-height: 48px;
    padding: 12px 14px;
    font-size: 15px;
}

.input-shell {
    position: relative;
}

.input-shell .form-input,
.input-shell .strategy-field {
    padding-right: 42px;
}

.input-suffix {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 800;
    pointer-events: none;
}

.picker-input {
    cursor: pointer;
    padding-right: 42px;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--text-muted) 50%),
        linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
    background-position:
        calc(100% - 21px) calc(50% - 3px),
        calc(100% - 15px) calc(50% - 3px);
    background-size: 6px 6px;
    background-repeat: no-repeat;
}

.time-input {
    margin-top: 12px;
}

.form-textarea {
    min-height: 120px;
    max-height: 320px;
    padding: 14px;
    resize: vertical;
}

.apple-input::placeholder,
.form-input::placeholder,
.form-textarea::placeholder,
.strategy-field::placeholder {
    color: var(--text-muted);
}

.apple-input:focus,
.form-input:focus,
.form-textarea:focus,
.strategy-field:focus {
    outline: none;
    border-color: #4a4a4a;
    background: #1b1b1b;
}

.apple-input:disabled,
.strategy-field:disabled,
.apple-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.apple-input.is-invalid,
.form-input.is-invalid,
.form-textarea.is-invalid {
    border-color: rgba(255, 99, 99, 0.72);
    box-shadow: 0 0 0 3px rgba(255, 99, 99, 0.12);
}

.picker-input.picker-open {
    border-color: #4f4f4f;
    background-color: var(--panel-elevated);
}

.input-hint {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 12px;
}

.token-chips,
.platform-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.token-chip,
.platform-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    background: var(--panel-soft);
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.token-chip:hover,
.platform-chip:hover,
.token-chip.selected,
.platform-chip.selected {
    background: #202020;
    color: var(--text);
}

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
}

.modal-overlay.active {
    display: flex;
}

.picker-popover {
    position: fixed;
    z-index: 320;
    width: min(320px, calc(100vw - 24px));
}

.picker-popover[hidden] {
    display: none !important;
}

.picker-popover-time {
    width: min(360px, calc(100vw - 24px));
}

.picker-surface {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--panel);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.picker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    background: #161616;
}

.picker-header-time {
    justify-content: flex-start;
}

.picker-header-copy {
    min-width: 0;
    flex: 1;
}

.picker-title {
    color: var(--text);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-align: center;
}

.picker-label {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.picker-nav {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    background: var(--panel-soft);
    color: var(--text);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}

.picker-nav:hover,
.picker-action:hover,
.picker-day:hover,
.time-picker-option:hover {
    background: #202020;
}

.picker-weekdays {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
    padding: 14px 16px 8px;
}

.picker-weekdays span {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.05em;
}

.picker-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
    padding: 0 16px 16px;
}

.picker-day {
    min-height: 38px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.picker-day.is-outside {
    color: #666666;
}

.picker-day.is-today {
    border-color: var(--border-strong);
}

.picker-day.is-selected,
.time-picker-option.is-selected,
.picker-action-primary {
    background: #ffffff;
    color: #000000;
}

.picker-action-primary:hover {
    background: #ececec;
}

.picker-footer {
    display: flex;
    gap: 10px;
    padding: 14px 16px 16px;
    border-top: 1px solid var(--border);
    background: #161616;
}

.picker-footer-triple .picker-action {
    min-width: 0;
}

.picker-action {
    flex: 1;
    min-height: 40px;
    padding: 10px 12px;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    background: var(--panel-soft);
    color: var(--text);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
}

.picker-action-secondary {
    background: var(--panel-soft);
    color: var(--text);
}

.time-picker-preview {
    margin-top: 4px;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.time-picker-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 16px;
}

.time-picker-group {
    min-width: 0;
}

.time-picker-options {
    display: grid;
    gap: 6px;
    max-height: 216px;
    overflow-y: auto;
    margin-top: 8px;
    padding: 6px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #111111;
}

.time-picker-option {
    min-height: 36px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.modal-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 660px;
    max-height: 92vh;
    border-radius: 18px;
    overflow: hidden;
}

.modal-compact {
    max-width: 440px;
}

#fixedIncomeModal .modal-content,
#detailModal .modal-content {
    max-width: 780px;
}

.modal-header,
.modal-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    background: #161616;
}

.modal-header {
    border-bottom: 1px solid var(--border);
}

.modal-actions {
    justify-content: flex-end;
    border-top: 1px solid var(--border);
}

.modal-header h3 {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: -0.05em;
}

.modal-close {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    background: var(--panel-soft);
    color: var(--text-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.modal-form,
.modal-body {
    flex: 1;
    min-height: 0;
    padding: 20px;
    overflow-y: auto;
}

#fixedIncomeModal .modal-actions {
    flex-shrink: 0;
    padding-top: 16px;
    padding-bottom: 18px;
    background: linear-gradient(180deg, rgba(22, 22, 22, 0.92), #161616 36%);
}

.form-group {
    margin-bottom: 18px;
}

.time-toggle {
    margin-top: 10px;
}

.toggle-checkbox {
    display: none;
}

.toggle-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #151515;
    cursor: pointer;
}

.toggle-slider {
    position: relative;
    width: 40px;
    height: 22px;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: #1d1d1d;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    transition: var(--transition);
}

.toggle-checkbox:checked + .toggle-label .toggle-slider::before {
    transform: translateX(18px);
}

.toggle-text,
.char-count {
    color: var(--text-muted);
    font-size: 12px;
}

.char-count {
    margin-top: 8px;
    text-align: right;
}

.toast-stack {
    position: fixed;
    top: 84px;
    right: 20px;
    z-index: 380;
    width: min(360px, calc(100vw - 24px));
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(18, 18, 18, 0.94);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
    color: var(--text);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.toast-mark {
    width: 8px;
    min-width: 8px;
    height: 8px;
    margin-top: 6px;
    border-radius: 999px;
    background: var(--text-muted);
}

.toast-message {
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.toast-success .toast-mark {
    background: var(--positive);
}

.toast-error .toast-mark {
    background: var(--danger);
}

.toast-success {
    border-color: rgba(25, 251, 155, 0.18);
}

.toast-error {
    border-color: rgba(255, 99, 99, 0.22);
}

input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type='number'] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.detail-content {
    color: var(--text-soft);
    line-height: 1.7;
    white-space: pre-wrap;
}

.info-block {
    margin-bottom: 22px;
}

.info-block h4 {
    margin-bottom: 12px;
    font-size: 17px;
}

.info-block ul {
    list-style: none;
}

.info-block li,
.info-block p {
    margin-bottom: 10px;
    color: var(--text-soft);
    font-size: 14px;
}

.highlight {
    color: #ffffff;
    font-weight: 700;
}

.footer {
    padding: 0 20px 40px;
}

.footer-content {
    padding: 14px 18px;
    border-radius: 16px;
    text-align: center;
}

.footer-title {
    color: var(--text);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}

.footer-subtitle {
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: -0.01em;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background: #2b2b2b;
    border-radius: 999px;
}

@media (max-width: 768px) {
    .section-header,
    .strategy-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .strategy-toolbar,
    .strategy-card-heading,
    .strategy-add-row {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .strategy-ratio-control {
        width: 100%;
    }

    .apple-button {
        width: 100%;
    }

    .fixed-income-table,
    .strategy-table {
        display: block;
        overflow-x: auto;
    }

    .fixed-income-table th,
    .fixed-income-table td,
    .strategy-table th,
    .strategy-table td {
        min-width: 120px;
        padding: 14px;
    }
}

@media (max-width: 640px) {
    .nav,
    .main,
    .footer {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-card,
    .table-container,
    .apple-card,
    .strategy-table-container,
    .modal-content,
    .footer-content {
        border-radius: 14px;
    }

    .picker-popover,
    .picker-popover-time {
        width: calc(100vw - 24px);
    }

    .toast-stack {
        top: 76px;
        left: 12px;
        right: 12px;
        width: auto;
    }

    .time-picker-columns {
        grid-template-columns: 1fr;
    }

    .hero-card,
    .apple-card,
    .modal-form,
    .modal-body,
    .modal-header,
    .modal-actions {
        padding-left: 16px;
        padding-right: 16px;
    }

    .strategy-card-actions {
        padding-left: 16px;
        padding-right: 16px;
    }
}
