:root {
    /* 默认主题变量 */
    --primary: #00d4ff;
    --primary-dark: #00a8cc;
    --secondary: #e040fb;
    --accent: #7c4dff;
    --bg-dark: #12121e;
    --bg-darker: #0a0a14;
    --bg-card: rgba(30, 30, 50, 0.7);
    --bg-secondary: rgba(255, 255, 255, 0.05);
    --bg-primary: rgba(255, 255, 255, 0.03);
    --input-bg: rgba(255, 255, 255, 0.03);
    --text-primary: #ffffff;
    --text-secondary: #b0b0d0;
    --border-color: rgba(0, 212, 255, 0.25);
    --glow-primary: 0 0 25px rgba(0, 212, 255, 0.4);
    --glow-secondary: 0 0 25px rgba(224, 64, 251, 0.4);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
}

/* 暗色主题 */
[data-theme="dark"] {
    --primary: #00d4ff;
    --primary-dark: #00a8cc;
    --secondary: #e040fb;
    --accent: #7c4dff;
    --bg-dark: #12121e;
    --bg-darker: #0a0a14;
    --bg-card: rgba(30, 30, 50, 0.7);
    --bg-secondary: rgba(255, 255, 255, 0.05);
    --bg-primary: rgba(255, 255, 255, 0.03);
    --input-bg: rgba(255, 255, 255, 0.03);
    --text-primary: #ffffff;
    --text-secondary: #b0b0d0;
    --border-color: rgba(0, 212, 255, 0.25);
    --glow-primary: 0 0 25px rgba(0, 212, 255, 0.4);
    --glow-secondary: 0 0 25px rgba(224, 64, 251, 0.4);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
}

/* 亮色主题 */
[data-theme="light"] {
    --primary: #0088cc;
    --primary-dark: #006699;
    --secondary: #9c27b0;
    --accent: #673ab7;
    --bg-dark: #f5f7fa;
    --bg-darker: #e8ecf1;
    --bg-card: rgba(255, 255, 255, 0.9);
    --bg-secondary: #ffffff;
    --bg-primary: #ffffff;
    --input-bg: #ffffff;
    --text-primary: #1a1a2e;
    --text-secondary: #5a5a7a;
    --border-color: rgba(0, 136, 204, 0.2);
    --glow-primary: 0 0 20px rgba(0, 136, 204, 0.3);
    --glow-secondary: 0 0 20px rgba(156, 39, 176, 0.3);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

[data-theme="light"] .cyber-grid {
    background-image: 
        linear-gradient(rgba(0, 136, 204, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 136, 204, 0.03) 1px, transparent 1px);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.theme-toggle {
    width: 42px;
    height: 42px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--primary);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}

.theme-toggle:hover {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: var(--glow-primary);
    transform: rotate(180deg);
}

[data-theme="light"] .theme-toggle {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border-color: #ffd700;
    color: #fff;
}

[data-theme="light"] .theme-toggle:hover {
    background: linear-gradient(135deg, #ff8c00, #ffd700);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 11px;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(0, 240, 255, 0.1);
    box-shadow: var(--glow-primary);
}

[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-link.active {
    background: rgba(0, 136, 204, 0.1);
}

.mobile-menu-toggle,
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span,
.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 30px 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-size: 12px;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(0, 240, 255, 0); }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.title-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.btn-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(0, 240, 255, 0.3); }
    to { box-shadow: 0 0 30px rgba(0, 240, 255, 0.6), 0 0 40px rgba(255, 0, 255, 0.3); }
}

.features {
    padding: 100px 30px;
    background: linear-gradient(180deg, transparent, rgba(0, 240, 255, 0.02), transparent);
}

[data-theme="light"] .features {
    background: linear-gradient(180deg, transparent, rgba(0, 136, 204, 0.02), transparent);
}

.section-title {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}

.title-decorator {
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--bg-dark);
    box-shadow: var(--glow-primary);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.showcase {
    padding: 100px 30px;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-text h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
}

