/**
 * Casamento Cristão - Styles
 * Desenvolvido por B20 Conteúdo Digital
 * https://www.b20.com.br
 */

/* CSS Variables */
:root {
    /* Paleta de cores - Rose Gold Escuro / Bordô para melhor contraste */
    --primary-color: #B5445F;
    --secondary-color: #D67A8C;
    --accent-color: #F8E6E9;
    --surface-color: #FFF9FA;
    --text-color: #2D2426;

    /* Variações automáticas */
    --primary-hover: color-mix(in srgb, var(--primary-color) 85%, black);
    --primary-light: color-mix(in srgb, var(--primary-color) 15%, white);
    --bg-color: #ffffff;
    --text-muted: #6B5B5E;
    --text-secondary: #8E7D80;
    --border-color: #EADCDD;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.12);

    /* Layout */
    --border-radius: 12px;
    --border-radius-large: 20px;
    --spacing-unit: 8px;
    --transition: all 0.3s ease;
    --header-height: 60px;
    --bottom-nav-height: 65px;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

/* Dark Mode */
body[data-theme="dark"] {
    --bg-color: #121212;
    --surface-color: #1e1e1e;
    --text-color: #FAFAFA;
    --text-muted: #B3B3B3;
    --text-secondary: #999999;
    --border-color: #333333;
    --primary-color: #D67A8C;
    --secondary-color: #B5445F;
    --accent-color: #2D2426;
    --shadow-light: rgba(0, 0, 0, 0.2);
    --shadow-medium: rgba(0, 0, 0, 0.4);
}

@media (prefers-color-scheme: dark) {
    body:not([data-theme="light"]) {
        --bg-color: #121212;
        --surface-color: #1e1e1e;
        --text-color: #FAFAFA;
        --text-muted: #B3B3B3;
        --text-secondary: #999999;
        --border-color: #333333;
        --primary-color: #D67A8C;
        --secondary-color: #B5445F;
        --accent-color: #2D2426;
        --shadow-light: rgba(0, 0, 0, 0.2);
        --shadow-medium: rgba(0, 0, 0, 0.4);
    }
}

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

html {
    font-size: clamp(14px, 2.5vw, 18px);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    padding-top: var(--header-height);
    padding-bottom: var(--bottom-nav-height);
    transition: var(--transition);
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

/* Header */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 calc(var(--spacing-unit) * 2);
    box-shadow: 0 2px 8px var(--shadow-light);
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header-logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.desktop-nav {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
        gap: 0.25rem;
    }

    .desktop-nav .nav-link {
        padding: 0.5rem 0.8rem;
        border-radius: 50px;
        color: var(--text-color);
        text-decoration: none;
        transition: var(--transition);
        font-weight: 500;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .desktop-nav .nav-link:hover {
        background: var(--surface-color);
        color: var(--primary-color);
    }

    .desktop-nav .nav-link.active {
        background: var(--primary-color);
        color: white;
        box-shadow: 0 4px 12px color-mix(in srgb, var(--primary-color) 40%, transparent);
    }
}

.header-actions {
    display: flex;
    gap: calc(var(--spacing-unit));
}

.btn-icon {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--surface-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-color);
}

.btn-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom, 0));
    background: var(--surface-color);
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 24px var(--shadow-light);
    z-index: 1000;
    padding: 0 0.5rem env(safe-area-inset-bottom, 0) 0.5rem;
    border-top: 1px solid var(--border-color);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0.5rem 0.25rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 12px;
    margin: 4px 2px;
    flex: 1;
    min-width: 0;
}

