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

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

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

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

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

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

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

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

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

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

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

.c25f22b4b a:hover::after,
.c25f22b4b a.cc130c907::after {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c65551031 {
    padding: 1.5rem;
}

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

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

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

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

.ce5508947 .cd9d58d68 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c9c3e1da8 .c4b1ac9ac {
    height: 200px;
    overflow: hidden;
}

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

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

.c9c3e1da8 .cb116ea07 {
    padding: 1.5rem;
}

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

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

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

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

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

    .c25f22b4b.cc130c907 {
        right: 0;
    }

    .c346669a0 {
        display: flex;
    }

    .cf95aca84 {
        font-size: 2.2rem;
    }

    .c02c3db4f {
        font-size: 1rem;
    }

    .c601db5cb,
    .c5f7a8bf9,
    .c492ff948 {
        grid-template-columns: 1fr;
    }

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

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

    .cec33dfc9 {
        padding: 4rem 0;
    }

    .c87ac9e4b {
        padding: 0 1.2rem;
    }

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

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

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

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

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

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

.cadf774e4.cc130c907 {
    opacity: 1;
    transform: translateY(0);
}

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

.c77388601.show {
    display: block;
}

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

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

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

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