.showcase-text p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.showcase-image {
    position: relative;
}

.showcase-image img {
    width: 100%;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    box-shadow: var(--glow-primary);
}

.stats {
    padding: 80px 30px;
    background: var(--bg-darker);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.cta {
    padding: 100px 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(255, 0, 255, 0.05));
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 40px;
}

.footer {
    padding: 60px 30px 30px;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 13px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.page-hero {
    padding: 140px 30px 60px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.05), transparent);
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
}

.recruit-section {
    padding: 60px 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.recruit-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 50px;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-secondary);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
}

.form-group label i {
    color: var(--primary);
    margin-right: 8px;
}

.required {
    color: #ff4757;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 15px;
    transition: all 0.3s ease;
}

/* 优化选择框样式 */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%2300f0ff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11l-5-5 1.41-1.41L8 8.17l3.59-3.58L13 6l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 14px;
    cursor: pointer;
    background-color: var(--input-bg, rgba(255, 255, 255, 0.03));
}

/* 优化下拉菜单样式 - 高优先级 */
html body select option,
html body .form-group select option,
html body .rental-filters select option,
html body .filter-bar select option {
    background-color: #ffffff !important;
    color: #1a1a2e !important;
    padding: 8px 12px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

/* 确保下拉菜单在所有主题下都有正确的样式 */
[data-theme="dark"] select option {
    background-color: #ffffff !important;
    color: #1a1a2e !important;
}

[data-theme="light"] select option {
    background-color: #ffffff !important;
    color: #1a1a2e !important;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

/* 确保在所有浏览器中都正确显示 */
.form-group select::-ms-expand {
    display: none;
}

/* 通用选择框样式 */
select {
    background-color: var(--input-bg, rgba(255, 255, 255, 0.03));
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    /* 确保下拉框在所有浏览器中都有正确的行为 */
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%2300f0ff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11l-5-5 1.41-1.41L8 8.17l3.59-3.58L13 6l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
}

select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

/* 高优先级下拉菜单样式 - 确保所有下拉框的待选项目都能清晰显示 */
html body select option,
html body .form-group select option,
html body .rental-filters select option,
html body .filter-bar select option,
html body .filter-form select option,
html body .auth-form select option,
html body .admin-form select option {
    background-color: #f5f5f5 !important;
    color: #333333 !important;
    padding: 10px 15px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    min-height: 36px !important;
    white-space: nowrap !important;
}

/* 确保下拉菜单在所有主题下都有正确的样式 */
[data-theme="dark"] select option {
    background-color: #f5f5f5 !important;
    color: #333333 !important;
}

[data-theme="light"] select option {
    background-color: #f5f5f5 !important;
    color: #333333 !important;
}

/* 确保在所有浏览器中都正确显示 */
select::-ms-expand {
    display: none;
}

/* 针对后台管理页面的下拉框样式 */
.admin-panel select {
    background-color: var(--input-bg, rgba(255, 255, 255, 0.03));
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.admin-panel select option {
    background-color: #ffffff !important;
    color: #1a1a2e !important;
    padding: 8px 12px !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(46, 213, 115, 0.1);
    border: 1px solid rgba(46, 213, 115, 0.3);
    color: #2ed573;
}

.alert-error {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: #ff4757;
}

.costume-section,
.rental-section {
    padding: 60px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-buttons,
.rental-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
}

.costume-grid,
.rental-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.costume-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.costume-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.costume-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.costume-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--primary);
    position: relative;
}

.costume-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(255, 0, 255, 0.1));
    z-index: -1;
}

.costume-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.costume-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}

.costume-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
    pointer-events: none;
}

.costume-card:hover .costume-overlay {
    opacity: 1;
    pointer-events: auto;
}

.view-details {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.costume-info {
    padding: 25px;
    background: var(--bg-card);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.costume-name {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: bold;
}

.costume-character {
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 15px;
}

.costume-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-secondary);
}

