* { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: #ffffff; background: #0a0e27; overflow-x: hidden; position: relative; }
    body::before { content: ''; position: fixed; top: 50%; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%); border-radius: 50%; pointer-events: none; animation: floatGlow 8s ease-in-out infinite; z-index: 0; }
    @keyframes floatGlow { 0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.15; } 50% { transform: translateY(-50px) translateX(-30px); opacity: 0.25; } }
    header { display: flex; justify-content: space-between; align-items: center; padding: 2rem 3rem; background: rgba(10, 14, 39, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(0, 217, 255, 0.1); position: sticky; top: 0; z-index: 100; }
    .logo { font-size: 26px; font-weight: 700; background: linear-gradient(135deg, #00d9ff, #c41e3a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -0.5px; text-decoration: none; cursor: pointer; }
    nav a { color: #ffffff; text-decoration: none; margin: 0 1.5rem; font-size: 14px; font-weight: 500; transition: all 0.3s; position: relative; }
    nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, #00d9ff, #c41e3a); transition: width 0.3s; }
    nav a:hover::after { width: 100%; }
    nav a:hover { color: #00d9ff; }
    .menu-toggle { display: none; color: #00d9ff; font-size: 24px; line-height: 1; padding: 6px 12px; border: 1px solid rgba(0, 217, 255, 0.35); border-radius: 6px; cursor: pointer; user-select: none; }
    .hero { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; padding: 6rem 3rem; max-width: 1400px; margin: 0 auto; position: relative; z-index: 1; background: #0a0e27; }
    .hero-seal-container { position: relative; height: 500px; display: flex; justify-content: center; align-items: center; }
    .seal-orbit { position: absolute; width: 100%; height: 100%; animation: rotate 20s linear infinite; }
    @keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
    .orbit-dot { position: absolute; width: 8px; height: 8px; background: #00d9ff; border-radius: 50%; opacity: 0.4; box-shadow: 0 0 10px #00d9ff; }
    .dot1 { top: 10%; left: 50%; transform: translateX(-50%); }
    .dot2 { bottom: 10%; right: 10%; }
    .dot3 { bottom: 15%; left: 5%; }
    .dot4 { top: 20%; right: 15%; }
    .hero-seal { position: relative; display: flex; justify-content: center; align-items: center; z-index: 2; width: 460px; height: 460px; -webkit-mask-image: radial-gradient(ellipse closest-side, #000 60%, rgba(0,0,0,0.6) 75%, rgba(0,0,0,0) 92%); mask-image: radial-gradient(ellipse closest-side, #000 60%, rgba(0,0,0,0.6) 75%, rgba(0,0,0,0) 92%); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-size: 100% 100%; mask-size: 100% 100%; -webkit-mask-position: center; mask-position: center; animation: floatSeal 4s ease-in-out infinite; will-change: transform; }
    .seal-glow { position: absolute; width: 550px; height: 550px; border-radius: 50%; background: radial-gradient(circle, rgba(0, 217, 255, 0.4) 0%, rgba(0, 217, 255, 0.2) 30%, transparent 70%); animation: pulseIntense 3s ease-in-out infinite; filter: blur(30px); box-shadow: 0 0 120px rgba(0, 217, 255, 0.6), 0 0 200px rgba(0, 217, 255, 0.3); }
    @keyframes pulseIntense { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.2); opacity: 0.9; } }
    .hero-seal img { width: 100%; height: 100%; object-fit: contain; display: block; }
    @keyframes floatSeal { 0%, 100% { transform: translateY(0px) rotateZ(-2deg); } 50% { transform: translateY(-40px) rotateZ(2deg); } }
    .hero-text h1 { font-size: 56px; font-weight: 800; line-height: 1.2; margin-bottom: 1.5rem; background: linear-gradient(135deg, #00d9ff, #ffd700, #c41e3a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .tagline { font-size: 18px; color: #b0b8cc; margin-bottom: 2rem; line-height: 1.8; }
    .cta-buttons { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
    button { padding: 14px 32px; border: none; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; position: relative; overflow: hidden; }
    button::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.1); transition: left 0.5s; z-index: 0; }
    button:hover::before { left: 100%; }
    .btn-primary { background: linear-gradient(135deg, #c41e3a, #ff1744); color: white; box-shadow: 0 0 30px rgba(196, 30, 58, 0.5); position: relative; z-index: 1; }
    .btn-primary:hover { transform: translateY(-4px); box-shadow: 0 0 50px rgba(196, 30, 58, 0.8); }
    .btn-secondary { background: transparent; color: #00d9ff; border: 2px solid #00d9ff; box-shadow: inset 0 0 20px rgba(0, 217, 255, 0.1); position: relative; z-index: 1; }
    .btn-secondary:hover { background: rgba(0, 217, 255, 0.15); box-shadow: inset 0 0 30px rgba(0, 217, 255, 0.3), 0 0 30px rgba(0, 217, 255, 0.4); }
    section { padding: 6rem 3rem; max-width: 1400px; margin: 0 auto; position: relative; z-index: 1; }
    .section-title { font-size: 48px; font-weight: 800; text-align: center; margin-bottom: 4rem; background: linear-gradient(135deg, #00d9ff, #ffd700, #c41e3a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .floating-text { animation: floatText 3s ease-in-out infinite; }
    @keyframes floatText { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
    .tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 4rem; }
    .tool-card { background: linear-gradient(135deg, rgba(0, 217, 255, 0.08), rgba(196, 30, 58, 0.08)); border: 1px solid rgba(0, 217, 255, 0.2); padding: 2.5rem; border-radius: 12px; transition: all 0.3s ease; position: relative; overflow: hidden; }
    .tool-card::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.2), transparent); transition: left 0.8s; }
    .tool-card::after { content: ''; position: absolute; top: -50%; right: -50%; width: 200px; height: 200px; background: radial-gradient(circle, rgba(0, 217, 255, 0.2), transparent); transition: all 0.3s; opacity: 0; }
    .tool-card:hover { border-color: #00d9ff; transform: translateY(-12px); box-shadow: 0 20px 60px rgba(0, 217, 255, 0.25); }
    .tool-card:hover::before { left: 100%; }
    .tool-card:hover::after { opacity: 1; top: -10px; right: -10px; }
    .tool-image { width: 100%; height: 180px; border-radius: 8px; object-fit: cover; margin-bottom: 1.5rem; }
    .tool-card h3 { font-size: 22px; margin-bottom: 1rem; color: #ffffff; }
    .tool-card p { color: #b0b8cc; font-size: 15px; line-height: 1.6; margin-bottom: 2rem; }
    .tool-card a { display: inline-block; padding: 10px 24px; background: linear-gradient(135deg, #00d9ff, #00ffff); color: #0a0e27; text-decoration: none; border-radius: 6px; font-weight: 600; font-size: 14px; transition: all 0.3s; position: relative; z-index: 1; }
    .tool-card a:hover { transform: scale(1.08); box-shadow: 0 0 30px rgba(0, 217, 255, 0.7); }
    .tool-card .tool-coming-soon { display: inline-block; padding: 10px 24px; border: 1px solid rgba(0, 217, 255, 0.35); color: rgba(0, 217, 255, 0.6); border-radius: 6px; font-weight: 600; font-size: 14px; cursor: default; position: relative; z-index: 1; }
    .members-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .member-card { background: linear-gradient(135deg, rgba(0, 217, 255, 0.08), rgba(255, 215, 0, 0.08)); border: 1px solid rgba(0, 217, 255, 0.2); padding: 3rem; border-radius: 12px; text-align: center; transition: all 0.3s; position: relative; overflow: hidden; }
    .member-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(0, 217, 255, 0.1), transparent); animation: spin 8s linear infinite; }
    @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
    .member-card:hover { transform: translateY(-12px); border-color: #00d9ff; box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2); }
    .member-logo { width: 140px; height: 140px; margin: 0 auto 1.5rem; background: #ffffff; border-radius: 12px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(0, 217, 255, 0.2); position: relative; z-index: 1; transition: all 0.3s; overflow: hidden; padding: 10px; }
    .member-card:hover .member-logo { transform: scale(1.1) rotate(5deg); border-color: #00d9ff; box-shadow: 0 0 20px rgba(0, 217, 255, 0.3); }
    .member-logo img { width: 100%; height: 100%; object-fit: contain; }
    .member-card h3 { font-size: 24px; margin-bottom: 1rem; position: relative; z-index: 1; }
    .member-card p { color: #b0b8cc; margin-bottom: 2rem; font-size: 15px; position: relative; z-index: 1; }
    .member-card a { display: inline-block; padding: 12px 28px; background: linear-gradient(135deg, #c41e3a, #ff1744); color: white; text-decoration: none; border-radius: 6px; font-weight: 600; font-size: 14px; transition: all 0.3s; position: relative; z-index: 1; }
    .member-card a:hover { transform: scale(1.08); box-shadow: 0 0 25px rgba(196, 30, 58, 0.7); }
    .application-section { background: linear-gradient(135deg, #c41e3a, #8b1428); padding: 4rem; border-radius: 16px; text-align: center; position: relative; overflow: hidden; }
    .application-section::before { content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255, 215, 0, 0.15), transparent); border-radius: 50%; animation: floatParticle 6s ease-in-out infinite; }
    @keyframes floatParticle { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-30px, -30px); } }
    .application-section h2 { font-size: 42px; margin-bottom: 1rem; position: relative; z-index: 1; }
    .application-section p { font-size: 18px; margin-bottom: 2rem; position: relative; z-index: 1; }
    .application-btn { display: inline-block; padding: 16px 40px; background: white; color: #c41e3a; text-decoration: none; border-radius: 8px; font-weight: 700; font-size: 16px; transition: all 0.3s; border: none; cursor: pointer; position: relative; z-index: 1; }
    .application-btn:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
    .form-section { background: rgba(0, 217, 255, 0.03); padding: 4rem; border-radius: 16px; border: 1px solid rgba(0, 217, 255, 0.2); }
    .form-group { margin-bottom: 1.5rem; }
    label { display: block; margin-bottom: 0.5rem; font-weight: 600; font-size: 14px; color: #00d9ff; }
    input, textarea, select { width: 100%; padding: 12px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(0, 217, 255, 0.2); border-radius: 6px; color: #ffffff; font-family: inherit; font-size: 14px; transition: all 0.3s; }
    input:focus, textarea:focus, select:focus { outline: none; border-color: #00d9ff; box-shadow: 0 0 25px rgba(0, 217, 255, 0.3), inset 0 0 10px rgba(0, 217, 255, 0.1); background: rgba(0, 217, 255, 0.08); transform: scale(1.02); }
    .form-submit { background: linear-gradient(135deg, #00d9ff, #00ffff); color: #0a0e27; font-weight: 700; width: 100%; cursor: pointer; transition: all 0.3s; position: relative; overflow: hidden; }
    .form-submit::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: left 0.6s; }
    .form-submit:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(0, 217, 255, 0.8); }
    .form-submit:hover::after { left: 100%; }
    .form-embed { max-width: 900px; margin: 0 auto; border-radius: 12px; overflow: hidden; border: 1px solid rgba(0, 217, 255, 0.2); background: #0a0e27; }
    .form-embed iframe { display: block; width: 100%; min-height: 1250px; border: 0; background: transparent; }
    .updates-section { padding: 4rem 3rem; }
    .updates-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: 1100px; margin: 0 auto; background: linear-gradient(135deg, rgba(0, 217, 255, 0.06), rgba(255, 215, 0, 0.05)); border: 1px solid rgba(0, 217, 255, 0.2); border-radius: 16px; padding: 3rem; }
    .updates-copy p { color: #b0b8cc; font-size: 16px; line-height: 1.8; }
    .updates-embed { border-radius: 12px; overflow: hidden; background: #0a0e27; }
    .updates-embed iframe { display: block; width: 100%; min-height: 420px; border: 0; background: transparent; }
    footer { background: rgba(0, 0, 0, 0.5); color: #b0b8cc; padding: 3rem; text-align: center; border-top: 1px solid rgba(0, 217, 255, 0.1); font-size: 14px; }
    footer a { color: #00d9ff; text-decoration: none; transition: all 0.3s; }
    footer a:hover { color: #ffd700; text-decoration: underline; }
    .gradient-bg { background: linear-gradient(135deg, rgba(10, 14, 39, 0.8) 0%, rgba(20, 25, 50, 0.8) 100%); }
    @media (max-width: 768px) {
      .hero { grid-template-columns: 1fr; }
      .tools-grid { grid-template-columns: 1fr; }
      .members-grid { grid-template-columns: 1fr; }
      .updates-inner { grid-template-columns: 1fr; padding: 2rem; }
      header { padding: 1.25rem 1.5rem; }
      .menu-toggle { display: block; }
      nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(10, 14, 39, 0.98); border-bottom: 1px solid rgba(0, 217, 255, 0.15); padding: 0.5rem 0 1rem; }
      nav.open { display: flex; }
      nav a { margin: 0; padding: 0.9rem 1.5rem; }
      section { padding: 4rem 1.5rem; }
      .hero { padding: 3rem 1.5rem; }
      .hero-text h1 { font-size: 38px; }
      .section-title { font-size: 34px; }
      .application-section, .form-section { padding: 2rem 1.5rem; }
      .hero-seal-container { height: 350px; }
      .hero-seal { width: 320px; height: 320px; }
      .seal-glow { width: 400px; height: 400px; }
    }