/* ============================================
   电子竞技青训营与职业战队招募门户 - 全局样式
   色彩体系：电竞信仰紫 + 战损金属灰
   ============================================ */

/* CSS Variables */
:root {
    --primary: #7B2FBE;
    --primary-light: #9B4FDE;
    --primary-dark: #5A1F8E;
    --secondary: #8A8A8A;
    --secondary-light: #B0B0B0;
    --gold: #C9A84C;
    --bg-dark: #0a0a14;
    --bg-darker: #060610;
    --bg-section: #0d0d1e;
    --bg-section-alt: #111128;
    --card-bg: rgba(123, 47, 190, 0.08);
    --card-border: rgba(123, 47, 190, 0.2);
    --card-bg-hover: rgba(123, 47, 190, 0.15);
    --text-primary: #f0f0f5;
    --text-secondary: #b8b8c8;
    --text-muted: #7a7a8a;
    --gradient-primary: linear-gradient(135deg, #7B2FBE 0%, #9B4FDE 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a14 0%, #0d0d1e 100%);
    --shadow-glow: 0 0 30px rgba(123, 47, 190, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

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

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold);
}

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

ul, ol {
    list-style: none;
}

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

.c6b428532.hidden {
    opacity: 0;
    visibility: hidden;
}

.cc06f3bd9 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    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); }
}

/* ============================================
   Navigation
   ============================================ */
.c4040682e {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.c4040682e.c70c3929d {
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.6rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.c7b9ce164 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.c71d8d46b {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
}

.c71d8d46b span {
    color: var(--gold);
}

.c54e61ab0 {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.c54e61ab0 a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.c54e61ab0 a:hover::after,
.c54e61ab0 a.cc51a9eea::after {
    width: 100%;
}

.ccc13dfc5 {
    background: var(--gradient-primary);
    color: #fff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.ccc13dfc5:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: #fff !important;
}

.c4d3c0c6c {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.c4d3c0c6c span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

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

.c282d495a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.cf9829e31 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,10,20,0.4) 0%, rgba(10,10,20,0.8) 70%, rgba(10,10,20,1) 100%);
}

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

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.ce0d5d4d2 {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(123, 47, 190, 0.2);
    border: 1px solid var(--card-border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.c62924458 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #d0d0e0 50%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.c9503a087 {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.ce62b88e6 {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(123, 47, 190, 0.4);
}

.ce62b88e6:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(123, 47, 190, 0.6);
    color: #fff;
}

.c22aace85 {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--card-border);
    backdrop-filter: blur(10px);
}

.c22aace85:hover {
    border-color: var(--primary);
    background: rgba(123, 47, 190, 0.1);
    transform: translateY(-3px);
    color: var(--primary-light);
}

/* ============================================
   Section Common
   ============================================ */
.c9216cd0d {
    padding: 6rem 0;
    position: relative;
}

.cbea39dec {
    background: var(--bg-section-alt);
}

.c58bbf39e {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.c63048ade {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(123, 47, 190, 0.15);
    border: 1px solid var(--card-border);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

/* ============================================
   Trust Section
   ============================================ */
.c444fe891 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    opacity: 0.6;
}

.c444fe891 .cfca855c6 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    padding: 1rem 2rem;
    border: 1px solid rgba(138, 138, 138, 0.2);
    border-radius: var(--radius);
    backdrop-filter: blur(5px);
}

/* ============================================
   Services / Advantages
   ============================================ */
.c4848f85a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