.nav-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.nav-item i {
    font-size: 1.25rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-item:hover {
    color: var(--primary-color);
}

.nav-item.active {
    color: var(--primary-color);
    background: color-mix(in srgb, var(--primary-color) 12%, transparent);
}

.nav-item.active i {
    transform: translateY(-2px) scale(1.15);
}

@media (min-width: 1024px) {
    .bottom-nav {
        display: none !important;
    }
}

/* Main Content */
.main-content {
    min-height: 100vh;
}

.container {
    padding: calc(var(--spacing-unit) * 2);
    max-width: 100%;
}

@media (min-width: 768px) {
    .container {
        padding: calc(var(--spacing-unit) * 3);
        max-width: 720px;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 960px;
    }
}

/* Sections */
.section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit));
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Hero Section Refactored */
.hero-wrapper {
    position: relative;
    background: linear-gradient(135deg, var(--surface-color) 0%, var(--accent-color) 100%);
    padding: calc(var(--spacing-unit) * 8) 0 calc(var(--spacing-unit) * 12) 0;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 150%;
    background: radial-gradient(circle, color-mix(in srgb, var(--primary-color) 15%, transparent) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    animation: slideUp 0.8s ease-out forwards;
}

.hero-badge {
    display: inline-block;
    padding: calc(var(--spacing-unit) * 0.8) calc(var(--spacing-unit) * 2);
    background: var(--bg-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: calc(var(--spacing-unit) * 3);
    box-shadow: 0 4px 10px var(--shadow-light);
}

.hero-content h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--text-color);
    margin-bottom: calc(var(--spacing-unit) * 3);
    line-height: 1.2;
}

.hero-content .hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    margin-bottom: calc(var(--spacing-unit) * 5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    font-size: 1.2rem;
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);
    border-radius: 50px;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--primary-color) 40%, transparent);
    animation: cta-pulse 2s infinite;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px color-mix(in srgb, var(--primary-color) 60%, transparent);
    animation: none;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cta-pulse {
    0% {
        box-shadow: 0 0 0 0 color-mix(in srgb, var(--primary-color) 50%, transparent);
    }

    70% {
        box-shadow: 0 0 0 15px transparent;
    }

    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}

/* Couple Info Card */
.couple-info-card {
    position: relative;
    z-index: 2;
    margin-top: calc(var(--spacing-unit) * -6);
    background: var(--surface-color);
    border-radius: var(--border-radius-large);
    padding: calc(var(--spacing-unit) * 3);
    margin-bottom: calc(var(--spacing-unit) * 4);
    box-shadow: 0 8px 24px var(--shadow-medium);
}

.couple-form {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 2);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit));
}

.form-group label {
    font-weight: 500;
    color: var(--text-color);
}

.form-group input {
    padding: calc(var(--spacing-unit) * 2);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: var(--font-body);
    transition: var(--transition);
    background: var(--bg-color);
    color: var(--text-color);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color) 20%, transparent);
}

.form-group input:invalid {
    border-color: #ff6b6b;
}

/* Couple Dashboard */
.couple-names h3 {
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit));
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
    margin-top: calc(var(--spacing-unit) * 3);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 2);
    padding: calc(var(--spacing-unit) * 2.5);
    background: var(--surface-color);
    border-radius: var(--border-radius-large);
    box-shadow: 0 4px 12px var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow-medium);
    border-color: var(--primary-light);
}

.stat-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
}

.feature-card {
    background: var(--surface-color);
    border-radius: var(--border-radius-large);
    padding: calc(var(--spacing-unit) * 3);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.feature-card * {
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px var(--shadow-medium);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto calc(var(--spacing-unit) * 2);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    color: var(--text-color);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.feature-card p {
    color: var(--text-muted);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: calc(var(--spacing-unit));
    padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    min-height: 48px;
    min-width: 120px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--primary-color) 40%, transparent);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px color-mix(in srgb, var(--primary-color) 60%, transparent);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--surface-color);
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--border-color);
    transform: translateY(-2px);
}

/* Cards */
.card {
    background: var(--surface-color);
    border-radius: var(--border-radius-large);
    padding: calc(var(--spacing-unit) * 3);
    box-shadow: 0 4px 12px var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow-medium);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.card-content {
    color: var(--text-muted);
}

/* Devotional Styles */
.devotional-card {
    background: var(--surface-color);
    color: var(--text-color);
    border-radius: var(--border-radius-large);
    padding: calc(var(--spacing-unit) * 4);
    margin-bottom: calc(var(--spacing-unit) * 3);
    text-align: center;
    box-shadow: 0 4px 16px var(--shadow-light);
    border: 1px solid var(--border-color);
}

