/* ============================================
   {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 */
.cd154dc67 {
    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;
}

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

.c5011b944 {
    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 */
.c4867a629 {
    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);
}

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

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

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

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

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

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

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

.c9b383673 a:hover::after,
.c9b383673 a.c9b284201::after {
    width: 100%;
}

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

.cf035e68a {
    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);
}

.cf035e68a: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 */
.c7d9b0f58 {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

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

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

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

.c04ddfb06:hover .ccba37f4a {
    transform: scale(1);
}

.c4babfd24 {
    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%
    );
}

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

.c8fe07f8a {
    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;
}

.cb5e80009 {
    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;
}

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

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

/* Buttons */
.c05abce82 {
    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;
}

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

.c92395ffd: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);
}

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

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

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

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

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

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

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

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

.cbd29f1bd {
    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;
}

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

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

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

.c9a5e25e9:hover {
    opacity: 1;
}

.cd0c5622b {
    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);
}

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

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

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

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

.cd6d91758 {
    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;
}

.cd6d91758::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);
}

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

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

.c5aebe48f {
    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;
}

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

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

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

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

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

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

.c820de75e {
    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);
}

.c03a15f19:hover .c820de75e {
    transform: translateY(0);
}

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

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

.c88e8e65e {
    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 */
.cd4d33eee {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.c2d781348 {
    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);
}

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

.cc4a1eb00 {
    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;
}

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

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

.c61557978 {
    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 */
.c3e8c9039 {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 2rem 0;
}

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

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

.c81c954a7 {
    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);
}

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

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

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

/* CTA Section */
.cd2ba9d19 {
    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);
}

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

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

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

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

.c483d562d input,
.c483d562d 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);
}

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

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

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

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

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

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

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

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

.c82420dc0 {
    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) */
.cdf46924f {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: var(--header-height);
}

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

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

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

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

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

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

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

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

.c8f5d0d62 span {
    margin: 0 0.5rem;
}

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

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

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

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

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

.c7903672f:hover .ce5875580 img {
    transform: scale(1.05);
}

.cc397edd8 {
    padding: 1.5rem;
}

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

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

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

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

.c5c8958e1 .c39790f48 {
    margin-bottom: 1.5rem;
}

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

.c5c8958e1 input,
.c5c8958e1 textarea,
.c5c8958e1 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);
}

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

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

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

.cd0f0a35f {
    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);
}

.cd0f0a35f .c9c242f47 {
    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;
}

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

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

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

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

.c7e9c975f {
    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;
}

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

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

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

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

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

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

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

.c6a73d195.c9b284201 {
    background: var(--color-accent);
    transform: scale(1.2);
}

.c829fbdfc {
    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);
}

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

.c829fbdfc.c61df4e8d {
    left: 1rem;
}

.c829fbdfc.c240171fa {
    right: 1rem;
}

/* Counter Animation */
.cca07681d {
    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; }
}

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

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

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

/* Success Modal */
.c07da6cc4 {
    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;
}

.c07da6cc4.c9b284201 {
    display: flex;
}

.c5045d6f7 {
    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;
}

.c5045d6f7 .c9c242f47 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

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

.c54f00f2f {
    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);
}

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

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

.cf7ffd69b {
    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);
}

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

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

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

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

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

/* Responsive */
@media (max-width: 1024px) {
    .cd4d33eee {
        grid-template-columns: 1fr;
    }
    
    .cfc5a1976 {
        flex-direction: column;
        text-align: center;
    }
    
    .c0233c312 {
        grid-template-columns: 1fr 1fr;
    }
    
    .c49da218d {
        grid-template-columns: 1fr;
    }
    
    .c34a1f7ee {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }
    
    .c9b383673 {
        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);
    }
    
    .c9b383673.c9b284201 {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .c9b383673 ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .c7d9b0f58 {
        display: flex;
    }
    
    .cf035e68a {
        display: none;
    }
    
    .c06363cd3 {
        padding: 4rem 1.5rem;
    }
    
    .cb5e80009 {
        font-size: 2rem;
    }
    
    .c964d3c1a {
        grid-template-columns: 1fr;
    }
    
    .c7eabba55 {
        grid-template-columns: 1fr;
    }
    
    .c38f721c1 {
        grid-template-columns: 1fr;
    }
    
    .c3e8c9039 {
        flex-direction: column;
        gap: 2rem;
    }
    
    .c3e8c9039::before {
        top: 0;
        left: 50%;
        width: 2px;
        height: 100%;
    }
    
    .c0233c312 {
        grid-template-columns: 1fr;
    }
    
    .c82420dc0 {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .c2fee598c {
        flex-direction: column;
        align-items: center;
    }
    
    .c829fbdfc {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .c04ddfb06 {
        min-height: 500px;
    }
    
    .c06363cd3 {
        padding: 3rem 1rem;
    }
    
    .ce09ee1c1 {
        padding: 1.5rem;
    }
}

/* Utility Classes */
.ca54948a1 { text-align: center; }
.text-accent { color: var(--color-accent); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.ccd6e0c85 { margin-top: 1.5rem; }
.c22cd7f1f { 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; }