.c6466dec8::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.c6466dec8:hover {
    background: var(--card-bg-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.cf64ad8e9 {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.c6466dec8 h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

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

.c6466dec8 .c90f799b3 {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 1.2rem;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================
   Cases / Gallery
   ============================================ */
.c504a41f2 {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.cd70658ca.cc51a9eea,
.cd70658ca:hover {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
}

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

.caafca3ab {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    transition: var(--transition);
}

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

.caafca3ab img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.c95ae08dd {
    padding: 1.5rem;
}

.c95ae08dd h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.c4f26c6e8 {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: rgba(123, 47, 190, 0.15);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--primary-light);
    margin-top: 0.8rem;
}

/* ============================================
   Pain Points Section
   ============================================ */
.c5b030217 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cfe37b6c0 {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
}

.cfe37b6c0 .c1c8e2cbf {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cfe37b6c0 h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #ff6b6b;
}

.cfe37b6c0 .c0a052655 {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
}

.cfe37b6c0 .c0a052655 h5 {
    color: #4ecdc4;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

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

/* ============================================
   Stats Counter
   ============================================ */
.c29ac15ad {
    background: var(--gradient-primary);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.c29ac15ad::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>') repeat;
    opacity: 0.3;
}

.cd4133c4e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ce95db3f8 .cbb50cf73 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.ce95db3f8 .c89c54d2d {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

/* ============================================
   CTA Section
   ============================================ */
.ced4b5291 {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    background: var(--bg-section);
}

.cb27ca806 {
    max-width: 700px;
    margin: 0 auto;
}

.cb27ca806 h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cb27ca806 p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ============================================
   Footer
   ============================================ */
.c3474adf6 {
    background: var(--bg-darker);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--card-border);
}

.c1bc3fb2e {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.c8294bee9 h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

.c83555a9e h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.c83555a9e a {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.3rem 0;
    transition: var(--transition);
}

.c83555a9e a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.c825e5ad8 {
    padding-top: 2rem;
    border-top: 1px solid rgba(123, 47, 190, 0.1);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   Forms
   ============================================ */
.c5122a761 {
    margin-bottom: 1.5rem;
}

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

.c7471eb74 {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(123, 47, 190, 0.05);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-main);
}

.c7471eb74:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(123, 47, 190, 0.1);
}

textarea.c7471eb74 {
    min-height: 120px;
    resize: vertical;
}

select.c7471eb74 {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237B2FBE' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

/* ============================================
   Page Header (for inner pages)
   ============================================ */
.c2844c879 {
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    background: var(--bg-section);
    overflow: hidden;
}

.c2844c879::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(123, 47, 190, 0.15) 0%, transparent 70%);
}

.c2844c879 h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.c2844c879 .cfe39000f {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

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

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

.ccf386f89 {
    display: flex;
    transition: transform 0.5s ease;
}

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

.c049a5746 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.c3ce825d1 {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.c95721580 {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--card-border);
    cursor: pointer;
    transition: var(--transition);
}

.c95721580.cc51a9eea {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   Process / Flow
   ============================================ */
.c004ec531 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.c990001ab {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.ca5c29aa4 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.c990001ab h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

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

/* ============================================
   Calculator / Tool
   ============================================ */
.c0a17d4a0 {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.c0a17d4a0 h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.cfdb7e80f {
    background: rgba(123, 47, 190, 0.1);
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.cfdb7e80f .c0805a54b {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-light);
}

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

.cca78c3ba {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

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

.cca78c3ba .c1c879995 {
    height: 200px;
    overflow: hidden;
}

.cca78c3ba .c1c879995 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cca78c3ba:hover .c1c879995 img {
    transform: scale(1.05);
}

.cca78c3ba .cb62b1bc4 {
    padding: 1.5rem;
}

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

.cca78c3ba h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

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

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .c1bc3fb2e {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .c54e61ab0 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-darker);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }

    .c54e61ab0.cc51a9eea {
        right: 0;
    }

    .c4d3c0c6c {
        display: flex;
    }

    .c62924458 {
        font-size: 2.2rem;
    }

    .c9503a087 {
        font-size: 1rem;
    }

    .c4848f85a,
    .c0b5aa18d,
    .c0dee43d6 {
        grid-template-columns: 1fr;
    }

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

    .cd4133c4e {
        grid-template-columns: repeat(2, 1fr);
    }

    .c9216cd0d {
        padding: 4rem 0;
    }

    .c58bbf39e {
        padding: 0 1.2rem;
    }

    .c0b5aa18d {
        grid-template-columns: 1fr;
    }

    .c004ec531 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ca7999a28 {
        flex-direction: column;
        align-items: center;
    }

    .cb3a1a557 {
        width: 100%;
        justify-content: center;
    }

    .cd4133c4e {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Animations (Scroll Reveal)
   ============================================ */
.c67c75f68 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.c67c75f68.cc51a9eea {
    opacity: 1;
    transform: translateY(0);
}

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

/* Glow effect */
.glow-effect {
    position: relative;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(123, 47, 190, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Success message */
.c29512e3d {
    display: none;
    text-align: center;
    padding: 3rem;
}

.c29512e3d.show {
    display: block;
}

.c29512e3d .c52c8eae0 {
    font-size: 4rem;
    color: #4ecdc4;
    margin-bottom: 1rem;
}

/* Back to top */
.cc84bebdd {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-glow);
}

.cc84bebdd.visible {
    opacity: 1;
    visibility: visible;
}

.cc84bebdd:hover {
    transform: translateY(-3px);
}
