:root {
    --main-color: #ff79c6;
    --secondary-color: #bd93f9;
    --background: #f8f8f2;
    --success-color: #50fa7b;
    --warning-color: #ffb86c;
    --error-color: #ff5555;
    --info-color: #8be9fd;
    --card-bg-light: rgba(255, 255, 255, 0.9);
    --card-bg-dark: rgba(40, 42, 54, 0.9);
    --text-light: #282a36;
    --text-dark: #f8f8f2;
    --border-radius: 20px;
    --transition-speed: 0.3s;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    background: linear-gradient(135deg, #fff5f5 0%, #f0f9ff 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    transition: background var(--transition-speed) ease;
    color: var(--text-light);
}

body.dark-mode {
    background: linear-gradient(135deg, #282a36 0%, #44475a 100%);
    color: var(--text-dark);
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

.header {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.dark-mode .header {
    background: rgba(40, 42, 54, 0.8);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--main-color);
}

.logo img {
    height: 40px;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    /*width: 100%;*/
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-light);
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.dark-mode .nav-link {
    color: var(--text-dark);
}

.nav-link:hover {
    background: rgba(189, 147, 249, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all var(--transition-speed) ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    z-index: 201;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    flex: 1;
    width: 100%;
}

.grid-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    margin-top: 2rem;
}

.main-content {
    position: relative;
}

.sidebar {
    position: relative;
    width: 100%;
}

.api-card {
    background: var(--card-bg-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    height: 100%;
}

.dark-mode .api-card {
    background: var(--card-bg-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.api-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mascot {
    position: absolute;
    right: -5px;
    top: 40px;
    width: 150px;
    opacity: 0.8;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    z-index: 1;
}

.mascot:hover {
    transform: scale(1.05) rotate(-10deg) !important;
    filter: drop-shadow(0 0 10px rgba(189, 147, 249, 0.5));
}

.mascot-speech {
    position: absolute;
    right: 150px;
    top: 50px;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    max-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-20px);
    transition: all var(--transition-speed) ease;
    z-index: 2;
    pointer-events: none;
}

.dark-mode .mascot-speech {
    background: var(--card-bg-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mascot-speech::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 20px;
    border-left: 10px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.dark-mode .mascot-speech::after {
    border-left-color: var(--card-bg-dark);
}

h1 {
    color: var(--main-color);
    font-size: 2.5rem;
    text-shadow: 2px 2px 0px white;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.dark-mode h1 {
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

.endpoint {
    background: linear-gradient(45deg, var(--main-color), var(--secondary-color));
    -webkit-background-clip: text;
    color: transparent;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.button-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.animate-btn {
    background: linear-gradient(45deg, #ff79c6, #bd93f9);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: all var(--transition-speed);
    font-family: inherit;
    box-shadow: 0 5px 15px rgba(189, 147, 249, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.animate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s;
}

.animate-btn:hover::before {
    left: 100%;
}

.animate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(189, 147, 249, 0.4);
}

.animate-btn:active {
    transform: translateY(1px);
}

.animate-btn.secondary {
    background: linear-gradient(45deg, #8be9fd, #50fa7b);
}

.animate-btn.tertiary {
    background: linear-gradient(45deg, #ffb86c, #ff5555);
}

.parameter-list {
    list-style: none;
    padding: 0;
    width: 100%;
}

.parameter-list li {
    background: rgba(189, 147, 249, 0.1);
    margin: 0.5rem 0;
    padding: 1rem;
    border-radius: 10px;
    position: relative;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.dark-mode .parameter-list li {
    background: rgba(189, 147, 249, 0.2);
}

.parameter-list li:hover {
    transform: translateX(5px);
    background: rgba(189, 147, 249, 0.2);
}

.dark-mode .parameter-list li:hover {
    background: rgba(189, 147, 249, 0.3);
}

.parameter-list li i {
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-right: 10px;
}

.api-url {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    margin-right: 10px;
}

.api-actions {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
    flex-shrink: 0;
}

.action-btn {
    background: transparent;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
    opacity: 0.7;
    transition: all var(--transition-speed);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.action-btn:hover {
    opacity: 1;
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.dark-mode .action-btn:hover {
    background: rgba(0, 0, 0, 0.2);
}

.stars {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    top: 0;
    left: 0;
}

.star {
    position: absolute;
    background: white;
    width: 3px;
    height: 3px;
    border-radius: 50%;
}

.dark-mode .star {
    background: #bd93f9;
}

.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transition: all var(--transition-speed);
    font-size: 1.2rem;
}

.dark-mode .theme-toggle {
    background: rgba(40, 42, 54, 0.8);
    color: #f8f8f2;
}

.theme-toggle:hover {
    transform: rotate(45deg);
}

.notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 1rem 2rem;
    border-radius: 10px;
    background: var(--success-color);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all var(--transition-speed);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 300px;
}

.notification i {
    font-size: 1.5rem;
}

.preview-container {
    margin-top: 2rem;
    display: none;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: all var(--transition-speed);
    position: relative;
    width: 100%;
}

.dark-mode .preview-container {
    background: rgba(40, 42, 54, 0.5);
}

.preview-image {
    max-width: 100%;
    max-height: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed);
}

.preview-image:hover {
    transform: scale(1.02);
}

.preview-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: all var(--transition-speed);
}

.preview-container:hover .preview-actions {
    opacity: 1;
}

.preview-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-speed);
    color: var(--secondary-color);
    border: none;
}

.dark-mode .preview-action {
    background: rgba(40, 42, 54, 0.8);
}

.preview-action:hover {
    transform: scale(1.1);
    background: white;
}

.dark-mode .preview-action:hover {
    background: #282a36;
}

.loading {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(189, 147, 249, 0.3);
    border-radius: 50%;
    border-top-color: var(--secondary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes twinkle {
    0% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

@keyframes sway {
    0% { transform: rotate(-5deg); }
    100% { transform: rotate(5deg); }
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

@keyframes jump {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
    100% { transform: translateY(0) scale(1); }
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    width: 100%;
}

.category-tab {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    cursor: pointer;
    transition: all var(--transition-speed);
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.dark-mode .category-tab {
    background: rgba(40, 42, 54, 0.7);
}

.category-tab.active {
    border-color: var(--secondary-color);
    background: rgba(189, 147, 249, 0.2);
}

.category-tab:hover {
    transform: translateY(-2px);
}

.search-container {
    margin-bottom: 1rem;
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border-radius: 20px;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-speed);
    font-family: inherit;
}

.dark-mode .search-input {
    background: rgba(40, 42, 54, 0.7);
    color: #f8f8f2;
}

.search-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(189, 147, 249, 0.3);
}

.search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
}

.sidebar-card {
    background: var(--card-bg-light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    transition: all var(--transition-speed) ease;
    width: 100%;
}

.dark-mode .sidebar-card {
    background: var(--card-bg-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sidebar-title {
    font-size: 1.2rem;
    color: var(--main-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.5);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    transition: all var(--transition-speed);
}

.dark-mode .stat-card {
    background: rgba(40, 42, 54, 0.5);
}

.stat-card:hover {
    transform: translateY(-3px);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.recent-list {
    list-style: none;
    padding: 0;
}

.recent-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(189, 147, 249, 0.2);
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recent-list li:last-child {
    border-bottom: none;
}

.recent-list li:hover {
    transform: translateX(5px);
}

.recent-list li i {
    color: var(--secondary-color);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.3rem 0.8rem;
    background: rgba(189, 147, 249, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    transition: all var(--transition-speed);
    cursor: pointer;
}

.tag:hover {
    background: rgba(189, 147, 249, 0.3);
    transform: translateY(-2px);
}

.footer {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
    transition: all var(--transition-speed);
    width: 100%;
}

.dark-mode .footer {
    background: rgba(40, 42, 54, 0.8);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-link {
    color: var(--secondary-color);
    transition: all var(--transition-speed);
    font-size: 1.5rem;
}

.footer-link:hover {
    transform: scale(1.2);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-speed);
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--card-bg-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    transform: translateY(-50px);
    transition: all var(--transition-speed);
    position: relative;
}

.dark-mode .modal-content {
    background: var(--card-bg-dark);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

.modal-title {
    margin-bottom: 1rem;
    color: var(--main-color);
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.8rem;
    border-radius: 10px;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-speed);
    font-family: inherit;
}

.dark-mode .form-input {
    background: rgba(40, 42, 54, 0.7);
    color: #f8f8f2;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.api-details {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    transition: all var(--transition-speed);
    width: 100%;
    overflow-x: auto;
}

.dark-mode .api-details {
    background: rgba(40, 42, 54, 0.5);
}

.api-detail-item {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.api-detail-label {
    font-weight: 700;
    min-width: 100px;
    color: var(--secondary-color);
    margin-right: 10px;
}

.api-detail-value {
    flex: 1;
    min-width: 0;
    word-break: break-word;
}

.code-block {
    background: rgba(40, 42, 54, 0.9);
    color: #f8f8f2;
    padding: 1rem;
    border-radius: 10px;
    font-family: monospace;
    overflow-x: auto;
    margin: 1rem 0;
    width: 100%;
    font-size: 0.9rem;
}

.dark-mode .code-block {
    background: rgba(20, 22, 34, 0.9);
}

.code-comment {
    color: #6272a4;
}

.code-string {
    color: #f1fa8c;
}

.code-keyword {
    color: #ff79c6;
}

.floating-menu {
    position: fixed;
    bottom: 80px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 90;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all var(--transition-speed);
    border: none;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-menu-items {
    position: absolute;
    bottom: 60px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-speed);
}

.floating-menu.active .floating-menu-items {
    opacity: 1;
    pointer-events: all;
    bottom: 70px;
}

.floating-menu-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all var(--transition-speed);
    transform: translateY(20px);
    opacity: 0;
}

.floating-menu.active .floating-menu-item {
    transform: translateY(0);
    opacity: 1;
}

.floating-menu.active .floating-menu-item:nth-child(1) {
    transition-delay: 0.1s;
}

.floating-menu.active .floating-menu-item:nth-child(2) {
    transition-delay: 0.2s;
}

.floating-menu.active .floating-menu-item:nth-child(3) {
    transition-delay: 0.3s;
}

.tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: all var(--transition-speed);
    z-index: 1000;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
}

.has-tooltip:hover .tooltip {
    opacity: 1;
}

.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: #f0f;
    pointer-events: none;
    z-index: 1000;
}

@media (max-width: 1024px) {
    .grid-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: 2;
    }
    
    .main-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
        margin-bottom: 3.5rem;
    }

    .mascot {
        width: 120px;
        right: 0;
        top: 0;
    }

    .mascot-speech {
        right: 100px;
        top: 30px;
        max-width: 150px;
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .button-container {
        flex-direction: column;
    }

    .animate-btn {
        width: 100%;
        justify-content: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--card-bg-light);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        z-index: 200;
        transform: translateX(100%);
        transition: all var(--transition-speed) ease;
        overflow-y: auto; /* 允许在内容过多时滚动 */
        padding: 50px 20px; /* 增加内边距 */
    }

    .dark-mode .nav-links {
        background: var(--card-bg-dark);
    }

    .nav-links.active {
        transform: translateX(0);
        position: fixed; /* 确保固定定位 */
        overflow: hidden; /* 防止背景滚动 */
    }

    /* 当导航菜单激活时，禁止body滚动 */
    body.menu-active {
        overflow: hidden;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        font-size: 1.2rem;
        padding: 1rem;
    }

    .category-tab {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .api-card {
        padding: 1.5rem 1rem;
    }
    
    .endpoint {
        font-size: 1.3rem;
    }
    
    .code-block {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .mascot {
        width: 100px;
    }

    .parameter-list li {
        padding: 0.8rem;
    }
    
    .parameter-list li i {
        margin-right: 8px;
    }

    .api-url {
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .api-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    .api-detail-label {
        width: 100%;
        margin-bottom: 0.3rem;
    }
    
    .api-detail-value {
        width: 100%;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .sidebar-title {
        font-size: 1.1rem;
    }
    
    .footer {
        padding: 1.5rem 1rem;
    }
}