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

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

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

.ccd96fd10 {
    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
   ============================================ */
.c7f5b05c2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

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

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

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

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

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

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

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

.c2e8ad7fb a:hover::after,
.c2e8ad7fb a.ce3f882a6::after {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c90f0ec9d .cdc18766c {
    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
   ============================================ */
.cfd67c841 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

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

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

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

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

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

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

.cc8ec3964 .c7db46496 {
    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
   ============================================ */
.c4c9df565 {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

.c1a385047 {
    padding: 1.5rem;
}

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

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

.c7529d231 {
    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
   ============================================ */
.c96c32e08 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

.c6448deec .caa2071d7 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c6c42bdc6 {
    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
   ============================================ */
.c569d8728 {
    margin-bottom: 1.5rem;
}

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

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

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

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

select.cdbd726a7 {
    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)
   ============================================ */
.c6ba9e0f4 {
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    background: var(--bg-section);
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ceaf61c24 .ca3bdf1a7 {
    height: 200px;
    overflow: hidden;
}

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

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

.ceaf61c24 .cdce3dd9d {
    padding: 1.5rem;
}

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

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

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

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

@media (max-width: 768px) {
    .c2e8ad7fb {
        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);
    }

    .c2e8ad7fb.ce3f882a6 {
        right: 0;
    }

    .c0bde02b2 {
        display: flex;
    }

    .c4365ede3 {
        font-size: 2.2rem;
    }

    .c83b1d47e {
        font-size: 1rem;
    }

    .cfd67c841,
    .c1c7d7304,
    .c14ff328d {
        grid-template-columns: 1fr;
    }

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

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

    .ce17859ae {
        padding: 4rem 0;
    }

    .cab7ec90d {
        padding: 0 1.2rem;
    }

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

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

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

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

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

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

.c307bef03.ce3f882a6 {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax */
.c69a9bb7d {
    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 */
.c040de78a {
    display: none;
    text-align: center;
    padding: 3rem;
}

.c040de78a.show {
    display: block;
}

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

/* Back to top */
.c056f60f2 {
    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);
}

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

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