
@font-face {
    font-family: 'ekcqw_gbkregular';
    src: url('fzzy_gbk-webfont.woff2') format('woff2'),
         url('fzzy_gbk-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
	font-family: 'ekcqw_gbkregular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	margin: 0;
    overflow: hidden;
    transition: margin-left 0.3s ease;
    color: #fff;
}

header {
	position: relative;
    background: linear-gradient(90deg, #1a1a1a 0%, #252525 100%);
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    color: #fff;
	margin: 0;
    border-bottom: 2px solid #ca3e47;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 10;
}

header nav ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0 20px;
    width: 100%;
    list-style: none;
}

header nav ul li {
    margin: 0 15px 0 0;
    font-size: 16px;
}

header nav ul li:first-child {
    flex: 0;
}

header nav ul li:not(:first-child) {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nolist {
    list-style-type: none;
}

ul.pagenav {
    margin: 0;
    padding: 0;
}

ul.pagenav > li {
    margin: 0;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

ul.pagenav > li:hover {
    background: rgba(202, 62, 71, 0.1);
    border-left-color: #ca3e47;
    padding-left: 23px;
}

ul.pagenav > li > a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

ul.pagenav > li.selected {
    background: rgba(202, 62, 71, 0.2);
    border-left-color: #ca3e47;
}

ul.pagenav > li.selected > a {
    color: #ca3e47;
    font-weight: 600;
}

.nav-group {
    font-weight: 600;
    color: #ca3e47;
    padding: 15px 20px 5px 20px !important;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: default !important;
}

.nav-group ul {
    padding-left: 0 !important;
}

#buttonNav {
    cursor: pointer;
    font-size: 24px;
    transition: transform 0.2s ease;
}

#buttonNav:hover {
    transform: scale(1.1);
}

.sidenav {
    background: linear-gradient(180deg, #1a1a1a 0%, #252525 100%);
    height: 100%;
    width: 250px;
    position: fixed;
    z-index: 11;
    top: 0;
    left: -250px;
    overflow-y: auto;
    overflow-x: hidden;
    transition: left 0.3s ease;
    color: #fff;
    padding-top: 60px;
    padding-left: 0;
    border-right: 1px solid rgba(202, 62, 71, 0.3);
}

.sidenav::-webkit-scrollbar {
    width: 6px;
}

.sidenav::-webkit-scrollbar-track {
    background: transparent;
}

.sidenav::-webkit-scrollbar-thumb {
    background: #ca3e47;
    border-radius: 3px;
}

.main-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
    overflow: auto;
}

.hero-eyebrow {
    font-size: 14px;
    font-weight: 600;
    color: #ca3e47;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 30px 0;
    background: linear-gradient(135deg, #fff 0%, #ca3e47 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.main-subtitle {
    max-width: 600px;
    margin: 0 0 40px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
}

.main-subtitle p {
    margin: 15px 0;
}

.main-subtitle p:first-child {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.main-subtitle p:last-child {
    font-size: 13px;
    color: #999;
    margin-top: 25px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-button {
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-button.primary {
    background: linear-gradient(135deg, #ca3e47 0%, #e84856 100%);
    color: #fff;
}

.hero-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(202, 62, 71, 0.4);
}

.hero-button.primary:active {
    transform: translateY(-1px);
}

.hero-button.secondary {
    background: rgba(202, 62, 71, 0.1);
    color: #ca3e47;
    border: 2px solid #ca3e47;
}

.hero-button.secondary:hover {
    background: rgba(202, 62, 71, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(202, 62, 71, 0.3);
}

.hero-button.secondary:active {
    transform: translateY(-1px);
}

footer {
    position: fixed;
    right: 20px;
    bottom: 20px;
    padding: 12px 20px;
    background: rgba(26, 26, 26, 0.9);
    color: #999;
    border-left: 3px solid #ca3e47;
    border-radius: 4px;
    font-size: 13px;
    backdrop-filter: blur(10px);
}
