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

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

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

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

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

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

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

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

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

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

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

.c748e3fb2 a:hover::after,
.c748e3fb2 a.c7c497dc8::after {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cff3ea25a {
    padding: 1.5rem;
}

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

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

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

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

.c7d822f87 .cad299cae {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c3d07f51f .cc1fa778a {
    height: 200px;
    overflow: hidden;
}

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

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

.c3d07f51f .c845f5aef {
    padding: 1.5rem;
}

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

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

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

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

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

    .c748e3fb2.c7c497dc8 {
        right: 0;
    }

    .cc7f0277f {
        display: flex;
    }

    .cdcf1ed1e {
        font-size: 2.2rem;
    }

    .ce3640704 {
        font-size: 1rem;
    }

    .ccd89b9e0,
    .ce901ff52,
    .cf00f3f12 {
        grid-template-columns: 1fr;
    }

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

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

    .c5b2ac714 {
        padding: 4rem 0;
    }

    .c8c7c0641 {
        padding: 0 1.2rem;
    }

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

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

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

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

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

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

.c5774e925.c7c497dc8 {
    opacity: 1;
    transform: translateY(0);
}

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

.c841e14e1.show {
    display: block;
}

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

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

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

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