/* ============================================
   {SITE_TITLE} - 独立音乐人厂牌与Livehouse票务平台
   全局样式表
   ============================================ */

/* CSS Variables */
:root {
    --color-primary: #1a1a1a;
    --color-primary-dark: #0d0d0d;
    --color-accent: #f5a623;
    --color-accent-light: #ffd700;
    --color-accent-dark: #d4890e;
    --color-bg-dark: #111111;
    --color-bg-medium: #1a1a1a;
    --color-bg-light: #2a2a2a;
    --color-card: rgba(255, 255, 255, 0.05);
    --color-card-hover: rgba(255, 255, 255, 0.1);
    --color-text: #f0f0f0;
    --color-text-secondary: #b0b0b0;
    --color-text-muted: #777777;
    --color-border: rgba(255, 255, 255, 0.1);
    --font-primary: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 16px 48px rgba(245, 166, 35, 0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --max-width: 1200px;
    --header-height: 72px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-dark);
    color: var(--color-text);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent-light);
}

ul, ol {
    list-style: none;
}

/* Loading Animation */
.ca59c0461 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.ca59c0461.loaded {
    opacity: 0;
    visibility: hidden;
}

.cfd746495 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.95); }
}

/* Header */
.c4a0af678 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.c4a0af678.scrolled {
    background: rgba(17, 17, 17, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.c0d42e4f8 {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ce19e2edb {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 1px;
}

.ce19e2edb span {
    color: var(--color-text);
}

.c388d1b66 ul {
    display: flex;
    gap: 2rem;
}

.c388d1b66 a {
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.c388d1b66 a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-normal);
}

.c388d1b66 a:hover::after,
.c388d1b66 a.c6dc8e2e9::after {
    width: 100%;
}

.c388d1b66 a:hover {
    color: var(--color-accent);
}

.c80e81641 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.c80e81641:hover {
    background: var(--color-accent-light);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

/* Mobile Menu */
.cf33b0574 {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.cf33b0574 span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-normal);
}

/* Hero Section */
.c9c7eb3c2 {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.c66236c88 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.c9c7eb3c2:hover .c66236c88 {
    transform: scale(1);
}

.c1f95d222 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(17, 17, 17, 1) 100%
    );
}

.c5d18868a {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease 0.5s both;
}

.cc0e13e4b {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid var(--color-accent);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.c021fba03 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f5a623 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cb149eaf6 {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.c2adccf41 {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.c11cb469f {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    text-decoration: none;
}

.cf9b6b004 {
    background: var(--color-accent);
    color: var(--color-primary-dark);
}

.cf9b6b004:hover {
    background: var(--color-accent-light);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
}

.c13d8ef62 {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-border);
}

.c13d8ef62:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-3px);
}

/* Section Styles */
.cc24210c2 {
    padding: 6rem 2rem;
}

.c5c7e17cc {
    background: var(--color-bg-dark);
}

.c36f61c0c {
    background: var(--color-bg-medium);
}

.section-light {
    background: var(--color-bg-light);
}

.c2fd3a1ba {
    max-width: var(--max-width);
    margin: 0 auto;
}

.ce53fd8f5 {
    text-align: center;
    margin-bottom: 4rem;
}

.c0a73ba16 {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--color-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.c57430cc5 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.c6794467c {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Trust Section */
.c82a8a360 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    opacity: 0.6;
    transition: opacity var(--transition-normal);
}

.c82a8a360:hover {
    opacity: 1;
}

.cc1b2bcca {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: var(--color-card);
    border: 1px solid var(--color-border);
    transition: all var(--transition-normal);
}

.cc1b2bcca:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.cc1b2bcca .ce1d631d1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    display: block;
}

.cc1b2bcca .c7d97b340 {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-top: 0.5rem;
}

/* Service Cards */
.c3d265a90 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.c5daba7bc {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.c5daba7bc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.c5daba7bc:hover::before {
    transform: scaleX(1);
}

.c5daba7bc:hover {
    background: var(--color-card-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.cfa9e8162 {
    width: 60px;
    height: 60px;
    background: rgba(245, 166, 35, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.c5daba7bc h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.c5daba7bc p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Cases Gallery */
.cd97be7fb {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.c57999ede {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.c57999ede img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.c57999ede:hover img {
    transform: scale(1.1);
}

.cb49ea4e0 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    transform: translateY(30%);
    transition: transform var(--transition-normal);
}

.c57999ede:hover .cb49ea4e0 {
    transform: translateY(0);
}

.cb49ea4e0 h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cb49ea4e0 p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.c0d7bacd1 {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Pain Points Section */
.c4b2f2afd {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.c7d2ee5d0 {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: all var(--transition-normal);
}

.c7d2ee5d0:hover {
    border-color: var(--color-accent);
    transform: translateX(5px);
}

.cd7ebb54a {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.cd34dbcce h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.cd34dbcce p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.cfefa018e {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.85rem;
    color: var(--color-accent);
}

/* Process Section */
.ca8896942 {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 2rem 0;
}

.ca8896942::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 2px;
    background: var(--color-border);
}

.c940d2b70 {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    padding: 0 1rem;
}

.cf087ca48 {
    width: 60px;
    height: 60px;
    background: var(--color-bg-dark);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-accent);
    transition: all var(--transition-normal);
}

.c940d2b70:hover .cf087ca48 {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    transform: scale(1.1);
}

.c940d2b70 h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.c940d2b70 p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

/* CTA Section */
.c3355ad15 {
    background: linear-gradient(135deg, var(--color-bg-medium) 0%, var(--color-bg-dark) 100%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.cd0a532fe {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.c05b85df1 h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.c05b85df1 p {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
}

.c3fcd8e54 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.c3fcd8e54 input,
.c3fcd8e54 select {
    padding: 0.8rem 1.2rem;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: 0.95rem;
    min-width: 200px;
    transition: border-color var(--transition-fast);
}

.c3fcd8e54 input:focus,
.c3fcd8e54 select:focus {
    outline: none;
    border-color: var(--color-accent);
}

/* Footer */
.cbaef41c8 {
    background: var(--color-primary-dark);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--color-border);
}

.ce75d29ec {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.c8963ab81 p {
    color: var(--color-text-secondary);
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.7;
}

.c6e38d288 h4 {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: var(--color-text);
}

.c6e38d288 ul li {
    margin-bottom: 0.6rem;
}

.c6e38d288 ul li a {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.c6e38d288 ul li a:hover {
    color: var(--color-accent);
}

.c8467a153 {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Page Hero (Inner Pages) */
.ca1ff63f7 {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: var(--header-height);
}

.ca1ff63f7 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ca1ff63f7 .c1f95d222 {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.7) 70%,
        rgba(17, 17, 17, 1) 100%
    );
}

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

.c44ab16f9 h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.c44ab16f9 p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

/* Breadcrumb */
.c550273b5 {
    padding: 1rem 2rem;
    background: var(--color-bg-medium);
}

.c37fad725 {
    max-width: var(--max-width);
    margin: 0 auto;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.c550273b5 a {
    color: var(--color-text-secondary);
}

.c550273b5 span {
    margin: 0 0.5rem;
}

/* News Cards */
.c9b0ab84e {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.c95ba9aa0 {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.c95ba9aa0:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.c793dc40f {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.c793dc40f img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.c95ba9aa0:hover .c793dc40f img {
    transform: scale(1.05);
}

.c78719deb {
    padding: 1.5rem;
}

.c1f76bb4d {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.8rem;
}

.c95ba9aa0 h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.c95ba9aa0 p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Contact Form */
.c4caf1925 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.cdfd705c5 .c66484caa {
    margin-bottom: 1.5rem;
}

.cdfd705c5 label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.cdfd705c5 input,
.cdfd705c5 textarea,
.cdfd705c5 select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    transition: border-color var(--transition-fast);
}

.cdfd705c5 input:focus,
.cdfd705c5 textarea:focus,
.cdfd705c5 select:focus {
    outline: none;
    border-color: var(--color-accent);
}

.cdfd705c5 textarea {
    min-height: 150px;
    resize: vertical;
}

.c01e70590 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.c87bc4629 {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.c87bc4629 .c772c2c29 {
    width: 45px;
    height: 45px;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.c87bc4629 h4 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.c87bc4629 p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* Calculator Tool */
.c9e8986ad {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 3rem;
}

.c99442bc1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.c843cbe73 {
    background: var(--color-bg-dark);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.c843cbe73 .ccb1ff12a {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent);
    margin: 1rem 0;
}

/* Carousel */
.cec061c8f {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.c3d6bf80d {
    display: flex;
    transition: transform var(--transition-slow);
}

.c8b0a4d44 {
    min-width: 100%;
    position: relative;
}

.c8b0a4d44 img {
    width: 100%;
    aspect-ratio: 21/9;
    object-fit: cover;
}

.c9163fd0f {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.c63211227 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.c63211227.c6dc8e2e9 {
    background: var(--color-accent);
    transform: scale(1.2);
}

.c39d7648c {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-text);
    font-size: 1.2rem;
    transition: all var(--transition-fast);
}

.c39d7648c:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark);
}

.c39d7648c.c0e304fbd {
    left: 1rem;
}

.c39d7648c.c92255804 {
    right: 1rem;
}

/* Counter Animation */
.c7d535bcc {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cd679f5be {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.cd679f5be.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax */
.cb226d78d {
    transform: translateZ(0);
    will-change: transform;
}

/* Success Modal */
.ce29fa884 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.ce29fa884.c6dc8e2e9 {
    display: flex;
}

.c5492cfb9 {
    background: var(--color-bg-medium);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    max-width: 450px;
    animation: fadeInUp 0.3s ease;
}

.c5492cfb9 .c772c2c29 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.c5492cfb9 h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.c5492cfb9 p {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

/* Filter Tabs */
.cfc35a5aa {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.c84578bd2 {
    padding: 0.5rem 1.5rem;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.c84578bd2:hover,
.c84578bd2.c6dc8e2e9 {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border-color: var(--color-accent);
}

/* Team Grid */
.cc2fefd38 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.c01af504a {
    text-align: center;
    padding: 2rem;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.c01af504a:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.c01af504a img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--color-accent);
}

.c01af504a h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.c01af504a .ce73ea81b {
    font-size: 0.85rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.c01af504a p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .c4b2f2afd {
        grid-template-columns: 1fr;
    }
    
    .cd0a532fe {
        flex-direction: column;
        text-align: center;
    }
    
    .ce75d29ec {
        grid-template-columns: 1fr 1fr;
    }
    
    .c4caf1925 {
        grid-template-columns: 1fr;
    }
    
    .c99442bc1 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }
    
    .c388d1b66 {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--color-bg-dark);
        border-bottom: 1px solid var(--color-border);
        padding: 1.5rem 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }
    
    .c388d1b66.c6dc8e2e9 {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .c388d1b66 ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cf33b0574 {
        display: flex;
    }
    
    .c80e81641 {
        display: none;
    }
    
    .cc24210c2 {
        padding: 4rem 1.5rem;
    }
    
    .c021fba03 {
        font-size: 2rem;
    }
    
    .c3d265a90 {
        grid-template-columns: 1fr;
    }
    
    .cd97be7fb {
        grid-template-columns: 1fr;
    }
    
    .c9b0ab84e {
        grid-template-columns: 1fr;
    }
    
    .ca8896942 {
        flex-direction: column;
        gap: 2rem;
    }
    
    .ca8896942::before {
        top: 0;
        left: 50%;
        width: 2px;
        height: 100%;
    }
    
    .ce75d29ec {
        grid-template-columns: 1fr;
    }
    
    .c8467a153 {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .c2adccf41 {
        flex-direction: column;
        align-items: center;
    }
    
    .c39d7648c {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .c9c7eb3c2 {
        min-height: 500px;
    }
    
    .cc24210c2 {
        padding: 3rem 1rem;
    }
    
    .c9e8986ad {
        padding: 1.5rem;
    }
}

/* Utility Classes */
.c2acf7762 { text-align: center; }
.text-accent { color: var(--color-accent); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.ce0f301ef { margin-top: 1.5rem; }
.c31742228 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
