/* ZIRO H1 官方网站样式 */

/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* 容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 按钮样式 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000000;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #00ff88;
    border: 2px solid #00ff88;
}

.btn-secondary:hover {
    background: #00ff88;
    color: #000000;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* 头部样式 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.logo a:hover {
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #00ff88;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    color: #000000;
    position: relative;
}


.logo-text {
    display: none;
}

/* 桌面端导航样式 */
.nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

/* 强制桌面端导航显示 */
@media screen and (min-width: 769px) {
    .nav {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: static !important;
        background: transparent !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: auto !important;
        height: auto !important;
    }
    
    .nav-list {
        display: flex !important;
        flex-direction: row !important;
        list-style: none !important;
        gap: 20px !important;
        margin: 0 !important;
        padding: 0 !important;
        align-items: center !important;
        background: transparent !important;
        position: static !important;
        transform: none !important;
    }
    
    .nav-link {
        display: inline-block !important;
        color: #ffffff !important;
        text-decoration: none !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        padding: 8px 16px !important;
        background: transparent !important;
        position: relative !important;
        transition: color 0.3s ease !important;
    }
    
    .mobile-nav {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        position: fixed !important;
        top: -100% !important;
        left: -100% !important;
        right: -100% !important;
        width: 0 !important;
        height: 0 !important;
        transform: none !important;
        background: transparent !important;
        z-index: -1 !important;
    }
    
    .mobile-menu-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

/* 导航链接悬停效果 */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff88;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #00ff88;
}

.nav-link.active::after {
    width: 100%;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: #00ff88;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff88;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #00ff88;
}

.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* 移动端菜单 */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}


.mobile-nav.active {
    transform: translateY(0);
}

/* 移动端导航基础样式 */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    display: none;
}

.mobile-nav-content {
    padding: 32px 20px;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 12px 0;
}

.mobile-nav-link:hover {
    color: #00ff88;
}

.mobile-nav-link.active {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
}


/* 主要内容 */
.main-content {
    margin-top: 80px;
}

/* 英雄区域 */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: 24px;
    text-align: center;
}

.hero-title-image {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.6));
    transition: all 0.3s ease;
}

.hero-title-image:hover {
    filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.8));
    transform: scale(1.02);
}

/* 响应式设计 - Hero标题图片 */
@media (max-width: 768px) {
    .hero-title-image {
        max-height: 80px;
    }
}

@media (max-width: 480px) {
    .hero-title-image {
        max-height: 60px;
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #00ff88;
    margin-bottom: 16px;
    font-weight: 600;
}

.hero-tagline {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    color: #00ff88;
    margin-bottom: 48px;
    font-family: 'Poppins', sans-serif;
}

/* 产品展示 */
.hero-product {
    position: relative;
    margin: 48px auto;
    max-width: 400px;
}

.product-mockup {
    background: transparent;
    border-radius: 24px;
    padding: 0;
    box-shadow: none;
    position: relative;
    width: 300px;
    height: 380px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-body {
    background: #000000;
    border-radius: 16px;
    padding: 24px;
    position: relative;
}

.device-container {
    position: relative;
    width: 300px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-image {
    width: 200px;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    transform: rotate(-5deg);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.4));
}

.device-image:hover {
    transform: rotate(-3deg) scale(1.05);
    border-color: rgba(0, 255, 136, 0.6);
    filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.6));
}

.green-splash {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, 
        rgba(0, 255, 136, 0.9) 0%,
        rgba(0, 255, 136, 0.7) 15%,
        rgba(0, 255, 136, 0.5) 30%,
        rgba(0, 255, 136, 0.3) 50%,
        rgba(0, 255, 136, 0.1) 70%,
        transparent 90%);
    border-radius: 50%;
    z-index: 1;
    animation: splashPulse 2s ease-in-out infinite;
    filter: blur(1px);
}

