/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --accent-color: #FFD166;
    --dark-color: #2D3047;
    --light-color: #F7F9FC;
    --text-color: #333;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background: #e55a5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: var(--secondary-color);
}

.btn-secondary:hover {
    background: #3db8af;
    box-shadow: 0 6px 15px rgba(78, 205, 196, 0.3);
}

.btn-accent {
    background: var(--accent-color);
    color: var(--dark-color);
}

.btn-accent:hover {
    background: #e9b74f;
    box-shadow: 0 6px 15px rgba(255, 209, 102, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.section-subtitle {
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.section-subtitle-corporrateCulture {
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

/* 页面内容区域 */
.page-content {
    display: block;
}

.page-content.hidden {
    display: none;
}

.detail-page {
    padding-top: 140px;
    min-height: 100vh;
}

.back-btn {
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.back-btn:hover {
    transform: translateX(-5px);
}

/* 顶部导航栏 */
header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
}

.logo i {
    margin-right: 10px;
    font-size: 2rem;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
    cursor: pointer;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--dark-color);
    cursor: pointer;
}

/* 英雄区域 */
.hero {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    padding-top: 140px;
    padding-bottom: 100px;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-content h1 {
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.hero-stat-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* 游戏大厅部分 */
.games {
    background: white;
}

.games-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 25px;
    background: #f0f0f0;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary-color);
    color: white;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.game-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.game-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.game-img img {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.game-card:hover .game-img img {
    transform: scale(1.05);
}

.game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.game-content {
    padding: 25px;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.game-rating {
    color: #FFD166;
}

.game-players {
    display: flex;
    align-items: center;
}

.game-players i {
    margin-right: 5px;
}

/* 游戏详情页 */
.game-detail {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-top: 30px;
    box-shadow: var(--shadow);
}

.game-detail-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.game-detail-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-detail-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.game-detail-title h2 {
    text-align: left;
    padding-bottom: 10px;
}

.game-detail-title h2:after {
    left: 0;
    transform: none;
}

.game-detail-meta {
    display: flex;
    gap: 20px;
    color: #777;
    margin-top: 10px;
}

.game-detail-section {
    margin-bottom: 40px;
}

.game-detail-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.game-rules {
    list-style-type: none;
}

.game-rules li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    position: relative;
    padding-left: 25px;
}

.game-rules li:before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 5px;
}

/* 游戏特色部分 */
.features {
    background: linear-gradient(135deg, rgba(45, 48, 71, 0.05), rgba(255, 107, 107, 0.05));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* 排行榜部分 */
.leaderboard {
    background: white;
}

.leaderboard-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.leaderboard-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.leaderboard-title {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.leaderboard-title i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.leaderboard-list {
    list-style: none;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.leaderboard-item:last-child {
    border-bottom: none;
}

.rank {
    width: 30px;
    height: 30px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
}

.rank-1 {
    background: #FFD166;
    color: var(--dark-color);
}

.rank-2 {
    background: #C4C4C4;
    color: var(--dark-color);
}

.rank-3 {
    background: #CD7F32;
    color: white;
}

.player-info {
    flex: 1;
}

.player-name {
    font-weight: 600;
}

.player-score {
    color: #777;
    font-size: 0.9rem;
}

/* 攻略部分 */
.guides {
    background: linear-gradient(135deg, rgba(45, 48, 71, 0.05), rgba(78, 205, 196, 0.05));
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.guide-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.guide-img {
    height: 200px;
    overflow: hidden;
}

.guide-img img {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.guide-card:hover .guide-img img {
    transform: scale(1.05);
}

.guide-content {
    padding: 25px;
}

.guide-meta {
    display: flex;
    justify-content: space-between;
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* 攻略详情页 */
.guide-detail {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-top: 30px;
    box-shadow: var(--shadow);
}

.guide-detail-header {
    margin-bottom: 30px;
}

.guide-detail-meta {
    display: flex;
    gap: 20px;
    color: #777;
    margin-bottom: 20px;
}

.guide-detail-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.guide-detail-content h3:first-child {
    margin-top: 0;
}

.guide-tips {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

/* 游戏文化部分（替换原玩家社区） */
.culture {
    background: white;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.culture-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.culture-card:hover {
    transform: translateY(-5px);
}

.culture-icon {
    height: 150px;
    background: rgba(78, 205, 196, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.culture-icon i {
    font-size: 3rem;
    color: var(--secondary-color);
}

.culture-content {
    padding: 25px;
}

/* 下载部分 */
.download {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 209, 102, 0.1));
}

.download-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.download-content {
    flex: 1;
}

.download-image {
    flex: 1;
    text-align: center;
}

.download-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.download-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    background: var(--dark-color);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.download-btn:hover {
    background: #1a1c2f;
    transform: translateY(-3px);
}

.download-btn i {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* 底部 */
footer {
    background: var(--dark-color);
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.footer-logo i {
    margin-right: 10px;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
    cursor: pointer;
}

.footer-links ul li:hover {
    color: var(--primary-color);
    padding-left: 5px;
    transition: var(--transition);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #bdc3c7;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .hero-container,
    .download-container {
        flex-direction: column;
    }

    .hero-content,
    .download-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .game-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .game-detail-title h2 {
        text-align: center;
    }

    .game-detail-title h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    nav ul {
        position: fixed;
        top: 80px;
        left: 0;
        background: white;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 15px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding-top: 120px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-buttons,
    .download-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .games-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        max-width: 300px;
    }

    .game-detail,
    .guide-detail {
        padding: 25px;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* 企业文化部分 */
.culture {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(45, 48, 71, 0.03));
    padding-bottom: 100px;
}

.culture-hero {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.culture-mission {
    flex: 1;
}

.culture-mission h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.culture-mission h3 i {
    font-size: 1.8rem;
}

.mission-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    max-width: 400px;
}

.mission-stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-number span {
    font-size: 1rem;
    font-weight: 400;
    color: #777;
}

.stat-text {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.culture-image {
    flex: 0 0 200px;
}

.image-frame {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.core-values {
    margin: 60px 0;
}

.core-values h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 2rem;
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.team-culture {
    margin: 60px 0;
}

.team-culture h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.culture-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.culture-feature {
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.culture-feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.development-path {
    margin: 60px 0;
}

.development-path h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.path-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.path-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-color);
    border-radius: 1.5px;
}

.path-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.path-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 209, 102, 0.3);
}

.path-content {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
}

.path-content h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.join-us {
    background: linear-gradient(135deg, var(--primary-color), #e55a5a);
    color: white;
    padding: 50px;
    border-radius: 15px;
    margin-top: 60px;
    text-align: center;
}

.join-us h3 {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.join-us h3 i {
    font-size: 2rem;
}

.join-content {
    max-width: 700px;
    margin: 0 auto;
}

.positions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
}

.position-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.position-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.contact-btn {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    padding: 15px 40px;
    font-size: 1.1rem;
    margin-top: 20px;
}

.contact-btn:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .culture-hero {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .mission-stats {
        margin: 30px auto 0;
    }

    .image-frame {
        width: 150px;
        height: 150px;
        font-size: 4rem;
    }

    .culture-feature {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto 15px;
    }
}

@media (max-width: 768px) {
    .culture-hero {
        padding: 30px 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .culture-features {
        grid-template-columns: 1fr;
    }

    .path-timeline::before {
        left: 25px;
    }

    .path-item {
        padding-left: 70px;
    }

    .path-year {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .join-us {
        padding: 40px 25px;
    }

    .positions {
        gap: 10px;
    }

    .position-tag {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
}