.costume-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.costume-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.costume-price {
    display: flex;
    align-items: center;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.price span {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 400;
}



.rental-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.rental-modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-content h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.costume-detail {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.costume-detail h4 {
    margin-bottom: 10px;
}

.costume-detail p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 5px;
}

.custom-section {
    padding: 60px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.custom-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.custom-process {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
}

.process-title {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 3px solid var(--primary);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-dark);
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 13px;
}

.custom-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
}

.price-reference {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.price-reference h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.price-table th {
    color: var(--primary);
    font-weight: 600;
}

.price-table td {
    color: var(--text-secondary);
}

.contact-section {
    padding: 60px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.info-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--bg-dark);
}

.info-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

.contact-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
}

.faq-section {
    padding: 80px 30px;
    background: var(--bg-darker);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 240, 255, 0.05);
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 500;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .showcase-content,
    .custom-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        gap: 40px;
    }
}

.announcement-section {
    padding: 60px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.announcement-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.announcement-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
}

.announcement-list {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
}

.list-header {
    margin-bottom: 30px;
    text-align: center;
}

.announcement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.announcement-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.announcement-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--glow-primary);
}

.announcement-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.announcement-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    flex: 1;
}

.announcement-date {
    padding: 5px 12px;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.announcement-info {
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 8px;
}

.info-item i {
    color: var(--primary);
    font-size: 14px;
}

.announcement-desc {
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.announcement-footer {
    text-align: right;
}

/* 商演须知 - 优化后的样式 */
.announcement-tips {
    padding: 80px 30px;
    background: var(--bg-darker);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tip-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tip-card:hover::before {
    transform: scaleX(1);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-primary);
    border-color: var(--primary);
}

.tip-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--bg-dark);
    box-shadow: var(--glow-primary);
}

.tip-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.tip-card ul {
    list-style: none;
    text-align: left;
    padding: 0;
}

.tip-card li {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.tip-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 12px;
}

/* 亮色主题适配 */
[data-theme="light"] .announcement-tips {
    background: #e8ecf1;
}