.green-splash::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: radial-gradient(circle, 
        rgba(0, 255, 136, 0.4) 0%,
        rgba(0, 255, 136, 0.2) 25%,
        rgba(0, 255, 136, 0.1) 50%,
        transparent 70%);
    border-radius: 50%;
    animation: splashWave 1.5s ease-in-out infinite;
    filter: blur(2px);
}

.green-splash::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: radial-gradient(circle, 
        rgba(0, 255, 136, 1) 0%,
        rgba(0, 255, 136, 0.8) 20%,
        rgba(0, 255, 136, 0.5) 40%,
        transparent 60%);
    border-radius: 50%;
    animation: splashCore 1s ease-in-out infinite;
    filter: blur(0.5px);
}

@keyframes splashPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1) rotate(0deg); 
        opacity: 0.8;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2) rotate(180deg); 
        opacity: 1;
    }
}

@keyframes splashWave {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.6; 
    }
    50% { 
        transform: scale(1.4) rotate(90deg); 
        opacity: 0.8; 
    }
}

@keyframes splashCore {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.9; 
    }
    50% { 
        transform: scale(0.6) rotate(360deg); 
        opacity: 1; 
    }
}

/* 科技粒子效果 */
.tech-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: particleFloat 3s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 2s;
}

.particle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 0.5s;
    animation-duration: 2.5s;
}

.particle-3 {
    top: 40%;
    left: 5%;
    animation-delay: 1s;
    animation-duration: 3s;
}

.particle-4 {
    top: 80%;
    right: 20%;
    animation-delay: 1.5s;
    animation-duration: 2.2s;
}

.particle-5 {
    top: 30%;
    right: 5%;
    animation-delay: 2s;
    animation-duration: 2.8s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

/* 响应式设计 - Banner图片 */
@media (max-width: 768px) {
    .device-container {
        width: 250px;
        height: 320px;
    }
    
    .device-image {
        width: 160px;
        height: 220px;
    }
    
    .green-splash {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .device-container {
        width: 200px;
        height: 280px;
    }
    
    .device-image {
        width: 140px;
        height: 200px;
    }
    
    .green-splash {
        width: 200px;
        height: 200px;
    }
}

.led-display {
    background: rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 16px;
}

.display-text {
    background: #00ff88;
    color: #000000;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    display: block;
    text-align: center;
}

.device-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.button {
    width: 32px;
    height: 32px;
    background: #333333;
    border-radius: 50%;
}

/* 浮动特性标签 */
.floating-feature {
    position: absolute;
    background: #00ff88;
    color: #000000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.feature-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.feature-2 {
    bottom: -20px;
    left: -20px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* 英雄区域按钮 */
.hero-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
}

/* 章节标题 */
.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #cccccc;
    text-align: center;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 产品展示区域 */
.product-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
    border-color: #00ff88;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* 功能区域 */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

.feature-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: stretch;
    margin-top: 48px;
}

.feature-content,
.feature-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
}

.feature-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.feature-content p {
    font-size: 1.125rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 24px;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-icon-large {
    font-size: 48px;
}

.feature-benefits {
    background: rgba(0, 255, 136, 0.1);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.feature-benefits h4 {
    color: #00ff88;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-visual {
    align-items: center;
}

.device-mockup {
    background: transparent;
    border-radius: 20px;
    padding: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-mockup-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.4));
    transition: all 0.3s ease;
}

.device-mockup-image:hover {
    filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.6));
    transform: scale(1.05);
}

/* 响应式设计 - Device Mockup图片 */

.device-display {
    background: #00ff88;
    color: #000000;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
}

/* 成本节约区域 */
.cost-savings-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

.savings-highlight {
    text-align: center;
    margin-bottom: 48px;
}

.savings-icon {
    width: 80px;
    height: 80px;
    background: #00ff88;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 24px;
}

.savings-highlight h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.savings-highlight p {
    font-size: 1.125rem;
    color: #cccccc;
}

.savings-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-card {
    border-radius: 20px;
    padding: 32px;
    text-align: center;
}

