Spaces:
Sleeping
Sleeping
| /* --------------------------- | |
| THEME | |
| --------------------------- */ | |
| /* Polices */ | |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700;900&display=swap'); | |
| /* Variables */ | |
| :root { | |
| --bg: #010214; | |
| --panel: rgba(255,255,255,0.02); | |
| --accent: #00f0ff; | |
| --accent-2: #8be9ff; | |
| --glass-border: rgba(140,220,255,0.08); | |
| --glass-shadow: rgba(0,240,255,0.05); | |
| --muted: #b8dff0; | |
| } | |
| /* Global */ | |
| * { box-sizing: border-box; } | |
| body { | |
| margin: 0; | |
| font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; | |
| background: var(--bg); | |
| color: #eaf6ff; | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| overflow-x: hidden; | |
| } | |
| /* ====================== BACKGROUND ANIMÉ ====================== */ | |
| .trade-bg { | |
| position: fixed; inset: 0; z-index: -20; | |
| background: radial-gradient(circle at 20% 20%, #0c0f2a, #010214 80%); | |
| overflow: hidden; | |
| } | |
| .grid-lines { | |
| position: fixed; inset: 0; z-index: -19; | |
| background-image: | |
| linear-gradient(0deg, rgba(0,255,255,0.02) 1px, transparent 1px), | |
| linear-gradient(90deg, rgba(0,255,255,0.01) 1px, transparent 1px); | |
| background-size: 300px 300px, 300px 300px; | |
| animation: gridShift 40s linear infinite; | |
| opacity: 0.6; | |
| } | |
| @keyframes gridShift { | |
| from { transform: translate(0,0); } | |
| to { transform: translate(-200px,-200px); } | |
| } | |
| /* PARTICULES */ | |
| .particle { | |
| position: absolute; | |
| width: 3px; height: 3px; border-radius: 50%; | |
| background: linear-gradient(180deg, var(--accent), var(--accent-2)); | |
| opacity: 0.8; | |
| animation: floatUp 12s linear infinite; | |
| } | |
| @keyframes floatUp { | |
| 0% { transform: translateY(0) scale(1); opacity: 0.8; } | |
| 50% { transform: translateY(-80vh) scale(1.3); opacity: 1; } | |
| 100% { transform: translateY(0) scale(1); opacity: 0.5; } | |
| } | |
| /* ====================== TICKER ====================== */ | |
| .ticker-wrap { | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| height: 44px; | |
| overflow: hidden; | |
| z-index: 3000; | |
| pointer-events: none; | |
| background: linear-gradient(90deg, rgba(0,10,18,0.8), rgba(0,10,18,0.6)); | |
| backdrop-filter: blur(8px); | |
| border-bottom: 1px solid rgba(0,240,255,0.1); | |
| } | |
| .ticker-inner { | |
| display: flex; | |
| animation: scroll-left 20s linear infinite; | |
| gap: 30px; | |
| will-change: transform; | |
| } | |
| .ticker-set { | |
| display: flex; | |
| gap: 30px; | |
| flex-shrink: 0; | |
| } | |
| .ticker-item { | |
| display: flex; | |
| gap: 12px; | |
| align-items: center; | |
| padding: 6px 18px; | |
| background: rgba(0,10,18,0.7); | |
| border-radius: 10px; | |
| border: 1px solid rgba(0,240,255,0.1); | |
| box-shadow: 0 4px 15px rgba(0,240,255,0.08); | |
| backdrop-filter: blur(4px); | |
| transition: all 0.3s ease; | |
| white-space: nowrap; | |
| } | |
| .ticker-item:hover { | |
| transform: translateY(-2px) scale(1.05); | |
| box-shadow: 0 8px 25px rgba(0,240,255,0.2); | |
| border-color: rgba(0,240,255,0.3); | |
| } | |
| .ticker-value { | |
| font-weight: 700; | |
| color: #e6ffff; | |
| font-size: 1rem; | |
| } | |
| .ticker-change { | |
| font-weight: 600; | |
| font-size: 0.9rem; | |
| } | |
| .ticker-change.up { color: #7cffb2; text-shadow: 0 0 8px rgba(124,255,178,0.4); } | |
| .ticker-change.down { color: #ff7b7b; text-shadow: 0 0 8px rgba(255,123,123,0.3); } | |
| @keyframes scroll-left { | |
| 0% { transform: translateX(0); } | |
| 100% { transform: translateX(-50%); } | |
| } | |
| /* ====================== NAVBAR ====================== */ | |
| .navbar { | |
| position: fixed; | |
| left: 0; | |
| right: 0; | |
| z-index: 2000; | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| padding: 14px 48px; | |
| gap: 20px; | |
| background: linear-gradient(180deg, rgba(2,8,18,0.6), rgba(2,8,18,0.35)); | |
| border-bottom: 1px solid rgba(140,220,255,0.03); | |
| backdrop-filter: blur(8px); | |
| box-shadow: 0 8px 30px rgba(0,0,0,0.6); | |
| transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); | |
| } | |
| .navbar.with-ticker { top: 44px; } | |
| .navbar.no-ticker { top: 0; } | |
| .navbar .logo { | |
| height: 52px; | |
| filter: drop-shadow(0 4px 18px rgba(0,240,255,0.06)); | |
| } | |
| .nav-links { | |
| display: flex; | |
| gap: 28px; | |
| align-items: center; | |
| } | |
| .nav-link { | |
| color: var(--muted); | |
| text-decoration: none; | |
| font-weight: 600; | |
| letter-spacing: 0.6px; | |
| padding: 6px 4px; | |
| position: relative; | |
| transition: all 0.3s ease; | |
| } | |
| .nav-link::after { | |
| content: ""; | |
| position: absolute; | |
| left: 0; right: 0; bottom: -6px; | |
| height: 2px; width: 0%; | |
| background: linear-gradient(90deg, var(--accent), var(--accent-2)); | |
| transition: width 0.28s ease; | |
| } | |
| .nav-link:hover { | |
| color: var(--accent-2); | |
| transform: translateY(-1px); | |
| } | |
| .nav-link:hover::after { width: 100%; } | |
| .nav-link.active { | |
| color: var(--accent); | |
| text-shadow: 0 0 12px rgba(0,240,255,0.5); | |
| } | |
| .nav-link.active::after { | |
| width: 100%; | |
| box-shadow: 0 0 8px var(--accent); | |
| } | |
| #logout-btn { | |
| background: transparent; | |
| border: 1px solid rgba(255, 123, 123, 0.5); | |
| color: #ff7b7b; | |
| padding: 8px 16px; | |
| border-radius: 8px; | |
| cursor: pointer; | |
| font-weight: 600; | |
| transition: all 0.3s ease; | |
| } | |
| #logout-btn:hover { | |
| background: rgba(255, 123, 123, 0.1); | |
| border-color: #ff7b7b; | |
| transform: translateY(-1px); | |
| } | |
| /* ====================== PAGE CONTENT ====================== */ | |
| .page-content { | |
| position: relative; | |
| z-index: 1000; | |
| max-width: 1200px; | |
| margin: 0 auto; | |
| transition: padding-top 0.4s ease; | |
| } | |
| .page-content.with-ticker { padding-top: 140px; } | |
| .page-content.no-ticker { padding-top: 96px; } | |
| /* ====================== HERO SECTION ====================== */ | |
| .hero { | |
| text-align: center; | |
| padding: 200px 20px 100px; | |
| margin: 0; | |
| background: transparent ; | |
| position: relative; | |
| z-index: 100; | |
| animation: heroFade 2s ease forwards; | |
| } | |
| .hero h1 { | |
| font-size: 4.3rem; | |
| font-weight: 900; | |
| background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent)); | |
| background-clip: text; | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| text-shadow: | |
| 0 0 20px rgba(0,240,255,0.6), | |
| 0 0 40px rgba(0,240,255,0.4), | |
| 0 0 80px rgba(0,240,255,0.2); | |
| margin: 0 0 28px; | |
| letter-spacing: 1.6px; | |
| animation: titlePulse 3s ease-in-out infinite alternate; | |
| } | |
| @keyframes titlePulse { | |
| from { text-shadow: 0 0 20px rgba(0,240,255,0.6), 0 0 40px rgba(0,240,255,0.4), 0 0 80px rgba(0,240,255,0.2); } | |
| to { text-shadow: 0 0 30px rgba(0,240,255,0.8), 0 0 60px rgba(0,240,255,0.6), 0 0 100px rgba(0,240,255,0.4); } | |
| } | |
| .hero .neon-underline { | |
| height: 6px; | |
| width: 200px; | |
| background: var(--accent); | |
| margin: 0 auto 40px; | |
| border-radius: 3px; | |
| box-shadow: | |
| 0 0 25px var(--accent), | |
| 0 0 50px rgba(0,240,255,0.8), | |
| 0 0 70px rgba(0,240,255,0.5); | |
| animation: pulseGlow 1.6s ease-in-out infinite alternate; | |
| } | |
| .hero p { | |
| color: #bfeeff; | |
| font-size: 1.25rem; | |
| font-weight: 500; | |
| max-width: 850px; | |
| margin: 0 auto 50px; | |
| line-height: 1.8; | |
| text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7); | |
| } | |
| @keyframes heroFade { | |
| 0% { opacity: 0; transform: translateY(-20px); } | |
| 100% { opacity: 1; transform: translateY(0); } | |
| } | |
| /* ====================== ABOUT SECTION ====================== */ | |
| .about-section { | |
| padding: 260px 20px 120px; | |
| display: flex; | |
| justify-content: center; | |
| position: relative; | |
| } | |
| .about-container { | |
| max-width: 1100px; | |
| width: 100%; | |
| background: linear-gradient(145deg, rgba(10, 25, 50, 0.6), rgba(5, 15, 35, 0.45)); | |
| border-radius: 24px; | |
| border: 1px solid rgba(0, 240, 255, 0.18); | |
| backdrop-filter: blur(16px); | |
| padding: 50px 40px; | |
| box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 240, 255, 0.12); | |
| position: relative; | |
| transition: all 0.6s ease; | |
| } | |
| .about-container:hover { | |
| transform: translateY(-8px); | |
| box-shadow: 0 35px 100px rgba(0, 0, 0, 0.7), 0 0 60px rgba(0, 240, 255, 0.2); | |
| border-color: rgba(0, 240, 255, 0.35); | |
| } | |
| .about-title { | |
| font-size: 2.6rem; | |
| font-weight: 900; | |
| background: linear-gradient(90deg, #8be9ff, #00f0ff, #8be9ff); | |
| background-clip: text; | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| text-shadow: 0 0 25px rgba(0, 240, 255, 0.4); | |
| margin: 0; | |
| letter-spacing: 1.2px; | |
| text-align: center; | |
| } | |
| .neon-underline { | |
| height: 4px; | |
| width: 100px; | |
| background: var(--accent); | |
| margin: 18px auto 0; | |
| border-radius: 2px; | |
| box-shadow: 0 0 20px var(--accent), 0 0 40px rgba(0, 240, 255, 0.5); | |
| animation: pulseGlow 2.2s ease-in-out infinite alternate; | |
| } | |
| .about-text { | |
| font-size: 1.15rem; | |
| line-height: 1.8; | |
| color: #d0f8ff; | |
| text-align: center; | |
| margin: 0 auto 50px; | |
| max-width: 900px; | |
| text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); | |
| } | |
| .values-grid { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); | |
| gap: 24px; | |
| } | |
| .value-card { | |
| background: rgba(15, 30, 60, 0.4); | |
| border-radius: 16px; | |
| padding: 24px 20px; | |
| text-align: center; | |
| border: 1px solid rgba(0, 240, 255, 0.1); | |
| transition: all 0.5s ease; | |
| backdrop-filter: blur(6px); | |
| } | |
| .value-card:hover { | |
| transform: translateY(-10px) scale(1.03); | |
| background: rgba(20, 40, 80, 0.6); | |
| border-color: rgba(0, 240, 255, 0.3); | |
| box-shadow: 0 20px 40px rgba(0, 240, 255, 0.15); | |
| } | |
| .value-card h4 { | |
| margin: 12px 0 8px; | |
| font-size: 1.3rem; | |
| color: #e6ffff; | |
| font-weight: 700; | |
| } | |
| .value-card p { | |
| margin: 0; | |
| font-size: 0.95rem; | |
| color: #b8e0ff; | |
| } | |
| /* ====================== CONTACT SECTION ====================== */ | |
| .contact-section { | |
| padding: 80px 20px; | |
| display: flex; | |
| justify-content: center; | |
| } | |
| .contact-container { | |
| display: flex; | |
| gap: 40px; | |
| max-width: 1400px; | |
| width: 100%; | |
| flex-wrap: wrap; | |
| justify-content: center; | |
| align-items: stretch; | |
| } | |
| .contact-card { | |
| flex: 1; | |
| min-width: 380px; | |
| max-width: 480px; | |
| background: linear-gradient(145deg, rgba(10, 25, 50, 0.55), rgba(5, 15, 35, 0.4)); | |
| border-radius: 20px; | |
| border: 1px solid rgba(0, 240, 255, 0.15); | |
| backdrop-filter: blur(14px); | |
| padding: 36px; | |
| box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.1); | |
| transition: all 0.6s ease; | |
| } | |
| .contact-card:hover { | |
| transform: translateY(-12px) scale(1.02); | |
| box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 50px rgba(0, 240, 255, 0.2); | |
| border-color: rgba(0, 240, 255, 0.3); | |
| } | |
| .map-container { | |
| flex: 1; | |
| min-width: 260px; | |
| max-width: 480px; | |
| height: 340px; | |
| border-radius: 20px; | |
| overflow: hidden; | |
| border: 1px solid rgba(0, 240, 255, 0.2); | |
| box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.08); | |
| position: relative; | |
| } | |
| .map-container iframe { | |
| display: block; | |
| width: 100%; | |
| height: 100%; | |
| border-radius: 16px; | |
| } | |
| .contact-title { | |
| font-size: 2rem; | |
| font-weight: 700; | |
| background: linear-gradient(90deg, #8be9ff, #00f0ff, #8be9ff); | |
| background-clip: text; | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| text-shadow: 0 0 20px rgba(0, 240, 255, 0.3); | |
| margin: 0; | |
| text-align: center; | |
| } | |
| .neon-line { | |
| height: 3px; | |
| width: 80px; | |
| background: var(--accent); | |
| margin: 16px auto 0; | |
| border-radius: 2px; | |
| box-shadow: 0 0 15px var(--accent), 0 0 30px rgba(0, 240, 255, 0.4); | |
| animation: pulseGlow 2s ease-in-out infinite alternate; | |
| } | |
| .info-line { | |
| display: flex; | |
| align-items: center; | |
| gap: 16px; | |
| margin-bottom: 18px; | |
| font-size: 1.05rem; | |
| color: #d0f8ff; | |
| transition: all 0.3s ease; | |
| } | |
| .info-line i { | |
| font-size: 1.3rem; | |
| color: var(--accent); | |
| text-shadow: 0 0 10px rgba(0, 240, 255, 0.4); | |
| } | |
| .info-line:hover { | |
| color: #ffffff; | |
| transform: translateX(6px); | |
| } | |
| .info-line:hover i { | |
| transform: scale(1.2); | |
| color: #8be9ff; | |
| } | |
| .social-icons { | |
| display: flex; | |
| gap: 18px; | |
| margin-top: 24px; | |
| justify-content: center; | |
| } | |
| .social-icons a { | |
| width: 48px; | |
| height: 48px; | |
| border-radius: 50%; | |
| background: rgba(0, 240, 255, 0.1); | |
| color: var(--accent); | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| font-size: 1.3rem; | |
| transition: all 0.4s ease; | |
| box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); | |
| } | |
| .social-icons a:hover { | |
| transform: translateY(-6px) scale(1.15); | |
| background: rgba(0, 240, 255, 0.25); | |
| color: white; | |
| box-shadow: 0 15px 30px rgba(0, 240, 255, 0.3); | |
| } | |
| /* ====================== PAGE ACTIONS ====================== */ | |
| .actions-page { | |
| padding: 40px 40px 100px; | |
| width: 100%; | |
| max-width: none; | |
| margin: 0; | |
| position: relative; | |
| z-index: 10; | |
| } | |
| .page-title { | |
| text-align: center; | |
| margin-bottom: 70px; | |
| margin-top: 20px; | |
| position: relative; | |
| z-index: 100; | |
| } | |
| .glow-title { | |
| font-size: 4rem; | |
| font-weight: 900; | |
| background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent)); | |
| background-clip: text; | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| text-shadow: | |
| 0 0 20px rgba(0,240,255,0.6), | |
| 0 0 40px rgba(0,240,255,0.4), | |
| 0 0 80px rgba(0,240,255,0.2); | |
| margin: 0; | |
| letter-spacing: 1.5px; | |
| animation: titlePulse 3s ease-in-out infinite alternate; | |
| } | |
| /* ====================== ACTIONS NAVBAR ====================== */ | |
| .actions-navbar { | |
| width: 100%; | |
| padding: 18px 36px; | |
| margin-bottom: 40px; | |
| background: linear-gradient(145deg, rgba(8,20,40,0.85), rgba(4,12,30,0.75)); | |
| backdrop-filter: blur(22px); | |
| border-bottom: 1.5px solid rgba(0,240,255,0.25); | |
| box-shadow: 0 20px 60px rgba(0,0,0,0.65), 0 0 40px rgba(0,240,255,0.15); | |
| border-radius: 0; | |
| position: sticky; | |
| top: 96px; | |
| z-index: 1500; | |
| } | |
| .actions-navbar-inner { | |
| display: flex; | |
| align-items: center; | |
| justify-content: space-between; | |
| gap: 28px; | |
| flex-wrap: wrap; | |
| } | |
| /* ====================== STOCK BAR ====================== */ | |
| .stock-bar { | |
| display: flex; | |
| flex-wrap: wrap; | |
| gap: 14px; | |
| overflow: visible; | |
| position: relative; | |
| z-index: 10; | |
| padding-bottom: 6px; | |
| } | |
| .stock-item { | |
| flex-shrink: 0; | |
| padding: 14px 22px; | |
| text-align: center; | |
| font-size: 1.05rem; | |
| font-weight: 700; | |
| letter-spacing: 0.6px; | |
| background: linear-gradient(135deg, rgba(15,35,70,0.55), rgba(10,25,55,0.45)); | |
| border-radius: 16px; | |
| border: 1.5px solid rgba(0,240,255,0.18); | |
| cursor: pointer; | |
| transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease; | |
| color: #e6ffff; | |
| } | |
| .stock-item:hover { | |
| transform: translateY(-6px) scale(1.05); | |
| background: linear-gradient(135deg, rgba(25,55,100,0.7), rgba(15,40,85,0.6)); | |
| border-color: rgba(0,240,255,0.45); | |
| box-shadow: 0 10px 30px rgba(0,240,255,0.25); | |
| } | |
| .stock-item.active { | |
| background: linear-gradient(135deg, var(--accent), var(--accent-2)); | |
| color: #001018; | |
| font-weight: 900; | |
| border-color: rgba(0,240,255,0.9); | |
| box-shadow: 0 0 25px rgba(0,240,255,0.7), 0 0 60px rgba(0,240,255,0.4); | |
| } | |
| /* ====================== PANELS ====================== */ | |
| .ai-panel, .text-panel { | |
| background: linear-gradient(145deg, rgba(10,25,50,0.75), rgba(5,15,35,0.6)); | |
| border-radius: 24px; | |
| border: 1.5px solid rgba(0,240,255,0.22); | |
| padding: 36px; | |
| backdrop-filter: blur(18px); | |
| box-shadow: 0 25px 70px rgba(0,0,0,0.6), 0 0 40px rgba(0,240,255,0.15), inset 0 1px 0 rgba(255,255,255,0.06); | |
| transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1); | |
| position: relative; | |
| overflow: hidden; | |
| width: 100%; | |
| } | |
| .ai-panel { padding: 30px; } | |
| .text-panel:hover, .ai-panel:hover { | |
| transform: translateY(-5px) scale(1.01); | |
| box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 60px rgba(0,240,255,0.3); | |
| border-color: rgba(0,240,255,0.45); | |
| } | |
| .panel-title { | |
| color: var(--accent-2); | |
| font-size: 1.55rem; | |
| font-weight: 800; | |
| margin: 0 0 22px; | |
| text-shadow: 0 0 18px rgba(139,233,255,0.4); | |
| letter-spacing: 0.8px; | |
| position: relative; | |
| } | |
| .panel-title::after { | |
| content: ''; | |
| position: absolute; | |
| bottom: -10px; | |
| left: 0; | |
| width: 55px; | |
| height: 4px; | |
| background: linear-gradient(90deg, var(--accent), transparent); | |
| border-radius: 2px; | |
| box-shadow: 0 0 15px var(--accent); | |
| } | |
| /* ====================== GRAPHIQUE ====================== */ | |
| .graph-panel { | |
| background: linear-gradient(145deg, rgba(8,20,40,0.92), rgba(3,10,25,0.78)); | |
| border-radius: 32px; | |
| border: 2px solid rgba(0,240,255,0.3); | |
| padding: 44px; | |
| backdrop-filter: blur(22px); | |
| box-shadow: 0 35px 100px rgba(0,0,0,0.75), 0 0 60px rgba(0,240,255,0.25), inset 0 2px 0 rgba(255,255,255,0.1); | |
| transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1); | |
| margin-top: 40px; | |
| } | |
| .graph-panel:hover { | |
| transform: translateY(-8px); | |
| box-shadow: 0 50px 120px rgba(0,0,0,0.8), 0 0 80px rgba(0,240,255,0.35); | |
| } | |
| .lux-graph { | |
| height: 620px ; | |
| width: 100% ; | |
| border-radius: 24px; | |
| box-shadow: 0 25px 60px rgba(0,0,0,0.6), inset 0 0 40px rgba(0,240,255,0.18); | |
| background: rgba(0,0,0,0.5) ; | |
| } | |
| /* ====================== CONTAINER ACTIONS ====================== */ | |
| .actions-container { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 40px; | |
| width: 100%; | |
| max-width: 1400px; | |
| margin: 0 auto; | |
| padding: 0 20px; | |
| } | |
| /* ====================== DUAL PANEL ROW ====================== */ | |
| .dual-panel-row { | |
| display: grid; | |
| grid-template-columns: 1fr; | |
| gap: 40px; | |
| } | |
| @media (min-width: 1200px) { | |
| .dual-panel-row { | |
| grid-template-columns: 1.3fr 1fr; | |
| align-items: stretch; | |
| } | |
| } | |
| /* ====================== TABLES LUXE ====================== */ | |
| .lux-table { | |
| width: 100%; | |
| border-collapse: separate; | |
| border-spacing: 0 8px; | |
| background: linear-gradient(145deg, rgba(10,25,50,0.6), rgba(5,15,35,0.45)); | |
| border-radius: 20px; | |
| overflow: hidden; | |
| box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(0,240,255,0.1); | |
| font-family: 'Inter', sans-serif; | |
| font-size: 1.05rem; | |
| } | |
| .lux-table tbody tr { | |
| transition: all 0.3s ease; | |
| background: linear-gradient(135deg, rgba(15,35,70,0.5), rgba(10,25,55,0.35)); | |
| box-shadow: inset 0 1px 0 rgba(255,255,255,0.05); | |
| border-left: 1.5px solid rgba(0,240,255,0.12); | |
| border-right: 1.5px solid rgba(0,240,255,0.12); | |
| } | |
| .lux-table td { | |
| padding: 18px 14px; | |
| text-align: center; | |
| font-weight: 600; | |
| color: #eaf6ff; | |
| white-space: nowrap; | |
| transition: color 0.3s ease; | |
| } | |
| .lux-table .up { color: #7cffb2; font-weight: 700; } | |
| .lux-table .down { color: #ff7b7b; font-weight: 700; } | |
| .lux-table tbody tr:nth-child(even) { | |
| background: linear-gradient(135deg, rgba(15,35,70,0.45), rgba(10,25,55,0.3)); | |
| } | |
| /* ====================== TABLE LUXE SPLIT ====================== */ | |
| .lux-table.split-table { | |
| width: 100%; | |
| border-collapse: collapse; | |
| background: transparent; | |
| } | |
| .lux-table.split-table th { | |
| padding: 15px 10px; | |
| color: var(--accent-2); | |
| font-weight: 700; | |
| font-size: 1rem; | |
| text-transform: uppercase; | |
| letter-spacing: 1px; | |
| border-bottom: 2px solid rgba(0,240,255,0.3); | |
| } | |
| .lux-table.split-table td { | |
| padding: 18px 10px; | |
| text-align: center; | |
| font-weight: 600; | |
| color: #eaf6ff; | |
| border-bottom: 1px solid rgba(0,240,255,0.1); | |
| } | |
| /* ====================== METRIC VALUE ====================== */ | |
| .metric-value { | |
| font-size: 1.2rem; | |
| font-weight: 700; | |
| } | |
| .metric-value.up { | |
| color: #7cffb2; | |
| text-shadow: 0 0 15px rgba(124,255,178,0.5); | |
| } | |
| .metric-value.down { | |
| color: #ff7b7b; | |
| text-shadow: 0 0 15px rgba(255,123,123,0.5); | |
| } | |
| /* ====================== DROPDOWN ====================== */ | |
| .lux-dropdown { | |
| background: rgba(5,15,35,0.92) ; | |
| border: 2px solid rgba(0,240,255,0.28) ; | |
| color: #e6ffff ; | |
| border-radius: 16px; | |
| padding: 8px 12px; | |
| font-size: 1.08rem; | |
| font-weight: 600; | |
| min-width: 150px; | |
| } | |
| .lux-dropdown .Select-control { | |
| background: rgba(5,15,35,0.9) ; | |
| border: none ; | |
| border-radius: 16px; | |
| } | |
| .lux-dropdown .Select-value-label { | |
| color: #e6ffff ; | |
| } | |
| .lux-dropdown .Select-menu-outer { | |
| background: rgba(5,15,35,0.98) ; | |
| border: 2px solid rgba(0,240,255,0.28) ; | |
| border-radius: 16px; | |
| z-index: 9999; | |
| } | |
| .lux-dropdown .Select-option { | |
| color: #e6ffff ; | |
| background: rgba(10,25,55,0.7) ; | |
| padding: 12px 20px; | |
| } | |
| .lux-dropdown .Select-option:hover { | |
| background: rgba(0,240,255,0.25) ; | |
| color: white ; | |
| } | |
| /* ====================== PAGES AUTH ====================== */ | |
| .signup-page { | |
| padding-top: 80px ; | |
| } | |
| .login-page { | |
| padding-top: 100px ; | |
| } | |
| .auth-page { | |
| min-height: 100vh; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| padding: 20px; | |
| position: relative; | |
| z-index: 10; | |
| } | |
| .auth-container { | |
| width: 100%; | |
| max-width: 520px; | |
| animation: authFadeIn 0.8s ease forwards; | |
| } | |
| @keyframes authFadeIn { | |
| from { opacity: 0; transform: translateY(30px); } | |
| to { opacity: 1; transform: translateY(0); } | |
| } | |
| .auth-card { | |
| background: linear-gradient(145deg, rgba(10, 25, 50, 0.75), rgba(5, 15, 35, 0.6)); | |
| backdrop-filter: blur(20px); | |
| border: 2px solid rgba(0, 240, 255, 0.25); | |
| border-radius: 32px; | |
| padding: 48px 40px; | |
| box-shadow: | |
| 0 30px 80px rgba(0, 0, 0, 0.7), | |
| 0 0 60px rgba(0, 240, 255, 0.2), | |
| inset 0 1px 0 rgba(255, 255, 255, 0.1); | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .auth-card:hover { | |
| border-color: rgba(0, 240, 255, 0.45); | |
| box-shadow: | |
| 0 40px 100px rgba(0, 0, 0, 0.8), | |
| 0 0 80px rgba(0, 240, 255, 0.3); | |
| transform: translateY(-5px); | |
| } | |
| .auth-title { | |
| font-size: 2.8rem; | |
| font-weight: 900; | |
| text-align: center; | |
| margin-bottom: 16px; | |
| background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent)); | |
| background-clip: text; | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| text-shadow: 0 0 30px rgba(0, 240, 255, 0.5); | |
| letter-spacing: 1px; | |
| } | |
| .auth-neon-line { | |
| height: 4px; | |
| width: 80px; | |
| background: linear-gradient(90deg, var(--accent), var(--accent-2)); | |
| margin: 0 auto 40px; | |
| border-radius: 2px; | |
| box-shadow: 0 0 20px var(--accent), 0 0 40px rgba(0, 240, 255, 0.5); | |
| animation: authPulse 2s ease-in-out infinite alternate; | |
| } | |
| @keyframes authPulse { | |
| from { opacity: 0.8; width: 80px; } | |
| to { opacity: 1; width: 120px; } | |
| } | |
| .auth-input { | |
| width: 100%; | |
| padding: 20px 28px; | |
| margin-bottom: 24px; | |
| background: rgba(5, 15, 35, 0.7); | |
| border: 2px solid rgba(0, 240, 255, 0.2); | |
| border-radius: 16px; | |
| color: #e6ffff; | |
| font-size: 1.2rem; | |
| font-weight: 500; | |
| backdrop-filter: blur(5px); | |
| transition: all 0.3s ease; | |
| height: auto; | |
| min-height: 65px; | |
| line-height: normal; | |
| } | |
| .auth-input:focus { | |
| outline: none; | |
| border-color: var(--accent); | |
| box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.1), 0 0 20px rgba(0, 240, 255, 0.3); | |
| background: rgba(10, 25, 55, 0.8); | |
| transform: translateY(-2px); | |
| } | |
| .auth-input::placeholder { | |
| color: rgba(184, 223, 240, 0.5); | |
| font-weight: 400; | |
| } | |
| .auth-btn { | |
| width: 100%; | |
| padding: 18px 24px; | |
| background: linear-gradient(135deg, var(--accent), var(--accent-2)); | |
| border: none; | |
| border-radius: 16px; | |
| color: #010214; | |
| font-size: 1.2rem; | |
| font-weight: 900; | |
| letter-spacing: 1px; | |
| cursor: pointer; | |
| position: relative; | |
| overflow: hidden; | |
| transition: all 0.3s ease; | |
| text-transform: uppercase; | |
| box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3); | |
| margin-top: 16px; | |
| } | |
| .auth-btn:hover { | |
| transform: translateY(-3px) scale(1.02); | |
| box-shadow: 0 20px 40px rgba(0, 240, 255, 0.5); | |
| } | |
| .auth-btn::after { | |
| content: ''; | |
| position: absolute; | |
| top: -50%; | |
| left: -50%; | |
| width: 200%; | |
| height: 200%; | |
| background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent); | |
| transform: rotate(45deg); | |
| animation: authShine 3s infinite; | |
| } | |
| @keyframes authShine { | |
| 0% { transform: translateX(-100%) rotate(45deg); } | |
| 20%, 100% { transform: translateX(100%) rotate(45deg); } | |
| } | |
| .auth-message { | |
| text-align: center; | |
| margin-top: 24px; | |
| padding: 16px; | |
| border-radius: 12px; | |
| font-weight: 600; | |
| animation: authMessagePop 0.3s ease; | |
| } | |
| @keyframes authMessagePop { | |
| from { opacity: 0; transform: scale(0.9); } | |
| to { opacity: 1; transform: scale(1); } | |
| } | |
| .auth-message.success { | |
| background: rgba(124, 255, 178, 0.15); | |
| border: 1px solid #7cffb2; | |
| color: #7cffb2; | |
| text-shadow: 0 0 10px rgba(124, 255, 178, 0.5); | |
| } | |
| .auth-message.error { | |
| background: rgba(255, 123, 123, 0.15); | |
| border: 1px solid #ff7b7b; | |
| color: #ff7b7b; | |
| text-shadow: 0 0 10px rgba(255, 123, 123, 0.5); | |
| } | |
| .auth-message.info { | |
| background: rgba(0, 240, 255, 0.15); | |
| border: 1px solid var(--accent); | |
| color: var(--accent); | |
| text-shadow: 0 0 10px rgba(0, 240, 255, 0.5); | |
| } | |
| .auth-footer { | |
| text-align: center; | |
| margin-top: 30px; | |
| color: var(--muted); | |
| font-size: 0.95rem; | |
| } | |
| .auth-footer a { | |
| color: var(--accent); | |
| text-decoration: none; | |
| font-weight: 700; | |
| margin-left: 8px; | |
| transition: all 0.3s ease; | |
| position: relative; | |
| } | |
| .auth-footer a:hover { | |
| color: var(--accent-2); | |
| text-shadow: 0 0 15px rgba(0, 240, 255, 0.5); | |
| } | |
| .auth-footer a::after { | |
| content: ''; | |
| position: absolute; | |
| bottom: -2px; | |
| left: 0; | |
| width: 0; | |
| height: 1px; | |
| background: linear-gradient(90deg, var(--accent), var(--accent-2)); | |
| transition: width 0.3s ease; | |
| } | |
| .auth-footer a:hover::after { | |
| width: 100%; | |
| } | |
| .auth-input-icon { | |
| position: relative; | |
| width: 100%; | |
| } | |
| .auth-input-icon i { | |
| position: absolute; | |
| left: 22px; | |
| top: 40%; | |
| transform: translateY(-50%); | |
| color: var(--accent); | |
| font-size: 1.1rem; | |
| text-shadow: 0 0 10px rgba(0, 240, 255, 0.5); | |
| z-index: 1; | |
| pointer-events: none; | |
| } | |
| /* L'œil (btn absolu à droite) a son propre positionnement via inline style */ | |
| .auth-input-icon button i { | |
| position: static; | |
| transform: none; | |
| font-size: 1rem; | |
| color: var(--accent); | |
| pointer-events: none; | |
| text-shadow: none; | |
| } | |
| .auth-input-icon .auth-input { | |
| padding-left: 58px; | |
| } | |
| .auth-phone-prefix { | |
| position: absolute; | |
| left: 58px; | |
| top: 38%; | |
| transform: translateY(-50%); | |
| color: var(--accent); | |
| font-size: 1.2rem; | |
| font-weight: 700; | |
| z-index: 2; | |
| pointer-events: none; | |
| } | |
| .auth-input-icon .auth-phone-input { | |
| padding-left: 104px; | |
| } | |
| /* ====================== FIX PADDING TOP POUR ACTIONS PAGE ====================== */ | |
| .page-content:has(.actions-page) { | |
| padding-top: 320px ; | |
| max-width: none; | |
| margin: 0; | |
| padding-left: 0; | |
| padding-right: 0; | |
| } | |
| .page-content.with-ticker:has(.actions-page) { | |
| padding-top: 360px ; | |
| } | |
| /* ====================== LIVE BADGE ====================== */ | |
| .marche-title-row { | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 18px; | |
| justify-content: center; | |
| } | |
| .live-badge { | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 8px; | |
| background: rgba(0,240,255,0.08); | |
| border: 1px solid rgba(0,240,255,0.3); | |
| border-radius: 50px; | |
| padding: 6px 16px; | |
| font-size: 0.72rem; | |
| font-weight: 800; | |
| color: #00f0ff; | |
| letter-spacing: 0.12em; | |
| text-transform: uppercase; | |
| } | |
| .live-dot { | |
| width: 8px; | |
| height: 8px; | |
| border-radius: 50%; | |
| background: #00f0ff; | |
| box-shadow: 0 0 8px #00f0ff; | |
| animation: livePulse 1.4s ease-in-out infinite; | |
| flex-shrink: 0; | |
| } | |
| @keyframes livePulse { | |
| 0%, 100% { opacity: 1; transform: scale(1); } | |
| 50% { opacity: 0.35; transform: scale(0.65); } | |
| } | |
| /* ====================== ANIMATIONS GLOBALES ====================== */ | |
| @keyframes pulseGlow { | |
| from { box-shadow: 0 0 15px var(--accent), 0 0 30px rgba(0, 240, 255, 0.4); } | |
| to { box-shadow: 0 0 25px var(--accent), 0 0 50px rgba(0, 240, 255, 0.6); } | |
| } | |
| @keyframes pulseRing { | |
| 0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; } | |
| 100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; } | |
| } | |
| @keyframes pulsePin { | |
| 0%, 100% { transform: translate(-50%, -50%) scale(1); } | |
| 50% { transform: translate(-50%, -70%) scale(1.1); } | |
| } | |
| /* ====================== RESPONSIVE ====================== */ | |
| @media (max-width: 1600px) { | |
| .actions-container { grid-template-columns: 1fr 1fr; } | |
| .graph-panel { grid-column: 1 / span 2; } | |
| } | |
| @media (max-width: 1200px) { | |
| .glow-title, .hero h1 { font-size: 3.5rem; } | |
| } | |
| @media (max-width: 1000px) { | |
| .glow-title, .hero h1 { font-size: 3.2rem; } | |
| .lux-graph { height: 500px ; } | |
| .hero { padding: 180px 20px 80px; } | |
| .about-section { padding: 200px 20px 100px; } | |
| } | |
| @media (max-width: 900px) { | |
| .navbar { padding: 12px 20px; } | |
| .page-content.with-ticker { padding-top: 160px; } | |
| .page-content.no-ticker { padding-top: 96px; } | |
| .page-content:has(.actions-page) { padding-top: 250px ; } | |
| .page-content.with-ticker:has(.actions-page) { padding-top: 300px ; } | |
| .ticker-wrap { display: none; } | |
| .actions-navbar { | |
| top: 44px; | |
| padding: 15px 20px; | |
| } | |
| .stock-item { | |
| padding: 10px 16px; | |
| font-size: 0.9rem; | |
| } | |
| .graph-panel { | |
| padding: 25px; | |
| } | |
| .lux-graph { | |
| height: 400px ; | |
| } | |
| .contact-container, .about-container { | |
| gap: 30px; | |
| padding: 30px 20px; | |
| } | |
| .contact-card, .map-container { | |
| min-width: 100%; | |
| } | |
| .map-container { | |
| height: 320px; | |
| } | |
| } | |
| @media (max-width: 600px) { | |
| .actions-page { | |
| padding: 110px 20px 70px; | |
| } | |
| .page-content:has(.actions-page) { | |
| padding-top: 200px ; | |
| } | |
| .page-content.with-ticker:has(.actions-page) { | |
| padding-top: 280px ; | |
| } | |
| .actions-page .page-title { | |
| margin-top: 10px; | |
| margin-bottom: 40px; | |
| } | |
| .glow-title, .hero h1 { | |
| font-size: 2.6rem; | |
| } | |
| .hero { | |
| padding: 140px 15px 60px; | |
| } | |
| .hero p { | |
| font-size: 1.1rem; | |
| } | |
| .about-section { | |
| padding: 160px 15px 80px; | |
| } | |
| .control-panel, .metrics-panel, .graph-panel { | |
| padding: 28px; | |
| } | |
| } | |
| /* ====================== CAMERA STYLES ====================== */ | |
| .camera-container { | |
| position: relative; | |
| width: 100%; | |
| max-width: 640px; | |
| margin: 20px auto; | |
| border-radius: 20px; | |
| overflow: hidden; | |
| border: 3px solid rgba(0, 240, 255, 0.5); | |
| box-shadow: 0 0 30px rgba(0, 240, 255, 0.3); | |
| } | |
| .camera-video { | |
| width: 100%; | |
| height: auto; | |
| display: block; | |
| transform: scaleX(-1); | |
| } | |
| .camera-overlay { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| bottom: 0; | |
| pointer-events: none; | |
| border: 3px solid rgba(255, 255, 0, 0.5); | |
| border-radius: 50%; | |
| width: 200px; | |
| height: 200px; | |
| top: 50%; | |
| left: 50%; | |
| transform: translate(-50%, -50%); | |
| box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5); | |
| } | |
| .camera-status { | |
| position: absolute; | |
| bottom: 20px; | |
| left: 20px; | |
| right: 20px; | |
| text-align: center; | |
| color: white; | |
| font-weight: bold; | |
| text-shadow: 0 0 10px black; | |
| background: rgba(0, 0, 0, 0.5); | |
| padding: 10px; | |
| border-radius: 10px; | |
| backdrop-filter: blur(5px); | |
| } | |
| .camera-status.face-detected { | |
| background: rgba(0, 255, 0, 0.3); | |
| color: #7cffb2; | |
| border: 1px solid #7cffb2; | |
| animation: pulse 1s infinite; | |
| } | |
| .camera-status.no-face { | |
| background: rgba(255, 0, 0, 0.3); | |
| color: #ff7b7b; | |
| border: 1px solid #ff7b7b; | |
| } | |
| .camera-controls { | |
| display: flex; | |
| gap: 10px; | |
| justify-content: center; | |
| margin-top: 15px; | |
| } | |
| .camera-btn { | |
| background: linear-gradient(135deg, var(--accent), var(--accent-2)); | |
| border: none; | |
| border-radius: 10px; | |
| color: #010214; | |
| font-weight: 700; | |
| padding: 12px 24px; | |
| cursor: pointer; | |
| transition: all 0.3s ease; | |
| font-size: 1rem; | |
| text-transform: uppercase; | |
| letter-spacing: 1px; | |
| } | |
| .camera-btn:hover { | |
| transform: translateY(-2px); | |
| box-shadow: 0 10px 20px rgba(0, 240, 255, 0.4); | |
| } | |
| .camera-btn.stop { | |
| background: linear-gradient(135deg, #ff7b7b, #ff4444); | |
| } | |
| @keyframes pulse { | |
| 0% { opacity: 1; } | |
| 50% { opacity: 0.7; } | |
| 100% { opacity: 1; } | |
| } | |
| /* Style pour le séparateur */ | |
| .auth-card hr { | |
| border: none; | |
| height: 1px; | |
| background: linear-gradient(90deg, transparent, var(--accent), transparent); | |
| margin: 0; | |
| } | |
| /* Style pour le bouton de connexion faciale */ | |
| .auth-btn.facial { | |
| background: linear-gradient(135deg, #8be9ff, #00f0ff); | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .auth-btn.facial::before { | |
| content: ''; | |
| position: absolute; | |
| top: -50%; | |
| left: -50%; | |
| width: 200%; | |
| height: 200%; | |
| background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent); | |
| transform: rotate(45deg); | |
| animation: facialShine 3s infinite; | |
| } | |
| @keyframes facialShine { | |
| 0% { transform: translateX(-100%) rotate(45deg); } | |
| 20%, 100% { transform: translateX(100%) rotate(45deg); } | |
| } | |
| /* ====================== SIGNUP REDESIGN ====================== */ | |
| /* Sous-titre hero */ | |
| .signup-subtitle { | |
| text-align: center; | |
| font-size: 0.82rem; | |
| color: rgba(180,210,240,0.55); | |
| margin: -8px 0 18px; | |
| } | |
| /* Labels de section */ | |
| .signup-section-label { | |
| display: flex; | |
| align-items: center; | |
| gap: 7px; | |
| font-size: 0.72rem; | |
| font-weight: 700; | |
| letter-spacing: 0.08em; | |
| text-transform: uppercase; | |
| color: rgba(0,240,255,0.55); | |
| margin: 20px 0 10px; | |
| padding-bottom: 6px; | |
| border-bottom: 1px solid rgba(0,240,255,0.1); | |
| } | |
| /* Prénom + Nom côte à côte */ | |
| .signup-fields-row { | |
| display: grid; | |
| grid-template-columns: 1fr 1fr; | |
| gap: 12px; | |
| margin-bottom: 12px; | |
| } | |
| /* ── Carte reconnaissance faciale ── */ | |
| .signup-face-card { | |
| display: flex; | |
| align-items: center; | |
| gap: 14px; | |
| padding: 16px 18px; | |
| border-radius: 14px; | |
| border: 1px solid rgba(0,240,255,0.25); | |
| background: linear-gradient(135deg, rgba(0,240,255,0.06), rgba(0,120,200,0.04)); | |
| margin: 20px 0 4px; | |
| cursor: pointer; | |
| transition: border-color 0.2s, background 0.2s; | |
| } | |
| .signup-face-card:hover { | |
| border-color: rgba(0,240,255,0.45); | |
| background: linear-gradient(135deg, rgba(0,240,255,0.1), rgba(0,120,200,0.06)); | |
| } | |
| .signup-face-card-icon { | |
| width: 46px; | |
| height: 46px; | |
| border-radius: 12px; | |
| background: linear-gradient(135deg, rgba(0,240,255,0.15), rgba(0,180,255,0.08)); | |
| border: 1px solid rgba(0,240,255,0.2); | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| flex-shrink: 0; | |
| font-size: 1.3rem; | |
| color: #00f0ff; | |
| } | |
| .signup-face-card-content { | |
| flex: 1; | |
| min-width: 0; | |
| } | |
| .signup-face-card-header { | |
| display: flex; | |
| align-items: center; | |
| gap: 8px; | |
| margin-bottom: 3px; | |
| } | |
| .signup-face-card-header strong { | |
| font-size: 0.9rem; | |
| color: #e2e8f0; | |
| font-weight: 700; | |
| } | |
| .signup-badge-rec { | |
| font-size: 0.65rem; | |
| font-weight: 700; | |
| color: #00f0ff; | |
| background: rgba(0,240,255,0.12); | |
| border: 1px solid rgba(0,240,255,0.3); | |
| border-radius: 50px; | |
| padding: 2px 8px; | |
| letter-spacing: 0.04em; | |
| text-transform: uppercase; | |
| } | |
| .signup-face-card-desc { | |
| font-size: 0.77rem; | |
| color: rgba(180,210,240,0.55); | |
| margin: 0; | |
| line-height: 1.4; | |
| } | |
| /* Toggle switch (iOS style) */ | |
| .signup-face-toggle-wrap { | |
| position: relative; | |
| display: inline-block; | |
| width: 44px; | |
| height: 24px; | |
| flex-shrink: 0; | |
| cursor: pointer; | |
| } | |
| .signup-face-check { | |
| position: absolute; | |
| opacity: 0; | |
| width: 0; | |
| height: 0; | |
| } | |
| .signup-toggle-slider { | |
| position: absolute; | |
| inset: 0; | |
| border-radius: 34px; | |
| background: rgba(255,255,255,0.1); | |
| border: 1px solid rgba(255,255,255,0.15); | |
| transition: background 0.25s, border-color 0.25s; | |
| } | |
| .signup-toggle-slider::before { | |
| content: ""; | |
| position: absolute; | |
| width: 18px; | |
| height: 18px; | |
| left: 2px; | |
| top: 50%; | |
| transform: translateY(-50%); | |
| border-radius: 50%; | |
| background: rgba(255,255,255,0.5); | |
| transition: transform 0.25s, background 0.25s; | |
| } | |
| .signup-face-toggle-wrap.face-active .signup-toggle-slider { | |
| background: rgba(0,240,255,0.3); | |
| border-color: rgba(0,240,255,0.6); | |
| } | |
| .signup-face-toggle-wrap.face-active .signup-toggle-slider::before { | |
| transform: translateY(-50%) translateX(20px); | |
| background: #00f0ff; | |
| } | |
| /* ── Indicateur de force du mot de passe ── */ | |
| .pw-strength-wrap { | |
| margin: -6px 0 8px; | |
| } | |
| .pw-strength-track { | |
| height: 4px; | |
| background: rgba(255,255,255,0.08); | |
| border-radius: 4px; | |
| overflow: hidden; | |
| margin-bottom: 5px; | |
| } | |
| .pw-strength-fill { | |
| height: 100%; | |
| width: 0%; | |
| border-radius: 4px; | |
| transition: width 0.35s ease, background 0.35s ease; | |
| } | |
| .pw-strength-fill.pw-weak { background: #ff4d6d; } | |
| .pw-strength-fill.pw-fair { background: #ffb347; } | |
| .pw-strength-fill.pw-good { background: #f0e040; } | |
| .pw-strength-fill.pw-strong { background: #00f0a0; } | |
| .pw-strength-label { | |
| font-size: 0.73rem; | |
| font-weight: 600; | |
| letter-spacing: 0.03em; | |
| } | |
| .pw-weak .pw-strength-label, .pw-strength-fill.pw-weak ~ * { color: #ff4d6d; } | |
| /* Couleur du label selon la classe du fill — on utilise JS via className du span parent */ | |
| .pw-strength-wrap:has(.pw-weak) .pw-strength-label { color: #ff4d6d; } | |
| .pw-strength-wrap:has(.pw-fair) .pw-strength-label { color: #ffb347; } | |
| .pw-strength-wrap:has(.pw-good) .pw-strength-label { color: #f0e040; } | |
| .pw-strength-wrap:has(.pw-strong) .pw-strength-label { color: #00f0a0; } | |
| /* ── Critères du mot de passe ── */ | |
| .pw-rules { | |
| display: grid; | |
| grid-template-columns: 1fr 1fr; | |
| gap: 5px 12px; | |
| margin: -4px 0 10px; | |
| padding: 10px 14px; | |
| background: rgba(255,255,255,0.02); | |
| border-radius: 10px; | |
| border: 1px solid rgba(255,255,255,0.06); | |
| } | |
| .pw-rule { | |
| display: flex; | |
| align-items: center; | |
| gap: 6px; | |
| font-size: 0.74rem; | |
| color: rgba(160,180,210,0.5); | |
| transition: color 0.25s; | |
| } | |
| .pw-rule i { | |
| font-size: 0.72rem; | |
| color: rgba(255,77,109,0.6); | |
| flex-shrink: 0; | |
| } | |
| .pw-rule.pw-rule-ok { | |
| color: #00f0a0; | |
| } | |
| .pw-rule.pw-rule-ok i { | |
| color: #00f0a0; | |
| } | |
| /* ── Feedback correspondance mot de passe ── */ | |
| .signup-pw-feedback { | |
| font-size: 0.78rem; | |
| margin: -6px 0 8px 4px; | |
| min-height: 18px; | |
| display: flex; | |
| align-items: center; | |
| gap: 5px; | |
| transition: color 0.2s; | |
| } | |
| .signup-pw-feedback.pw-match { color: #00f0a0; } | |
| .signup-pw-feedback.pw-mismatch { color: #ff4d6d; } | |
| /* ── CGU collapsible ── */ | |
| .signup-consent-box { | |
| margin: 18px 0 22px; | |
| border-radius: 14px; | |
| border: 1px solid rgba(0,240,255,0.18); | |
| background: linear-gradient(145deg, rgba(0,240,255,0.03), rgba(5,15,35,0.5)); | |
| overflow: hidden; | |
| } | |
| .signup-consent-toggle { | |
| display: flex; | |
| align-items: center; | |
| justify-content: space-between; | |
| width: 100%; | |
| padding: 13px 18px; | |
| background: none; | |
| border: none; | |
| border-bottom: 1px solid rgba(0,240,255,0.08); | |
| color: rgba(180,210,240,0.7); | |
| font-size: 0.83rem; | |
| font-weight: 600; | |
| cursor: pointer; | |
| transition: background 0.2s, color 0.2s; | |
| font-family: inherit; | |
| text-align: left; | |
| } | |
| .signup-consent-toggle:hover { | |
| background: rgba(0,240,255,0.04); | |
| color: #00f0ff; | |
| } | |
| .signup-consent-toggle i.fas.fa-file-contract { | |
| color: rgba(0,240,255,0.6); | |
| } | |
| .signup-consent-toggle i.fas.fa-chevron-down, | |
| .signup-consent-toggle i.fas.fa-chevron-up { | |
| font-size: 0.75rem; | |
| color: rgba(0,240,255,0.4); | |
| transition: transform 0.2s; | |
| } | |
| .signup-consent-details { | |
| padding: 14px 18px 12px; | |
| display: flex; | |
| flex-direction: column; | |
| gap: 9px; | |
| border-bottom: 1px solid rgba(0,240,255,0.08); | |
| animation: slideDown 0.2s ease; | |
| } | |
| @keyframes slideDown { | |
| from { opacity: 0; transform: translateY(-6px); } | |
| to { opacity: 1; transform: translateY(0); } | |
| } | |
| .signup-consent-item { | |
| display: flex; | |
| align-items: flex-start; | |
| gap: 10px; | |
| font-size: 0.79rem; | |
| color: rgba(184,223,240,0.72); | |
| line-height: 1.5; | |
| } | |
| .consent-icon { | |
| color: rgba(0,240,255,0.55); | |
| font-size: 0.78rem; | |
| margin-top: 2px; | |
| flex-shrink: 0; | |
| width: 14px; | |
| } | |
| .signup-consent-check-label { | |
| display: flex; | |
| align-items: flex-start; | |
| gap: 11px; | |
| padding: 13px 18px; | |
| cursor: pointer; | |
| transition: background 0.2s; | |
| } | |
| .signup-consent-check-label:hover { | |
| background: rgba(0,240,255,0.04); | |
| } | |
| .signup-consent-check-label span { | |
| font-size: 0.83rem; | |
| color: #c8dff0; | |
| line-height: 1.5; | |
| user-select: none; | |
| } | |
| .signup-consent-check-label strong { | |
| color: #00f0ff; | |
| font-weight: 600; | |
| } | |
| .signup-terms-check { | |
| display: flex; | |
| align-items: center; | |
| flex-shrink: 0; | |
| margin-top: 1px; | |
| } | |
| .signup-terms-check input[type="checkbox"] { | |
| width: 17px; | |
| height: 17px; | |
| accent-color: #00f0ff; | |
| cursor: pointer; | |
| flex-shrink: 0; | |
| } | |
| /* ====================== PAGE TEMOIGNAGES ====================== */ | |
| .testimonials-premium-page { | |
| max-width: 1400px; | |
| margin: 140px auto 60px auto; | |
| padding: 0 30px; | |
| } | |
| .testimonials-premium-hero { | |
| position: relative; | |
| margin-bottom: 80px; | |
| padding: 80px 40px; | |
| background: linear-gradient(145deg, rgba(15,35,70,0.5), rgba(10,25,55,0.3)); | |
| border-radius: 40px; | |
| border: 1px solid rgba(0,240,255,0.1); | |
| backdrop-filter: blur(10px); | |
| overflow: hidden; | |
| text-align: center; | |
| } | |
| .hero-premium-decoration { | |
| position: absolute; | |
| top: -50%; | |
| left: -50%; | |
| width: 200%; | |
| height: 200%; | |
| background: radial-gradient(circle, rgba(0,240,255,0.05) 0%, transparent 70%); | |
| animation: rotate 30s linear infinite; | |
| } | |
| @keyframes rotate { | |
| from { transform: rotate(0deg); } | |
| to { transform: rotate(360deg); } | |
| } | |
| .hero-premium-title { | |
| font-size: 3.8rem; | |
| font-weight: 700; | |
| background: linear-gradient(135deg, #fff, #8be9ff); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| margin: 0 0 15px 0; | |
| position: relative; | |
| z-index: 2; | |
| } | |
| .hero-premium-subtitle { | |
| color: #b8dff0; | |
| font-size: 1.3rem; | |
| margin-bottom: 50px; | |
| position: relative; | |
| z-index: 2; | |
| } | |
| .premium-stats-grid { | |
| display: grid; | |
| grid-template-columns: repeat(4, 1fr); | |
| gap: 25px; | |
| margin-bottom: 60px; | |
| } | |
| .premium-stat-card { | |
| background: linear-gradient(145deg, rgba(15,35,70,0.6), rgba(10,25,55,0.4)); | |
| border-radius: 25px; | |
| padding: 30px 20px; | |
| display: flex; | |
| align-items: center; | |
| gap: 20px; | |
| border: 1px solid rgba(0,240,255,0.15); | |
| backdrop-filter: blur(5px); | |
| transition: all 0.4s ease; | |
| } | |
| .premium-stat-card:hover { | |
| transform: translateY(-5px); | |
| border-color: #00f0ff; | |
| box-shadow: 0 20px 40px rgba(0,240,255,0.15); | |
| } | |
| .premium-stat-icon { | |
| width: 60px; | |
| height: 60px; | |
| background: rgba(0,240,255,0.1); | |
| border-radius: 50%; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| font-size: 2rem; | |
| color: #00f0ff; | |
| } | |
| .premium-stat-content { | |
| flex: 1; | |
| } | |
| .premium-stat-label { | |
| color: #b8dff0; | |
| font-size: 0.9rem; | |
| text-transform: uppercase; | |
| letter-spacing: 1px; | |
| display: block; | |
| margin-bottom: 5px; | |
| } | |
| .premium-stat-value { | |
| color: #fff; | |
| font-size: 2rem; | |
| font-weight: 700; | |
| } | |
| .premium-stat-trend { | |
| color: #7cffb2; | |
| font-size: 0.85rem; | |
| } | |
| .premium-stat-trend.positive { | |
| color: #7cffb2; | |
| } | |
| .premium-cards-grid { | |
| display: grid; | |
| grid-template-columns: repeat(2, 1fr); | |
| gap: 40px; | |
| margin-bottom: 80px; | |
| } | |
| .premium-testimonial-card { | |
| background: linear-gradient(145deg, rgba(15,35,70,0.6), rgba(10,25,55,0.4)); | |
| border-radius: 30px; | |
| padding: 35px; | |
| border: 1px solid rgba(0,240,255,0.1); | |
| backdrop-filter: blur(10px); | |
| transition: all 0.4s ease; | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .premium-testimonial-card:hover { | |
| transform: translateY(-5px); | |
| border-color: #00f0ff; | |
| box-shadow: 0 25px 50px rgba(0,240,255,0.2); | |
| } | |
| .premium-card-header { | |
| display: flex; | |
| align-items: center; | |
| gap: 20px; | |
| margin-bottom: 25px; | |
| } | |
| .premium-card-avatar { | |
| width: 70px; | |
| height: 70px; | |
| background: linear-gradient(135deg, #00f0ff, #8be9ff); | |
| border-radius: 22px; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| font-weight: 700; | |
| font-size: 1.6rem; | |
| color: #010214; | |
| box-shadow: 0 15px 30px rgba(0,240,255,0.3); | |
| } | |
| .premium-card-info { | |
| flex: 1; | |
| } | |
| .premium-card-name { | |
| color: #fff; | |
| font-size: 1.4rem; | |
| font-weight: 600; | |
| margin: 0; | |
| } | |
| .premium-card-role-text { | |
| color: #8be9ff; | |
| font-size: 0.95rem; | |
| } | |
| .premium-card-country { | |
| color: #b8dff0; | |
| font-size: 0.9rem; | |
| margin-left: 8px; | |
| } | |
| .premium-card-rating { | |
| margin-left: auto; | |
| } | |
| .premium-card-stars { | |
| color: #ffc107; | |
| font-size: 1.3rem; | |
| letter-spacing: 2px; | |
| } | |
| .premium-card-quote { | |
| position: relative; | |
| margin-bottom: 20px; | |
| padding-left: 15px; | |
| } | |
| .premium-quote-icon { | |
| position: absolute; | |
| left: -5px; | |
| top: -5px; | |
| font-size: 1.5rem; | |
| color: rgba(0,240,255,0.2); | |
| } | |
| .premium-card-content { | |
| color: #e0e0e0; | |
| font-size: 1rem; | |
| line-height: 1.6; | |
| font-style: italic; | |
| margin: 0; | |
| } | |
| .premium-card-stats { | |
| display: grid; | |
| grid-template-columns: repeat(3, 1fr); | |
| gap: 15px; | |
| margin-bottom: 25px; | |
| padding: 15px; | |
| background: rgba(0,0,0,0.2); | |
| border-radius: 20px; | |
| border: 1px solid rgba(0,240,255,0.1); | |
| } | |
| .premium-stat-item { | |
| text-align: center; | |
| } | |
| .stat-item-label { | |
| display: block; | |
| color: #8be9ff; | |
| font-size: 0.8rem; | |
| text-transform: uppercase; | |
| letter-spacing: 0.5px; | |
| margin-bottom: 5px; | |
| } | |
| .stat-item-value { | |
| display: block; | |
| color: #fff; | |
| font-size: 1.2rem; | |
| font-weight: 600; | |
| } | |
| .stat-item-value.positive { | |
| color: #7cffb2; | |
| } | |
| .stat-item-value.gain { | |
| color: #7cffb2; | |
| } | |
| .premium-card-footer { | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| padding-top: 15px; | |
| border-top: 1px solid rgba(0,240,255,0.1); | |
| color: #a0b0c0; | |
| font-size: 0.85rem; | |
| } | |
| .premium-footer-left i, | |
| .premium-footer-right i { | |
| margin-right: 6px; | |
| color: #00f0ff; | |
| } | |
| .premium-form-simple { | |
| max-width: 750px; | |
| margin: 0 auto; | |
| background: linear-gradient(145deg, rgba(15,35,70,0.6), rgba(10,25,55,0.4)); | |
| border-radius: 35px; | |
| padding: 40px; | |
| border: 1px solid rgba(0,240,255,0.15); | |
| backdrop-filter: blur(10px); | |
| } | |
| .simple-form-title { | |
| font-size: 2rem; | |
| font-weight: 600; | |
| background: linear-gradient(135deg, #00f0ff, #8be9ff); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| margin: 0 0 10px 0; | |
| text-align: center; | |
| } | |
| .simple-form-subtitle { | |
| color: #b8dff0; | |
| text-align: center; | |
| margin-bottom: 30px; | |
| } | |
| .simple-form-group { | |
| margin-bottom: 25px; | |
| } | |
| .simple-form-group label { | |
| display: block; | |
| color: #fff; | |
| font-size: 1rem; | |
| font-weight: 500; | |
| margin-bottom: 8px; | |
| } | |
| .simple-form-input, | |
| .simple-form-textarea { | |
| width: 100%; | |
| padding: 15px 20px; | |
| background: rgba(5,15,35,0.7); | |
| border: 1px solid rgba(0,240,255,0.2); | |
| border-radius: 16px; | |
| color: #fff; | |
| font-size: 1rem; | |
| transition: all 0.3s; | |
| } | |
| .simple-form-input:focus, | |
| .simple-form-textarea:focus { | |
| outline: none; | |
| border-color: #00f0ff; | |
| box-shadow: 0 0 0 3px rgba(0,240,255,0.1); | |
| } | |
| .simple-form-textarea { | |
| min-height: 120px; | |
| resize: vertical; | |
| } | |
| .simple-form-row { | |
| display: grid; | |
| grid-template-columns: 1fr 1fr; | |
| gap: 20px; | |
| } | |
| .simple-form-dropdown { | |
| background: rgba(5,15,35,0.7); | |
| border: 1px solid rgba(0,240,255,0.2); | |
| border-radius: 16px; | |
| } | |
| .simple-form-dropdown .Select-control { | |
| background: transparent; | |
| border: none; | |
| } | |
| .simple-form-dropdown .Select-value-label { | |
| color: #fff ; | |
| } | |
| .simple-form-button { | |
| width: 100%; | |
| background: linear-gradient(135deg, #00f0ff, #8be9ff); | |
| color: #010214; | |
| border: none; | |
| border-radius: 16px; | |
| padding: 16px; | |
| font-size: 1.1rem; | |
| font-weight: 600; | |
| cursor: pointer; | |
| transition: all 0.3s; | |
| margin-top: 20px; | |
| } | |
| .simple-form-button:hover { | |
| transform: translateY(-2px); | |
| box-shadow: 0 15px 30px rgba(0,240,255,0.3); | |
| } | |
| .stars-container { | |
| display: flex; | |
| gap: 8px; | |
| font-size: 2.2rem; | |
| cursor: pointer; | |
| justify-content: center; | |
| padding: 10px 0; | |
| } | |
| .star { | |
| color: rgba(0,240,255,0.3); | |
| transition: all 0.2s ease; | |
| cursor: pointer; | |
| } | |
| .star.active { | |
| color: #00f0ff; | |
| text-shadow: 0 0 20px #00f0ff; | |
| } | |
| .star:hover { | |
| transform: scale(1.2); | |
| color: #8be9ff; | |
| } | |
| .simple-message { | |
| margin-top: 20px; | |
| padding: 15px; | |
| border-radius: 16px; | |
| display: flex; | |
| align-items: center; | |
| gap: 10px; | |
| } | |
| .simple-message.success { | |
| background: rgba(124,255,178,0.1); | |
| border: 1px solid #7cffb2; | |
| color: #7cffb2; | |
| } | |
| .simple-message.error { | |
| background: rgba(255,123,123,0.1); | |
| border: 1px solid #ff7b7b; | |
| color: #ff7b7b; | |
| } | |
| .premium-status-card { | |
| text-align: center; | |
| padding: 50px; | |
| border-radius: 30px; | |
| background: linear-gradient(145deg, rgba(15,35,70,0.6), rgba(10,25,55,0.4)); | |
| border: 1px solid rgba(0,240,255,0.15); | |
| } | |
| .premium-status-card.pending { | |
| border-color: #ffc107; | |
| } | |
| .premium-status-card.approved { | |
| border-color: #7cffb2; | |
| } | |
| .premium-status-icon { | |
| font-size: 4rem; | |
| margin-bottom: 20px; | |
| color: #00f0ff; | |
| } | |
| .premium-status-title { | |
| color: #fff; | |
| font-size: 1.8rem; | |
| margin: 0 0 10px 0; | |
| } | |
| .premium-status-text { | |
| color: #b8dff0; | |
| font-size: 1rem; | |
| } | |
| .premium-cta-card { | |
| text-align: center; | |
| padding: 60px; | |
| background: linear-gradient(145deg, rgba(15,35,70,0.6), rgba(10,25,55,0.4)); | |
| border-radius: 30px; | |
| border: 1px solid rgba(0,240,255,0.15); | |
| } | |
| .premium-cta-title { | |
| color: #fff; | |
| font-size: 2rem; | |
| margin: 0 0 15px 0; | |
| } | |
| .premium-cta-text { | |
| color: #b8dff0; | |
| font-size: 1.1rem; | |
| margin-bottom: 30px; | |
| } | |
| .premium-cta-button { | |
| background: transparent; | |
| border: 2px solid #00f0ff; | |
| color: #fff; | |
| padding: 15px 50px; | |
| border-radius: 40px; | |
| font-size: 1.1rem; | |
| font-weight: 600; | |
| cursor: pointer; | |
| transition: all 0.3s; | |
| } | |
| .premium-cta-button:hover { | |
| background: #00f0ff; | |
| color: #010214; | |
| transform: translateY(-2px); | |
| box-shadow: 0 15px 30px rgba(0,240,255,0.3); | |
| } | |
| /* ====================== PAGE MON SUIVI ====================== */ | |
| .premium-dashboard { | |
| max-width: 1400px; | |
| margin: 140px auto 60px auto; | |
| padding: 0 30px; | |
| } | |
| .premium-header { | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| margin-bottom: 40px; | |
| padding: 25px 30px; | |
| background: linear-gradient(145deg, rgba(15,35,70,0.5), rgba(10,25,55,0.3)); | |
| border-radius: 30px; | |
| border: 1px solid rgba(0,240,255,0.1); | |
| backdrop-filter: blur(10px); | |
| } | |
| .premium-title { | |
| font-size: 2rem; | |
| font-weight: 600; | |
| background: linear-gradient(135deg, #fff, #8be9ff); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| margin: 0; | |
| } | |
| .premium-welcome { | |
| color: #8be9ff; | |
| font-size: 0.95rem; | |
| margin-top: 5px; | |
| } | |
| .header-right { | |
| display: flex; | |
| align-items: center; | |
| gap: 20px; | |
| } | |
| .premium-date { | |
| color: #b8dff0; | |
| font-size: 0.9rem; | |
| padding: 8px 16px; | |
| background: rgba(0,240,255,0.05); | |
| border-radius: 30px; | |
| border: 1px solid rgba(0,240,255,0.1); | |
| } | |
| .premium-kpi-grid { | |
| display: grid; | |
| grid-template-columns: repeat(4, 1fr); | |
| gap: 25px; | |
| margin-bottom: 40px; | |
| } | |
| .kpi-card { | |
| background: linear-gradient(145deg, rgba(15,35,70,0.5), rgba(10,25,55,0.3)); | |
| border-radius: 25px; | |
| padding: 25px; | |
| display: flex; | |
| align-items: center; | |
| gap: 20px; | |
| border: 1px solid rgba(0,240,255,0.1); | |
| backdrop-filter: blur(10px); | |
| transition: all 0.4s ease; | |
| } | |
| .kpi-card:hover { | |
| transform: translateY(-5px); | |
| border-color: #00f0ff; | |
| box-shadow: 0 20px 40px rgba(0,240,255,0.15); | |
| } | |
| .kpi-icon { | |
| font-size: 2.5rem; | |
| color: #00f0ff; | |
| } | |
| .kpi-content { | |
| flex: 1; | |
| } | |
| .kpi-label { | |
| color: #b8dff0; | |
| font-size: 0.85rem; | |
| text-transform: uppercase; | |
| letter-spacing: 1px; | |
| display: block; | |
| margin-bottom: 5px; | |
| } | |
| .kpi-value { | |
| font-size: 1.8rem; | |
| font-weight: 700; | |
| color: #fff; | |
| display: block; | |
| line-height: 1.2; | |
| } | |
| .kpi-value.positive { | |
| color: #7cffb2; | |
| } | |
| .kpi-value.negative { | |
| color: #ff7b7b; | |
| } | |
| .kpi-detail { | |
| color: #8be9ff; | |
| font-size: 0.85rem; | |
| margin-top: 5px; | |
| display: block; | |
| } | |
| .premium-chart-container { | |
| background: linear-gradient(145deg, rgba(15,35,70,0.5), rgba(10,25,55,0.3)); | |
| border-radius: 30px; | |
| padding: 30px; | |
| margin-bottom: 40px; | |
| border: 1px solid rgba(0,240,255,0.1); | |
| backdrop-filter: blur(10px); | |
| } | |
| .chart-header { | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| margin-bottom: 20px; | |
| } | |
| .chart-title { | |
| color: #fff; | |
| font-size: 1.3rem; | |
| font-weight: 500; | |
| margin: 0; | |
| } | |
| .premium-chart { | |
| height: 350px; | |
| } | |
| .premium-trades-section { | |
| background: linear-gradient(145deg, rgba(15,35,70,0.5), rgba(10,25,55,0.3)); | |
| border-radius: 30px; | |
| padding: 30px; | |
| border: 1px solid rgba(0,240,255,0.1); | |
| backdrop-filter: blur(10px); | |
| margin-top: 30px; | |
| } | |
| .section-header { | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| margin-bottom: 25px; | |
| } | |
| .section-title { | |
| color: #fff; | |
| font-size: 1.3rem; | |
| font-weight: 500; | |
| margin: 0; | |
| } | |
| .trades-summary { | |
| display: flex; | |
| gap: 12px; | |
| } | |
| .summary-badge { | |
| padding: 6px 15px; | |
| background: rgba(0,240,255,0.08); | |
| border-radius: 25px; | |
| color: #b8dff0; | |
| font-size: 0.9rem; | |
| border: 1px solid rgba(0,240,255,0.15); | |
| } | |
| .summary-badge.positive { | |
| background: rgba(124,255,178,0.08); | |
| color: #7cffb2; | |
| border-color: rgba(124,255,178,0.3); | |
| } | |
| .trades-table-container { | |
| overflow-x: auto; | |
| border-radius: 20px; | |
| } | |
| .premium-table { | |
| width: 100%; | |
| border-collapse: collapse; | |
| } | |
| .premium-table th { | |
| text-align: left; | |
| padding: 15px 15px; | |
| color: #8be9ff; | |
| font-weight: 500; | |
| font-size: 0.9rem; | |
| background: rgba(0,240,255,0.05); | |
| border-bottom: 1px solid rgba(0,240,255,0.15); | |
| } | |
| .premium-table td { | |
| padding: 12px 15px; | |
| border-bottom: 1px solid rgba(0,240,255,0.05); | |
| color: #e0e0e0; | |
| } | |
| .premium-table tr:hover td { | |
| background: rgba(0,240,255,0.02); | |
| } | |
| .trade-symbol { | |
| font-weight: 600; | |
| color: #00f0ff; | |
| background: rgba(0,240,255,0.1); | |
| padding: 4px 12px; | |
| border-radius: 20px; | |
| display: inline-block; | |
| } | |
| .trade-pnl.positive { | |
| color: #7cffb2; | |
| font-weight: 600; | |
| } | |
| .trade-pnl.negative { | |
| color: #ff7b7b; | |
| font-weight: 600; | |
| } | |
| .trade-status { | |
| display: inline-block; | |
| padding: 4px 12px; | |
| border-radius: 20px; | |
| font-size: 0.85rem; | |
| } | |
| .trade-status.ouvert { | |
| background: rgba(0,240,255,0.1); | |
| color: #00f0ff; | |
| border: 1px solid rgba(0,240,255,0.3); | |
| } | |
| .trade-status.fermé { | |
| background: rgba(160,176,192,0.1); | |
| color: #a0b0c0; | |
| border: 1px solid rgba(160,176,192,0.3); | |
| } | |
| .empty-premium { | |
| text-align: center; | |
| padding: 60px; | |
| color: #b8dff0; | |
| background: rgba(0,240,255,0.02); | |
| border-radius: 20px; | |
| border: 1px dashed rgba(0,240,255,0.2); | |
| font-size: 1.1rem; | |
| } | |
| /* Responsive */ | |
| @media (max-width: 1200px) { | |
| .premium-cards-grid { | |
| grid-template-columns: 1fr; | |
| } | |
| .premium-kpi-grid, | |
| .premium-stats-grid { | |
| grid-template-columns: repeat(2, 1fr); | |
| } | |
| } | |
| @media (max-width: 700px) { | |
| .testimonials-premium-page, | |
| .premium-dashboard { | |
| padding: 0 20px; | |
| margin-top: 120px; | |
| } | |
| .hero-premium-title { | |
| font-size: 2.5rem; | |
| } | |
| .premium-kpi-grid, | |
| .premium-stats-grid { | |
| grid-template-columns: 1fr; | |
| } | |
| .simple-form-row { | |
| grid-template-columns: 1fr; | |
| } | |
| .premium-card-header { | |
| flex-direction: column; | |
| text-align: center; | |
| } | |
| .premium-card-rating { | |
| margin-left: 0; | |
| } | |
| .premium-header { | |
| flex-direction: column; | |
| text-align: center; | |
| gap: 15px; | |
| } | |
| .section-header { | |
| flex-direction: column; | |
| gap: 15px; | |
| align-items: flex-start; | |
| } | |
| .trades-summary { | |
| flex-wrap: wrap; | |
| } | |
| } | |
| /* ====================== HOME PREDICTIONS ====================== */ | |
| .home-pred-section { | |
| padding: 60px 30px 80px; | |
| position: relative; | |
| z-index: 10; | |
| overflow: visible; | |
| max-width: 1500px; | |
| margin: 0 auto; | |
| } | |
| .home-pred-header { | |
| text-align: center; | |
| margin-bottom: 48px; | |
| } | |
| .home-pred-live-badge { | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 10px; | |
| background: rgba(0,240,255,0.07); | |
| border: 1px solid rgba(0,240,255,0.18); | |
| border-radius: 50px; | |
| padding: 6px 18px; | |
| font-size: 0.72rem; | |
| font-weight: 700; | |
| color: #00f0ff; | |
| letter-spacing: 0.1em; | |
| margin-bottom: 20px; | |
| } | |
| .home-pred-pulse { | |
| width: 8px; | |
| height: 8px; | |
| border-radius: 50%; | |
| background: #00f0ff; | |
| box-shadow: 0 0 8px #00f0ff; | |
| animation: homePulse 1.6s infinite; | |
| flex-shrink: 0; | |
| } | |
| @keyframes homePulse { | |
| 0%, 100% { opacity: 1; transform: scale(1); } | |
| 50% { opacity: 0.4; transform: scale(0.7); } | |
| } | |
| .home-pred-title { | |
| font-size: 2.4rem; | |
| font-weight: 900; | |
| color: #eaf6ff; | |
| margin: 0 0 12px; | |
| } | |
| .home-pred-subtitle { | |
| font-size: 1rem; | |
| color: #8be9ff; | |
| margin: 0; | |
| max-width: 600px; | |
| margin: 0 auto; | |
| line-height: 1.6; | |
| } | |
| .home-pred-loading { | |
| text-align: center; | |
| color: #7a8aaa; | |
| padding: 60px 20px; | |
| font-style: italic; | |
| } | |
| /* ── Grid ── */ | |
| .home-pred-grid { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); | |
| gap: 20px; | |
| overflow: visible; | |
| } | |
| /* ── Card ── */ | |
| .home-pred-card { | |
| background: linear-gradient(145deg, rgba(10,25,50,0.55), rgba(5,15,35,0.4)); | |
| border: 1px solid rgba(0,240,255,0.1); | |
| border-radius: 20px; | |
| padding: 24px; | |
| display: flex; | |
| flex-direction: column; | |
| gap: 16px; | |
| backdrop-filter: blur(12px); | |
| transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s; | |
| position: relative; | |
| overflow: visible; | |
| } | |
| .home-pred-card::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; left: 0; right: 0; | |
| height: 2px; | |
| background: var(--hpc-line, rgba(0,240,255,0.3)); | |
| border-radius: 20px 20px 0 0; | |
| } | |
| .home-pred-card:hover { | |
| transform: translateY(-6px); | |
| border-color: var(--hpc-border, rgba(0,240,255,0.3)); | |
| box-shadow: 0 16px 50px rgba(0,0,0,0.4), 0 0 24px var(--hpc-glow, rgba(0,240,255,0.08)); | |
| } | |
| .home-pred-buy { --hpc-line: rgba(0,255,135,0.5); --hpc-border: rgba(0,255,135,0.3); --hpc-glow: rgba(0,255,135,0.1); } | |
| .home-pred-sell { --hpc-line: rgba(255,77,109,0.5); --hpc-border: rgba(255,77,109,0.3); --hpc-glow: rgba(255,77,109,0.1); } | |
| .home-pred-watch{ --hpc-line: rgba(0,240,255,0.4); --hpc-border: rgba(0,240,255,0.3); --hpc-glow: rgba(0,240,255,0.08); } | |
| /* ── Card top row ── */ | |
| .home-pred-top { | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: flex-start; | |
| } | |
| .home-pred-ticker { | |
| font-family: 'SF Mono', 'Monaco', 'Consolas', monospace; | |
| font-size: 1.65rem; | |
| font-weight: 900; | |
| color: #eaf6ff; | |
| line-height: 1; | |
| } | |
| .home-pred-company { | |
| font-size: 0.75rem; | |
| color: #8be9ff; | |
| margin-top: 4px; | |
| } | |
| /* ── Recommendation badge ── */ | |
| .home-pred-rec { | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 6px; | |
| padding: 5px 12px; | |
| border-radius: 8px; | |
| font-size: 0.76rem; | |
| font-weight: 800; | |
| letter-spacing: 0.06em; | |
| white-space: nowrap; | |
| } | |
| .home-pred-rec-buy { background: rgba(0,255,135,0.12); border: 1px solid rgba(0,255,135,0.4); color: #00ff87; } | |
| .home-pred-rec-sell { background: rgba(255,77,109,0.12); border: 1px solid rgba(255,77,109,0.4); color: #ff4d6d; } | |
| .home-pred-rec-watch { background: rgba(0,240,255,0.08); border: 1px solid rgba(0,240,255,0.3); color: #00f0ff; } | |
| /* ── Prices block ── */ | |
| .home-pred-prices { | |
| display: flex; | |
| align-items: center; | |
| gap: 10px; | |
| background: rgba(255,255,255,0.03); | |
| border-radius: 12px; | |
| padding: 10px 14px; | |
| flex-wrap: wrap; | |
| } | |
| .home-pred-price-col { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 3px; | |
| } | |
| .home-pred-price-lbl { | |
| font-size: 0.62rem; | |
| color: #7a8aaa; | |
| text-transform: uppercase; | |
| letter-spacing: 0.07em; | |
| } | |
| .home-pred-price-val { | |
| font-family: 'SF Mono', 'Monaco', monospace; | |
| font-size: 1rem; | |
| font-weight: 700; | |
| color: #eaf6ff; | |
| } | |
| .home-pred-chg-pos { font-family: monospace; font-weight: 700; color: #00ff87; font-size: 0.88rem; background: rgba(0,255,135,0.1); border-radius: 6px; padding: 2px 8px; margin-left: auto; } | |
| .home-pred-chg-neg { font-family: monospace; font-weight: 700; color: #ff4d6d; font-size: 0.88rem; background: rgba(255,77,109,0.1); border-radius: 6px; padding: 2px 8px; margin-left: auto; } | |
| .home-pred-chg-neutral { font-family: monospace; font-weight: 700; color: #8be9ff; font-size: 0.88rem; background: rgba(0,240,255,0.06); border-radius: 6px; padding: 2px 8px; margin-left: auto; } | |
| /* ── Validity ── */ | |
| .home-pred-validity { | |
| display: flex; | |
| align-items: center; | |
| gap: 7px; | |
| font-size: 0.72rem; | |
| color: #b8dff0; | |
| flex-wrap: wrap; | |
| } | |
| .home-pred-validity .fa-clock { color: #00f0ff; opacity: 0.6; font-size: 0.68rem; } | |
| .home-pred-horizon { | |
| margin-left: auto; | |
| font-size: 0.65rem; | |
| color: rgba(0,240,255,0.4); | |
| font-style: italic; | |
| } | |
| /* ── Détail button ── */ | |
| .home-pred-btn { | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| gap: 8px; | |
| padding: 11px; | |
| background: rgba(0,240,255,0.07); | |
| border: 1px solid rgba(0,240,255,0.22); | |
| border-radius: 10px; | |
| color: #00f0ff; | |
| font-size: 0.83rem; | |
| font-weight: 700; | |
| cursor: pointer; | |
| text-decoration: none; | |
| transition: background 0.2s, box-shadow 0.2s, transform 0.15s; | |
| font-family: inherit; | |
| margin-top: auto; | |
| } | |
| .home-pred-btn:hover { | |
| background: rgba(0,240,255,0.16); | |
| box-shadow: 0 0 20px rgba(0,240,255,0.2); | |
| color: #00f0ff; | |
| text-decoration: none; | |
| transform: translateY(-1px); | |
| } | |
| /* ── Tooltip hover notification ── */ | |
| .home-pred-tooltip { | |
| position: absolute; | |
| width: 300px; | |
| background: rgba(2, 6, 22, 1); | |
| backdrop-filter: blur(20px); | |
| border: 1.5px solid rgba(0, 240, 255, 0.35); | |
| border-radius: 14px; | |
| padding: 16px 18px; | |
| opacity: 0; | |
| pointer-events: none; | |
| transition: opacity 0.15s ease; | |
| z-index: 9999; | |
| box-shadow: 0 8px 32px rgba(0,0,0,0.9), 0 0 20px rgba(0,240,255,0.12); | |
| } | |
| .home-pred-buy .home-pred-tooltip { border-color: rgba(0, 255, 135, 0.35); box-shadow: 0 8px 32px rgba(0,0,0,0.9), 0 0 20px rgba(0,255,135,0.08); } | |
| .home-pred-sell .home-pred-tooltip { border-color: rgba(255, 77, 109, 0.35); box-shadow: 0 8px 32px rgba(0,0,0,0.9), 0 0 20px rgba(255,77,109,0.08); } | |
| .home-pred-watch .home-pred-tooltip { border-color: rgba(240, 192, 64, 0.35); box-shadow: 0 8px 32px rgba(0,0,0,0.9), 0 0 20px rgba(240,192,64,0.08); } | |
| /* opacity géré par tooltip.js */ | |
| .home-pred-tooltip-inner { | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| text-align: center; | |
| gap: 6px; | |
| width: 100%; | |
| } | |
| .home-pred-tooltip-title { | |
| font-size: 0.92rem; | |
| font-weight: 800; | |
| letter-spacing: 0.03em; | |
| text-transform: uppercase; | |
| } | |
| .home-pred-tooltip-company { | |
| font-size: 0.68rem; | |
| color: rgba(180, 210, 255, 0.45); | |
| letter-spacing: 0.08em; | |
| text-transform: uppercase; | |
| margin-bottom: 2px; | |
| } | |
| .home-pred-tooltip-body { | |
| font-size: 0.82rem; | |
| color: rgba(200, 225, 255, 0.82); | |
| line-height: 1.55; | |
| margin: 0; | |
| } | |
| .home-pred-tooltip-prices { | |
| display: flex; | |
| align-items: center; | |
| gap: 6px; | |
| font-size: 0.75rem; | |
| background: rgba(0, 240, 255, 0.06); | |
| border: 1px solid rgba(0, 240, 255, 0.1); | |
| border-radius: 8px; | |
| padding: 6px 10px; | |
| width: 100%; | |
| justify-content: center; | |
| flex-wrap: wrap; | |
| } | |
| .home-pred-tooltip-price-item { | |
| color: rgba(200, 230, 255, 0.85); | |
| white-space: nowrap; | |
| } | |
| .home-pred-tooltip-footer { | |
| margin-top: 10px; | |
| font-size: 0.68rem; | |
| color: rgba(0, 240, 255, 0.5); | |
| display: flex; | |
| align-items: center; | |
| gap: 5px; | |
| border-top: 1px solid rgba(0, 240, 255, 0.1); | |
| padding-top: 8px; | |
| width: 100%; | |
| justify-content: center; | |
| } | |
| @media (max-width: 768px) { | |
| .home-pred-section { padding: 40px 16px 60px; } | |
| .home-pred-title { font-size: 1.8rem; } | |
| .home-pred-grid { grid-template-columns: 1fr; } | |
| } | |
| /* ── Login wall (prédictions non connecté) ── */ | |
| .home-pred-login-wall { | |
| grid-column: 1 / -1; | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| justify-content: center; | |
| gap: 18px; | |
| padding: 60px 24px; | |
| background: rgba(255,255,255,0.02); | |
| border: 1px dashed rgba(0,240,255,0.2); | |
| border-radius: 20px; | |
| text-align: center; | |
| } | |
| .home-pred-login-icon { | |
| width: 64px; | |
| height: 64px; | |
| border-radius: 50%; | |
| background: rgba(0,240,255,0.08); | |
| border: 1px solid rgba(0,240,255,0.25); | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| font-size: 1.6rem; | |
| color: #00f0ff; | |
| } | |
| .home-pred-login-title { | |
| font-size: 1.3rem; | |
| font-weight: 800; | |
| color: #eaf6ff; | |
| margin: 0; | |
| } | |
| .home-pred-login-sub { | |
| font-size: 0.88rem; | |
| color: #7a8aaa; | |
| max-width: 420px; | |
| margin: 0; | |
| line-height: 1.6; | |
| } | |
| .home-pred-login-btns { | |
| display: flex; | |
| gap: 14px; | |
| flex-wrap: wrap; | |
| justify-content: center; | |
| margin-top: 6px; | |
| } | |
| .home-pred-login-btn-primary { | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 8px; | |
| padding: 12px 26px; | |
| background: linear-gradient(135deg, #00f0ff, #0097b2); | |
| border-radius: 10px; | |
| color: #010214; | |
| font-weight: 700; | |
| font-size: 0.88rem; | |
| text-decoration: none; | |
| transition: all 0.2s; | |
| } | |
| .home-pred-login-btn-primary:hover { | |
| transform: translateY(-2px); | |
| box-shadow: 0 6px 20px rgba(0,240,255,0.35); | |
| } | |
| .home-pred-login-btn-ghost { | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 8px; | |
| padding: 12px 26px; | |
| background: transparent; | |
| border: 1px solid rgba(0,240,255,0.35); | |
| border-radius: 10px; | |
| color: #b8dff0; | |
| font-weight: 600; | |
| font-size: 0.88rem; | |
| text-decoration: none; | |
| transition: all 0.2s; | |
| } | |
| .home-pred-login-btn-ghost:hover { | |
| background: rgba(0,240,255,0.08); | |
| color: #eaf6ff; | |
| } | |
| /* ============================================================ | |
| HOME — MODE TOGGLE (Actualités IA / Modèle LSTM) | |
| ============================================================ */ | |
| .home-mode-bar { | |
| display: flex; | |
| justify-content: center; | |
| gap: 10px; | |
| margin: 0 0 36px; | |
| flex-wrap: wrap; | |
| } | |
| .home-mode-btn { | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 8px; | |
| padding: 10px 24px; | |
| border: 1px solid rgba(0, 240, 255, 0.18); | |
| border-radius: 50px; | |
| background: rgba(0, 240, 255, 0.04); | |
| color: rgba(184, 223, 240, 0.65); | |
| font-size: 13.5px; | |
| font-weight: 600; | |
| font-family: 'Inter', sans-serif; | |
| letter-spacing: 0.3px; | |
| cursor: pointer; | |
| transition: all 0.22s ease; | |
| } | |
| .home-mode-btn:hover { | |
| border-color: rgba(0, 240, 255, 0.45); | |
| color: #eaf6ff; | |
| background: rgba(0, 240, 255, 0.08); | |
| } | |
| .home-mode-btn.home-mode-active { | |
| border-color: #00f0ff; | |
| color: #00f0ff; | |
| background: rgba(0, 240, 255, 0.1); | |
| box-shadow: 0 0 18px rgba(0, 240, 255, 0.18), | |
| inset 0 0 16px rgba(0, 240, 255, 0.04); | |
| text-shadow: 0 0 10px rgba(0, 240, 255, 0.45); | |
| } | |