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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 
                 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    min-height: 100vh;
    color: var(--text-primary);
    padding: 0;
    padding-bottom: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

/* Container - Desktop Only */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
    padding-top: calc(var(--header-height, 120px) + var(--search-bar-height, 200px) + 20px);
    padding-bottom: 0;
    min-height: calc(100vh - var(--header-height, 120px) - var(--search-bar-height, 200px) - 90px);
    box-sizing: border-box;
    overflow-x: hidden;
    transition: padding-top 0.2s ease;
}

/* Large Desktop: 1440px and up */
@media (min-width: 1440px) {
    .container {
        padding: 40px 60px;
        padding-bottom: 0;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}