.devotional-date {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit));
    text-transform: uppercase;
    letter-spacing: 1px;
}

.devotional-title {
    font-size: 2rem;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--text-color);
}

.devotional-verse {
    background: linear-gradient(135deg, var(--bg-color), color-mix(in srgb, var(--primary-color) 5%, transparent));
    border-radius: var(--border-radius-large);
    padding: calc(var(--spacing-unit) * 3);
    margin: calc(var(--spacing-unit) * 3) 0;
    font-style: italic;
    border-left: 4px solid var(--primary-color);
    color: var(--text-color);
}

.devotional-content {
    text-align: left;
    line-height: 1.8;
    margin: calc(var(--spacing-unit) * 3) 0;
}

.devotional-questions {
    background: color-mix(in srgb, var(--primary-color) 5%, transparent);
    border-radius: var(--border-radius-large);
    padding: calc(var(--spacing-unit) * 3);
    margin-top: calc(var(--spacing-unit) * 3);
    text-align: left;
    border: 1px solid color-mix(in srgb, var(--primary-color) 20%, transparent);
}

.devotional-questions h4 {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.devotional-questions ul {
    list-style: none;
    padding: 0;
}

.devotional-questions li {
    margin-bottom: calc(var(--spacing-unit));
    padding-left: calc(var(--spacing-unit) * 2);
    position: relative;
}

.devotional-questions li::before {
    content: "💭";
    position: absolute;
    left: 0;
}

/* Prayer Cards */
.prayers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 3);
}

.prayer-card {
    background: var(--surface-color);
    border-radius: var(--border-radius-large);
    padding: calc(var(--spacing-unit) * 4);
    box-shadow: 0 4px 12px var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.prayer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px var(--shadow-medium);
    border-color: var(--primary-light);
}

.prayer-card h3 {
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.prayer-text p {
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.prayer-text strong {
    color: var(--text-color);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: calc(var(--bottom-nav-height) + var(--spacing-unit) * 2);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
}

@media (min-width: 768px) {
    .toast-container {
        bottom: calc(var(--spacing-unit) * 2);
    }
}

.toast {
    background: var(--text-color);
    color: var(--bg-color);
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 3);
    border-radius: var(--border-radius);
    margin-bottom: calc(var(--spacing-unit));
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px var(--shadow-medium);
    min-width: 250px;
    text-align: center;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    background: #4CAF50;
}

.toast.error {
    background: #f44336;
}

.toast.warning {
    background: #ff9800;
}

/* Footer */
.app-footer {
    background: var(--surface-color);
    padding: calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 10);
    text-align: center;
    border-top: 1px solid var(--border-color);
    margin-top: calc(var(--spacing-unit) * 6);
}

@media (min-width: 1024px) {
    .app-footer {
        padding-bottom: calc(var(--spacing-unit) * 4);
    }
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-divider {
    color: var(--border-color);
}

.footer-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-credits p {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-credits .footer-copyright {
    font-size: 0.8rem;
    opacity: 0.8;
}

.b20-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.b20-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 480px) {
    .hero-section h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .prayers-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.skeleton {
    background: linear-gradient(90deg, var(--border-color) 25%, var(--surface-color) 50%, var(--border-color) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--border-radius);
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus States */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {

    .app-header,
    .bottom-nav,
    .btn {
        display: none !important;
    }

    body {
        padding: 0;
    }

    .section {
        display: block !important;
        page-break-inside: avoid;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--surface-color);
    width: 90%;
    max-width: 500px;
    border-radius: var(--border-radius);
    padding: calc(var(--spacing-unit) * 3);
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 85vh;
    overflow-y: auto;
}

.modal-overlay.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(var(--spacing-unit) * 2);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: var(--spacing-unit);
}

.modal-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.close-modal-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal-btn:hover {
    color: var(--error-color);
    transform: rotate(90deg);
}

.tips-modal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-modal-list li {
    padding: calc(var(--spacing-unit) * 1.5);
    margin-bottom: var(--spacing-unit);
    background: color-mix(in srgb, var(--primary-color) 5%, transparent);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
}

.tips-modal-list li strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}