.without-ziro {
    background: linear-gradient(135deg, #2d1b1b, #1a0f0f);
    border: 2px solid #ff4444;
}

.with-ziro {
    background: linear-gradient(135deg, #1b2d1b, #0f1a0f);
    border: 2px solid #00ff88;
}

.comparison-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.without-ziro h4 {
    color: #ff6666;
}

.with-ziro h4 {
    color: #00ff88;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-item:last-child {
    border-bottom: none;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
}

.without-ziro .price {
    color: #ff6666;
}

.with-ziro .price {
    color: #00ff88;
}

.savings-badge {
    background: #00ff88;
    color: #000000;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 16px;
    display: inline-block;
}

/* 发售区域 */
.purchase-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

.release-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

.purchase-banner {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    color: #000000;
    max-width: 800px;
    margin: 0 auto;
}

.release-banner {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    color: #000000;
    max-width: 800px;
    margin: 0 auto;
}

.purchase-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.release-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.price-icon {
    font-size: 2rem;
}

.calendar-icon {
    font-size: 2rem;
}

.price-info {
    font-size: 1.5rem;
    font-weight: 700;
}

.release-date {
    font-size: 1.5rem;
    font-weight: 700;
}

.purchase-info {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}

.release-info {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}

.purchase-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000000;
}

.release-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000000;
}

.purchase-info p {
    font-size: 1.125rem;
    opacity: 0.8;
    color: #000000;
    margin-bottom: 16px;
}

.release-info p {
    font-size: 1.125rem;
    opacity: 0.8;
    color: #000000;
    margin-bottom: 16px;
}

.purchase-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-timer {
    font-size: 1.25rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 24px;
    border-radius: 20px;
    display: inline-block;
    color: #000000;
}

.purchase-status {
    text-align: center;
}

.release-status {
    text-align: center;
}

.status-badge {
    background: rgba(0, 0, 0, 0.2);
    color: #000000;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.125rem;
}

/* 页脚样式 */
.footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 48px;
    margin-bottom: 48px;
    align-items: start;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: start;
    width: 100%;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 200px;
    flex: 1;
    max-width: 100%;
    justify-content: flex-start;
}

/* 法律・会社ページ用スタイル */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: #00ff88;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem 0;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.info-table {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #333;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #00ff88;
    min-width: 200px;
}

.info-value {
    color: #ffffff;
    flex: 1;
    text-align: right;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #00ff88;
    text-align: center;
}

.legal-footer p {
    margin: 0.5rem 0;
    color: #cccccc;
}

/* 会社ページ用スタイル */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.content-main {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
}

.content-sidebar {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    height: fit-content;
}

.company-info {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #333;
}

.info-item:last-child {
    border-bottom: none;
}

.timeline {
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    background: #00ff88;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    min-width: 120px;
    text-align: center;
    margin-right: 2rem;
    height: fit-content;
}

