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

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

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

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

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

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

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

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

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

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

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

.c6dcfc21f a:hover::after,
.c6dcfc21f a.cfad79899::after {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c68f2509a {
    padding: 1.5rem;
}

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

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

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

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

.c6c3a1f85 .cd83474d8 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c47c6cedd .c702b3269 {
    height: 200px;
    overflow: hidden;
}

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

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

.c47c6cedd .cab4a2620 {
    padding: 1.5rem;
}

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

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

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

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

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

    .c6dcfc21f.cfad79899 {
        right: 0;
    }

    .c4fffed22 {
        display: flex;
    }

    .c800b5e9b {
        font-size: 2.2rem;
    }

    .ce6f576a2 {
        font-size: 1rem;
    }

    .c8de977d7,
    .cefbc5899,
    .cdab1ee51 {
        grid-template-columns: 1fr;
    }

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

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

    .c937b3f59 {
        padding: 4rem 0;
    }

    .c6b25ad0b {
        padding: 0 1.2rem;
    }

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

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

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

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

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

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

.c1dd81e65.cfad79899 {
    opacity: 1;
    transform: translateY(0);
}

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

.ce17b1545.show {
    display: block;
}

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

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

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

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