[data-theme="light"] .tip-card {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .tip-card:hover {
    box-shadow: 0 8px 30px rgba(0, 136, 204, 0.2);
}

[data-theme="light"] .tip-icon {
    color: #fff;
}

.announcement-detail {
    padding: 60px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.detail-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.detail-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
}

.detail-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.meta-item i {
    color: var(--primary);
}

.detail-section {
    margin-bottom: 30px;
}

.detail-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-section h3 i {
    color: var(--primary);
}

.detail-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

.contact-info {
    background: rgba(0, 240, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.application-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    position: sticky;
    top: 100px;
}

.related-announcements {
    padding: 60px 30px;
    background: linear-gradient(180deg, transparent, rgba(0, 240, 255, 0.02), transparent);
}

@media (max-width: 1024px) {
    .announcement-content,
    .detail-container {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .tip-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .announcement-section,
    .announcement-detail {
        padding: 40px 15px;
    }
    
    .announcement-form-container,
    .announcement-list,
    .detail-content {
        padding: 25px;
    }
    
    .application-form {
        position: static;
    }
    
    .announcement-tips {
        padding: 60px 20px;
    }
    
    .tip-card {
        padding: 25px 20px;
    }
    
    .tip-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .tip-card h3 {
        font-size: 18px;
    }
}

/* 服装详情页面 */
.costume-detail-section {
    padding: 60px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.costume-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    padding: 40px;
}

.costume-gallery {
    position: relative;
}

.main-image {
    height: 500px;
    position: relative;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
    padding: 6px 16px;
}

.costume-info-detail {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.costume-title {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: bold;
}

.costume-character-detail {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.costume-meta-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.costume-price-detail {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.price-value {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary);
}

.price-unit {
    font-size: 16px;
    color: var(--text-secondary);
}

.costume-deposit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.costume-description {
    margin-bottom: 40px;
}

.costume-description h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.costume-description p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.rental-form-container {
    background: rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 12px;
    margin-top: auto;
}

.rental-form-container h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .rental-grid {
        grid-template-columns: 1fr;
    }
    
    .costume-card {
        margin-bottom: 20px;
    }
    
    .costume-detail {
        grid-template-columns: 1fr;
    }
    
    .main-image {
        height: 300px;
    }
    
    .costume-info-detail {
        padding: 30px;
    }
}

/* 认证按钮 */
.auth-buttons {
    display: flex;
    gap: 8px;
    margin-left: auto;
    margin-right: 10px;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}

/* 确保主题切换按钮在所有设备上都能正确显示 */
.auth-buttons .theme-toggle {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 按钮样式 */
.btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 14px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-primary);
    color: var(--primary);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .auth-buttons {
        margin: 20px 0;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .auth-buttons .theme-toggle {
        position: static;
        margin: 5px;
    }
}

/* 圈友页面样式 */
.circle-section {
    padding: 60px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.circle-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
}

.filter-container {
    margin-bottom: 40px;
}

.filter-form {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.filter-form .form-group {
    flex: 1;
    min-width: 200px;
}

.user-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.user-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.user-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    font-size: 40px;
    font-weight: bold;
}

.user-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.user-meta {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
}

.user-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.role-badge {
    padding: 4px 12px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    font-size: 12px;
    color: var(--primary);
}

.user-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

@media (max-width: 768px) {
    .circle-section {
        padding: 40px 15px;
    }
    
    .circle-content {
        padding: 25px;
    }
    
    .filter-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-form .form-group {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 15px;
    }
    
    .features,
    .showcase,
    .cta {
        padding: 60px 15px;
    }
    
    .recruit-form-container,
    .custom-form-container,
    .contact-form-container,
    .announcement-form-container {
        padding: 25px;
    }
    
    .costume-detail-section {
        padding: 40px 15px;
    }
    
    .costume-info-detail {
        padding: 25px;
    }
    
    .costume-title {
        font-size: 24px;
    }
    
    .rental-form-container {
        padding: 25px;
    }
}

/* 定制服务页面样式 */
.custom-section {
    padding: 80px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.custom-process {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 50px;
    margin-bottom: 60px;
}

.process-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.process-title i {
    color: var(--primary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-dark);
    margin: 0 auto 20px;
    font-size: 18px;
}

.step-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.custom-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.custom-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--bg-dark);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.feature-text p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* 价格参考部分样式 */
.price-guide {
    padding: 80px 30px;
    background: linear-gradient(180deg, transparent, rgba(0, 240, 255, 0.02), transparent);
    text-align: center;
    position: relative;
    z-index: 2;
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
    position: relative;
    z-index: 2;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
    min-height: 350px;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.price-card:hover::before {
    transform: scaleX(1);
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
}

.price-card.featured {
    border-color: var(--primary);
    box-shadow: 0 5px 25px rgba(0, 240, 255, 0.2);
    transform: scale(1.05);
}

.price-card.featured::before {
    transform: scaleX(1);
}

.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.price-header {
    margin-bottom: 30px;
    text-align: center;
}

.price-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.price-amount {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 25px;
    font-family: 'Orbitron', sans-serif;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li i {
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.price-card .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
}

.price-card.featured .btn {
    background: var(--gradient-primary);
    color: var(--bg-dark);
}

.price-card.featured .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

@media (max-width: 1024px) {
    .custom-content {
        grid-template-columns: 1fr;
    }
    
    .custom-features {
        order: 2;
    }
    
    .custom-form-container {
        order: 1;
    }
    
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .custom-section {
        padding: 60px 20px;
    }
    
    .custom-process {
        padding: 30px;
        margin-bottom: 40px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .price-guide {
        padding: 60px 20px;
    }
    
    .price-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .price-card {
        padding: 30px 20px;
    }
}