.timeline-content h3 {
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.leader-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.leader-avatar {
    width: 80px;
    height: 80px;
    background: #00ff88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #000000;
    font-weight: 600;
}

.leader-title {
    color: #00ff88;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.leader-bio {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* 採用ページ用スタイル */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.jobs-list {
    margin: 2rem 0;
}

.job-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.job-type {
    background: #00ff88;
    color: #000000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.job-requirements,
.job-benefits {
    margin: 1.5rem 0;
}

.job-requirements h4,
.job-benefits h4 {
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.culture-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
}

.culture-item h3 {
    color: #00ff88;
    margin-bottom: 1rem;
}

.application-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.process-step {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #00ff88;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.application-contact {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

/* プレスページ用スタイル */
.news-list {
    margin: 2rem 0;
}

.news-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.news-date {
    color: #00ff88;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-title {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.news-summary {
    color: #cccccc;
    margin-bottom: 1rem;
}

.news-link {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
}

.press-list {
    margin: 2rem 0;
}

.press-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.press-date {
    color: #00ff88;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.press-actions {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.media-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.media-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.media-date {
    color: #00ff88;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.media-kit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.kit-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

/* 投資家ページ用スタイル */
.financial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.financial-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.financial-value {
    font-size: 2rem;
    font-weight: 600;
    color: #00ff88;
    margin: 1rem 0;
}

.financial-period {
    color: #cccccc;
    font-size: 0.9rem;
}

.business-content {
    margin: 2rem 0;
}

.business-section {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.reports-list {
    margin: 2rem 0;
}

.report-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.report-date {
    color: #00ff88;
    font-size: 0.9rem;
}

.report-actions {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.governance-content {
    margin: 2rem 0;
}

.governance-section {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.board-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.board-member {
    background: #0a0a0a;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.calendar-list {
    margin: 2rem 0;
}

.calendar-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.calendar-date {
    background: #00ff88;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-right: 2rem;
    min-width: 120px;
    text-align: center;
}

.ir-contact {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

/* 未成年者注意ページ用スタイル */
.warning-content {
    max-width: 900px;
    margin: 0 auto;
}

.warning-section {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.warning-header {
    background: #ff4444;
    color: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.warning-text {
    color: #ffffff;
    line-height: 1.8;
}

.age-verification,
.impact-info,
.parent-info,
.company-efforts,
.violation-consequences {
    margin: 1.5rem 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 1rem 0;
}

.contact-method {
    background: #0a0a0a;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.contact-method h4 {
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 1rem 0;
}

.contact-item {
    background: #0a0a0a;
    padding: 1.5rem;
    border-radius: 8px;
}

.contact-item h4 {
    color: #00ff88;
    margin-bottom: 1rem;
}

.warning-footer {
    background: #0a0a0a;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
}

.footer-notice h3 {
    color: #00ff88;
    margin-bottom: 1rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .info-value {
        text-align: left;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-year {
        margin-right: 0;
        align-self: flex-start;
    }
    
    .calendar-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .calendar-date {
        margin-right: 0;
        align-self: flex-start;
    }
}

/* 强制PC端footer一排显示 */
@media screen and (min-width: 769px) {
    .footer-content {
        display: grid !important;
        grid-template-columns: 1fr 4fr !important;
        gap: 48px !important;
        width: 100% !important;
    }
    
    .footer-links {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 32px !important;
        width: 100% !important;
        flex-wrap: nowrap !important;
    }
    
    .footer-section {
        display: flex !important;
        flex-direction: column !important;
        flex: 1 !important;
        max-width: 100% !important;
        min-height: 200px !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
    
    .footer-title {
        min-height: 30px !important;
        display: flex !important;
        align-items: center !important;
        margin-bottom: 16px !important;
    }
    
    .footer-list {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .contact-info {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .footer-brand {
        max-width: 250px !important;
        min-width: 200px !important;
    }
}

.footer-brand {
    max-width: 250px;
    min-width: 200px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #00ff88;
    color: #000000;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
    min-height: 30px;
    display: flex;
    align-items: center;
}

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

.footer-list li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00ff88;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    line-height: 1.4;
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.legal-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #00ff88;
}

.footer-copyright {
    color: #cccccc;
    font-size: 14px;
}

/* 特别针对1470px宽度的强制规则 */
@media screen and (min-width: 1200px) {
    .nav {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-list {
        display: flex !important;
        flex-direction: row !important;
        list-style: none !important;
        gap: 20px !important;
        margin: 0 !important;
        padding: 0 !important;
        align-items: center !important;
    }
    
    .nav-link {
        display: inline-block !important;
        color: #ffffff !important;
        text-decoration: none !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        padding: 8px 16px !important;
        transition: color 0.3s ease !important;
    }
    
    .mobile-nav {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        position: fixed !important;
        top: -100% !important;
        left: -100% !important;
        right: -100% !important;
        width: 0 !important;
        height: 0 !important;
        transform: none !important;
        background: transparent !important;
        z-index: -1 !important;
    }
    
    .mobile-nav-content {
        display: none !important;
    }
    
    .mobile-nav-menu {
        display: none !important;
    }
    
    .mobile-nav-link {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

