@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');/* frontend/src/pages/HomePage.css */

.glass-card {
    background: var(--color-surface);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--color-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

/* PREMIUM POST CARD */
.premium-card {
    padding: 1.5rem;
}

.tag-pill {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(45, 212, 191, 0.2);
    color: var(--color-accent);
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s;
}

.tag-pill:hover {
    background: var(--color-accent);
    color: var(--color-bg);
}

.read-more-btn {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s;
}

.read-more-btn:hover {
    gap: 0.8rem;
}

.btn-discuss {
    background: var(--color-accent-gradient);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(45, 212, 191, 0.3);
    transition: transform 0.2s;
}

.btn-discuss:hover {
    transform: scale(1.05);
}

/* MOBILE SPECIFIC */
.mobile-layout {
    padding-bottom: 80px;
    /* Space for footer/actions */
}

.mobile-tab-btn {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-dim);
    transition: all 0.2s;
}

.mobile-tab-btn.active {
    background: var(--color-accent);
    color: var(--color-bg);
    box-shadow: 0 4px 10px rgba(45, 212, 191, 0.4);
}

/* FLOATING RIBBON UX */
.floating-ribbon {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    display: flex;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-ribbon:not(.open) {
    transform: translateY(-50%) translateX(calc(100% - 40px));
}

.ribbon-toggle {
    width: 40px;
    height: 80px;
    background: var(--color-accent);
    color: white;
    border-radius: 20px 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
}

.ribbon-content {
    width: 260px;
    background: var(--color-surface);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-right: none;
    border-radius: 20px 0 0 20px;
    padding: 1.5rem;
    max-height: 80vh;
    overflow-y: auto;
}

.ribbon-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-dim);
}

.ribbon-item {
    display: block;
    padding: 0.75rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.85rem;
    transition: all 0.2s;
}

.ribbon-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-accent);
}

/* TABS (Desktop) */
.tab {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-dim);
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.tab-active {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

/* KPI CHART CUSTOMS */
.kpi-radar-container {
    max-height: 200px;
}

.hero-announcement {
    background: linear-gradient(90deg, rgba(45, 212, 191, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
}

/* LUXURY EDITOR STYLES */
.luxury-editor {
    border: none !important;
    font-family: 'Outfit', 'Inter', sans-serif !important;
}

.luxury-editor .w-md-editor-toolbar {
    background: rgba(0, 0, 0, 0.4) !important;
    border-bottom: 1px solid rgba(45, 212, 191, 0.1) !important;
    padding: 0.5rem !important;
    backdrop-filter: blur(10px);
}

.luxury-editor .w-md-editor-toolbar ul li button {
    color: rgba(255, 255, 255, 0.5) !important;
    transition: all 0.2s;
}

.luxury-editor .w-md-editor-toolbar ul li button:hover {
    color: var(--color-accent) !important;
    background: rgba(45, 212, 191, 0.1) !important;
}

.luxury-editor .w-md-editor-content {
    background: transparent !important;
}

.luxury-editor .w-md-editor-text-pre>code,
.luxury-editor .w-md-editor-text-input {
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #e5e7eb !important;
}

.luxury-editor .w-md-editor-preview {
    background: rgba(0, 0, 0, 0.2) !important;
    box-shadow: inset 10px 0 30px rgba(0, 0, 0, 0.1);
}

.luxury-editor .wmde-markdown {
    background: transparent !important;
    color: #d1d5db !important;
}

@keyframes luxury-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(45, 212, 191, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(45, 212, 191, 0);
    }
}

.luxury-action-btn:hover {
    animation: luxury-pulse 2s infinite;
}/* frontend/src/index.css */
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
.pointer-events-none {
  pointer-events: none;
}
.pointer-events-auto {
  pointer-events: auto;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.inset-0 {
  inset: 0px;
}
.-right-2 {
  right: -0.5rem;
}
.-top-2 {
  top: -0.5rem;
}
.bottom-0 {
  bottom: 0px;
}
.bottom-6 {
  bottom: 1.5rem;
}
.left-0 {
  left: 0px;
}
.left-1\/2 {
  left: 50%;
}
.left-16 {
  left: 4rem;
}
.right-0 {
  right: 0px;
}
.right-2 {
  right: 0.5rem;
}
.top-0 {
  top: 0px;
}
.top-12 {
  top: 3rem;
}
.top-14 {
  top: 3.5rem;
}
.top-16 {
  top: 4rem;
}
.top-2 {
  top: 0.5rem;
}
.top-24 {
  top: 6rem;
}
.top-full {
  top: 100%;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
.z-\[100\] {
  z-index: 100;
}
.z-\[9999\] {
  z-index: 9999;
}
.col-span-2 {
  grid-column: span 2 / span 2;
}
.\!m-0 {
  margin: 0px !important;
}
.m-0 {
  margin: 0px;
}
.-mx-4 {
  margin-left: -1rem;
  margin-right: -1rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.\!mb-0 {
  margin-bottom: 0px !important;
}
.-ml-1 {
  margin-left: -0.25rem;
}
.-mt-1 {
  margin-top: -0.25rem;
}
.mb-0 {
  margin-bottom: 0px;
}
.mb-0\.5 {
  margin-bottom: 0.125rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-3 {
  margin-left: 0.75rem;
}
.ml-4 {
  margin-left: 1rem;
}
.ml-6 {
  margin-left: 1.5rem;
}
.ml-auto {
  margin-left: auto;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-4 {
  margin-right: 1rem;
}
.mt-0 {
  margin-top: 0px;
}
.mt-0\.5 {
  margin-top: 0.125rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-auto {
  margin-top: auto;
}
.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.line-clamp-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.aspect-square {
  aspect-ratio: 1 / 1;
}
.aspect-video {
  aspect-ratio: 16 / 9;
}
.\!h-auto {
  height: auto !important;
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-14 {
  height: 3.5rem;
}
.h-16 {
  height: 4rem;
}
.h-2 {
  height: 0.5rem;
}
.h-3 {
  height: 0.75rem;
}
.h-3\.5 {
  height: 0.875rem;
}
.h-32 {
  height: 8rem;
}
.h-4 {
  height: 1rem;
}
.h-48 {
  height: 12rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-64 {
  height: 16rem;
}
.h-7 {
  height: 1.75rem;
}
.h-8 {
  height: 2rem;
}
.h-9 {
  height: 2.25rem;
}
.h-\[14px\] {
  height: 14px;
}
.h-\[1px\] {
  height: 1px;
}
.h-\[calc\(100vh-250px\)\] {
  height: calc(100vh - 250px);
}
.h-full {
  height: 100%;
}
.h-px {
  height: 1px;
}
.h-screen {
  height: 100vh;
}
.max-h-\[90vh\] {
  max-height: 90vh;
}
.min-h-\[400px\] {
  min-height: 400px;
}
.min-h-\[50vh\] {
  min-height: 50vh;
}
.min-h-\[600px\] {
  min-height: 600px;
}
.min-h-\[70px\] {
  min-height: 70px;
}
.min-h-screen {
  min-height: 100vh;
}
.\!w-auto {
  width: auto !important;
}
.\!w-full {
  width: 100% !important;
}
.w-1 {
  width: 0.25rem;
}
.w-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-16 {
  width: 4rem;
}
.w-2 {
  width: 0.5rem;
}
.w-24 {
  width: 6rem;
}
.w-3 {
  width: 0.75rem;
}
.w-3\.5 {
  width: 0.875rem;
}
.w-4 {
  width: 1rem;
}
.w-40 {
  width: 10rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-7 {
  width: 1.75rem;
}
.w-8 {
  width: 2rem;
}
.w-\[14px\] {
  width: 14px;
}
.w-\[35\%\] {
  width: 35%;
}
.w-\[350px\] {
  width: 350px;
}
.w-\[85\%\] {
  width: 85%;
}
.w-\[90\%\] {
  width: 90%;
}
.w-auto {
  width: auto;
}
.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}
.w-full {
  width: 100%;
}
.\!min-w-0 {
  min-width: 0px !important;
}
.min-w-0 {
  min-width: 0px;
}
.min-w-\[70px\] {
  min-width: 70px;
}
.min-w-\[90px\] {
  min-width: 90px;
}
.min-w-full {
  min-width: 100%;
}
.\!max-w-4xl {
  max-width: 56rem !important;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-7xl {
  max-width: 80rem;
}
.max-w-\[120px\] {
  max-width: 120px;
}
.max-w-\[180px\] {
  max-width: 180px;
}
.max-w-\[280px\] {
  max-width: 280px;
}
.max-w-\[340px\] {
  max-width: 340px;
}
.max-w-\[350px\] {
  max-width: 350px;
}
.max-w-\[400px\] {
  max-width: 400px;
}
.max-w-\[90vw\] {
  max-width: 90vw;
}
.max-w-full {
  max-width: 100%;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-none {
  max-width: none;
}
.max-w-xs {
  max-width: 20rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.shrink-0 {
  flex-shrink: 0;
}
.flex-grow {
  flex-grow: 1;
}
.origin-top {
  transform-origin: top;
}
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-0 {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-full {
  --tw-translate-x: 100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-125 {
  --tw-scale-x: 1.25;
  --tw-scale-y: 1.25;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-75 {
  --tw-scale-x: .75;
  --tw-scale-y: .75;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-90 {
  --tw-scale-x: .9;
  --tw-scale-y: .9;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes pulse {
  50% {
    opacity: .5;
  }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.cursor-pointer {
  cursor: pointer;
}
.resize-none {
  resize: none;
}
.list-disc {
  list-style-type: disc;
}
.appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.items-stretch {
  align-items: stretch;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-0\.5 {
  gap: 0.125rem;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-1\.5 {
  gap: 0.375rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-x-2 {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.gap-x-3 {
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}
.gap-x-6 {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.gap-y-1 {
  row-gap: 0.25rem;
}
.space-x-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-12 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(3rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.divide-\[\#51ffe0\]\/10 > :not([hidden]) ~ :not([hidden]) {
  border-color: rgb(81 255 224 / 0.1);
}
.divide-gray-200 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-divide-opacity, 1));
}
.divide-gray-700 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-divide-opacity, 1));
}
.divide-gray-800\/30 > :not([hidden]) ~ :not([hidden]) {
  border-color: rgb(31 41 55 / 0.3);
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-visible {
  overflow: visible;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-y-auto {
  overflow-y: auto;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-ellipsis {
  text-overflow: ellipsis;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.whitespace-pre-wrap {
  white-space: pre-wrap;
}
.break-all {
  word-break: break-all;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-sm {
  border-radius: 0.125rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-t-lg {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.rounded-t-xl {
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}
.rounded-bl-xl {
  border-bottom-left-radius: 0.75rem;
}
.\!border-0 {
  border-width: 0px !important;
}
.border {
  border-width: 1px;
}
.border-0 {
  border-width: 0px;
}
.border-2 {
  border-width: 2px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-l-\[3px\] {
  border-left-width: 3px;
}
.border-r {
  border-right-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-t-2 {
  border-top-width: 2px;
}
.border-t-4 {
  border-top-width: 4px;
}
.border-dashed {
  border-style: dashed;
}
.\!border-gray-800 {
  --tw-border-opacity: 1 !important;
  border-color: rgb(31 41 55 / var(--tw-border-opacity, 1)) !important;
}
.\!border-red-500\/50 {
  border-color: rgb(239 68 68 / 0.5) !important;
}
.\!border-teal-500 {
  --tw-border-opacity: 1 !important;
  border-color: rgb(20 184 166 / var(--tw-border-opacity, 1)) !important;
}
.border-\[\#23304033\] {
  border-color: #23304033;
}
.border-\[\#333\] {
  --tw-border-opacity: 1;
  border-color: rgb(51 51 51 / var(--tw-border-opacity, 1));
}
.border-\[\#51ffe0\]\/10 {
  border-color: rgb(81 255 224 / 0.1);
}
.border-amber-500 {
  --tw-border-opacity: 1;
  border-color: rgb(245 158 11 / var(--tw-border-opacity, 1));
}
.border-blue-500 {
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}
.border-cyan-500\/30 {
  border-color: rgb(6 182 212 / 0.3);
}
.border-emerald-500 {
  --tw-border-opacity: 1;
  border-color: rgb(16 185 129 / var(--tw-border-opacity, 1));
}
.border-emerald-500\/30 {
  border-color: rgb(16 185 129 / 0.3);
}
.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.border-gray-400 {
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
}
.border-gray-500 {
  --tw-border-opacity: 1;
  border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
}
.border-gray-600 {
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
}
.border-gray-700 {
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}
.border-gray-700\/30 {
  border-color: rgb(55 65 81 / 0.3);
}
.border-gray-700\/50 {
  border-color: rgb(55 65 81 / 0.5);
}
.border-gray-800 {
  --tw-border-opacity: 1;
  border-color: rgb(31 41 55 / var(--tw-border-opacity, 1));
}
.border-gray-800\/50 {
  border-color: rgb(31 41 55 / 0.5);
}
.border-gray-800\/80 {
  border-color: rgb(31 41 55 / 0.8);
}
.border-green-500 {
  --tw-border-opacity: 1;
  border-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
}
.border-green-500\/20 {
  border-color: rgb(34 197 94 / 0.2);
}
.border-green-500\/50 {
  border-color: rgb(34 197 94 / 0.5);
}
.border-indigo-500\/30 {
  border-color: rgb(99 102 241 / 0.3);
}
.border-pink-500\/30 {
  border-color: rgb(236 72 153 / 0.3);
}
.border-purple-500 {
  --tw-border-opacity: 1;
  border-color: rgb(168 85 247 / var(--tw-border-opacity, 1));
}
.border-red-500 {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}
.border-red-500\/10 {
  border-color: rgb(239 68 68 / 0.1);
}
.border-red-500\/20 {
  border-color: rgb(239 68 68 / 0.2);
}
.border-red-500\/50 {
  border-color: rgb(239 68 68 / 0.5);
}
.border-red-700 {
  --tw-border-opacity: 1;
  border-color: rgb(185 28 28 / var(--tw-border-opacity, 1));
}
.border-red-900\/30 {
  border-color: rgb(127 29 29 / 0.3);
}
.border-red-900\/40 {
  border-color: rgb(127 29 29 / 0.4);
}
.border-red-900\/50 {
  border-color: rgb(127 29 29 / 0.5);
}
.border-rose-500 {
  --tw-border-opacity: 1;
  border-color: rgb(244 63 94 / var(--tw-border-opacity, 1));
}
.border-teal-200 {
  --tw-border-opacity: 1;
  border-color: rgb(153 246 228 / var(--tw-border-opacity, 1));
}
.border-teal-400 {
  --tw-border-opacity: 1;
  border-color: rgb(45 212 191 / var(--tw-border-opacity, 1));
}
.border-teal-500 {
  --tw-border-opacity: 1;
  border-color: rgb(20 184 166 / var(--tw-border-opacity, 1));
}
.border-teal-500\/10 {
  border-color: rgb(20 184 166 / 0.1);
}
.border-teal-500\/15 {
  border-color: rgb(20 184 166 / 0.15);
}
.border-teal-500\/20 {
  border-color: rgb(20 184 166 / 0.2);
}
.border-teal-500\/30 {
  border-color: rgb(20 184 166 / 0.3);
}
.border-teal-500\/50 {
  border-color: rgb(20 184 166 / 0.5);
}
.border-teal-700 {
  --tw-border-opacity: 1;
  border-color: rgb(15 118 110 / var(--tw-border-opacity, 1));
}
.border-transparent {
  border-color: transparent;
}
.border-violet-500\/30 {
  border-color: rgb(139 92 246 / 0.3);
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-white\/10 {
  border-color: rgb(255 255 255 / 0.1);
}
.border-white\/20 {
  border-color: rgb(255 255 255 / 0.2);
}
.border-white\/5 {
  border-color: rgb(255 255 255 / 0.05);
}
.border-white\/\[0\.06\] {
  border-color: rgb(255 255 255 / 0.06);
}
.border-yellow-500\/50 {
  border-color: rgb(234 179 8 / 0.5);
}
.border-t-teal-500 {
  --tw-border-opacity: 1;
  border-top-color: rgb(20 184 166 / var(--tw-border-opacity, 1));
}
.\!bg-gray-800\/50 {
  background-color: rgb(31 41 55 / 0.5) !important;
}
.\!bg-red-600\/20 {
  background-color: rgb(220 38 38 / 0.2) !important;
}
.\!bg-teal-500 {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(20 184 166 / var(--tw-bg-opacity, 1)) !important;
}
.\!bg-transparent {
  background-color: transparent !important;
}
.\!bg-white\/5 {
  background-color: rgb(255 255 255 / 0.05) !important;
}
.bg-\[\#0d1117\]\/60 {
  background-color: rgb(13 17 23 / 0.6);
}
.bg-\[\#0f1623\]\/95 {
  background-color: rgb(15 22 35 / 0.95);
}
.bg-\[\#111827\] {
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
.bg-\[\#141d26\] {
  --tw-bg-opacity: 1;
  background-color: rgb(20 29 38 / var(--tw-bg-opacity, 1));
}
.bg-\[\#1a2332\] {
  --tw-bg-opacity: 1;
  background-color: rgb(26 35 50 / var(--tw-bg-opacity, 1));
}
.bg-\[\#1e293b\]\/95 {
  background-color: rgb(30 41 59 / 0.95);
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-black\/40 {
  background-color: rgb(0 0 0 / 0.4);
}
.bg-black\/60 {
  background-color: rgb(0 0 0 / 0.6);
}
.bg-black\/70 {
  background-color: rgb(0 0 0 / 0.7);
}
.bg-blue-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.bg-blue-900\/30 {
  background-color: rgb(30 58 138 / 0.3);
}
.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.bg-gray-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
}
.bg-gray-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
.bg-gray-700\/50 {
  background-color: rgb(55 65 81 / 0.5);
}
.bg-gray-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
.bg-gray-800\/30 {
  background-color: rgb(31 41 55 / 0.3);
}
.bg-gray-800\/40 {
  background-color: rgb(31 41 55 / 0.4);
}
.bg-gray-800\/50 {
  background-color: rgb(31 41 55 / 0.5);
}
.bg-gray-800\/60 {
  background-color: rgb(31 41 55 / 0.6);
}
.bg-gray-800\/80 {
  background-color: rgb(31 41 55 / 0.8);
}
.bg-gray-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
.bg-gray-900\/30 {
  background-color: rgb(17 24 39 / 0.3);
}
.bg-gray-900\/50 {
  background-color: rgb(17 24 39 / 0.5);
}
.bg-gray-900\/60 {
  background-color: rgb(17 24 39 / 0.6);
}
.bg-gray-950\/20 {
  background-color: rgb(3 7 18 / 0.2);
}
.bg-gray-950\/30 {
  background-color: rgb(3 7 18 / 0.3);
}
.bg-gray-950\/40 {
  background-color: rgb(3 7 18 / 0.4);
}
.bg-gray-950\/50 {
  background-color: rgb(3 7 18 / 0.5);
}
.bg-green-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}
.bg-green-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}
.bg-green-500\/10 {
  background-color: rgb(34 197 94 / 0.1);
}
.bg-green-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}
.bg-green-600\/20 {
  background-color: rgb(22 163 74 / 0.2);
}
.bg-green-900\/10 {
  background-color: rgb(20 83 45 / 0.1);
}
.bg-green-900\/30 {
  background-color: rgb(20 83 45 / 0.3);
}
.bg-indigo-500\/50 {
  background-color: rgb(99 102 241 / 0.5);
}
.bg-orange-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1));
}
.bg-orange-900\/30 {
  background-color: rgb(124 45 18 / 0.3);
}
.bg-purple-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(147 51 234 / var(--tw-bg-opacity, 1));
}
.bg-purple-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(88 28 135 / var(--tw-bg-opacity, 1));
}
.bg-purple-900\/30 {
  background-color: rgb(88 28 135 / 0.3);
}
.bg-red-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
.bg-red-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.bg-red-500\/10 {
  background-color: rgb(239 68 68 / 0.1);
}
.bg-red-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}
.bg-red-600\/20 {
  background-color: rgb(220 38 38 / 0.2);
}
.bg-red-900\/10 {
  background-color: rgb(127 29 29 / 0.1);
}
.bg-red-900\/20 {
  background-color: rgb(127 29 29 / 0.2);
}
.bg-red-900\/30 {
  background-color: rgb(127 29 29 / 0.3);
}
.bg-red-900\/40 {
  background-color: rgb(127 29 29 / 0.4);
}
.bg-red-900\/50 {
  background-color: rgb(127 29 29 / 0.5);
}
.bg-slate-800\/80 {
  background-color: rgb(30 41 59 / 0.8);
}
.bg-slate-900\/90 {
  background-color: rgb(15 23 42 / 0.9);
}
.bg-teal-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(45 212 191 / var(--tw-bg-opacity, 1));
}
.bg-teal-400\/30 {
  background-color: rgb(45 212 191 / 0.3);
}
.bg-teal-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(20 184 166 / var(--tw-bg-opacity, 1));
}
.bg-teal-500\/10 {
  background-color: rgb(20 184 166 / 0.1);
}
.bg-teal-500\/20 {
  background-color: rgb(20 184 166 / 0.2);
}
.bg-teal-500\/5 {
  background-color: rgb(20 184 166 / 0.05);
}
.bg-teal-500\/90 {
  background-color: rgb(20 184 166 / 0.9);
}
.bg-teal-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(13 148 136 / var(--tw-bg-opacity, 1));
}
.bg-teal-600\/20 {
  background-color: rgb(13 148 136 / 0.2);
}
.bg-teal-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(19 78 74 / var(--tw-bg-opacity, 1));
}
.bg-teal-900\/50 {
  background-color: rgb(19 78 74 / 0.5);
}
.bg-transparent {
  background-color: transparent;
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/10 {
  background-color: rgb(255 255 255 / 0.1);
}
.bg-white\/5 {
  background-color: rgb(255 255 255 / 0.05);
}
.bg-white\/\[0\.03\] {
  background-color: rgb(255 255 255 / 0.03);
}
.bg-yellow-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 240 138 / var(--tw-bg-opacity, 1));
}
.bg-yellow-600\/20 {
  background-color: rgb(202 138 4 / 0.2);
}
.bg-yellow-900\/30 {
  background-color: rgb(113 63 18 / 0.3);
}
.bg-opacity-40 {
  --tw-bg-opacity: 0.4;
}
.\!bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important;
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.from-black\/80 {
  --tw-gradient-from: rgb(0 0 0 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-gray-800 {
  --tw-gradient-from: #1f2937 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(31 41 55 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-gray-900\/40 {
  --tw-gradient-from: rgb(17 24 39 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(17 24 39 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-gray-900\/60 {
  --tw-gradient-from: rgb(17 24 39 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(17 24 39 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600 {
  --tw-gradient-from: #9333ea var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-red-900 {
  --tw-gradient-from: #7f1d1d var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(127 29 29 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-300 {
  --tw-gradient-from: #5eead4 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(94 234 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-400 {
  --tw-gradient-from: #2dd4bf var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-500 {
  --tw-gradient-from: #14b8a6 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(20 184 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-900\/40 {
  --tw-gradient-from: rgb(19 78 74 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(19 78 74 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-900\/50 {
  --tw-gradient-from: rgb(19 78 74 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(19 78 74 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-teal-100 {
  --tw-gradient-to: rgb(204 251 241 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #ccfbf1 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-transparent {
  --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.to-cyan-400 {
  --tw-gradient-to: #22d3ee var(--tw-gradient-to-position);
}
.to-cyan-900\/40 {
  --tw-gradient-to: rgb(22 78 99 / 0.4) var(--tw-gradient-to-position);
}
.to-cyan-900\/50 {
  --tw-gradient-to: rgb(22 78 99 / 0.5) var(--tw-gradient-to-position);
}
.to-emerald-500 {
  --tw-gradient-to: #10b981 var(--tw-gradient-to-position);
}
.to-gray-800\/40 {
  --tw-gradient-to: rgb(31 41 55 / 0.4) var(--tw-gradient-to-position);
}
.to-gray-900 {
  --tw-gradient-to: #111827 var(--tw-gradient-to-position);
}
.to-indigo-600 {
  --tw-gradient-to: #4f46e5 var(--tw-gradient-to-position);
}
.to-red-800 {
  --tw-gradient-to: #991b1b var(--tw-gradient-to-position);
}
.to-red-900\/40 {
  --tw-gradient-to: rgb(127 29 29 / 0.4) var(--tw-gradient-to-position);
}
.to-teal-400 {
  --tw-gradient-to: #2dd4bf var(--tw-gradient-to-position);
}
.to-teal-900\/10 {
  --tw-gradient-to: rgb(19 78 74 / 0.1) var(--tw-gradient-to-position);
}
.to-teal-900\/20 {
  --tw-gradient-to: rgb(19 78 74 / 0.2) var(--tw-gradient-to-position);
}
.to-transparent {
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}
.bg-clip-text {
  -webkit-background-clip: text;
          background-clip: text;
}
.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.\!p-0 {
  padding: 0px !important;
}
.p-0 {
  padding: 0px;
}
.p-1 {
  padding: 0.25rem;
}
.p-10 {
  padding: 2.5rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-2\.5 {
  padding: 0.625rem;
}
.p-20 {
  padding: 5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.\!px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.\!px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}
.\!px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.\!px-5 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}
.\!px-6 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.\!px-8 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}
.\!py-0\.5 {
  padding-top: 0.125rem !important;
  padding-bottom: 0.125rem !important;
}
.\!py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.\!py-1\.5 {
  padding-top: 0.375rem !important;
  padding-bottom: 0.375rem !important;
}
.\!py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.\!py-2\.5 {
  padding-top: 0.625rem !important;
  padding-bottom: 0.625rem !important;
}
.\!py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}
.\!py-3\.5 {
  padding-top: 0.875rem !important;
  padding-bottom: 0.875rem !important;
}
.\!py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}
.px-0\.5 {
  padding-left: 0.125rem;
  padding-right: 0.125rem;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-1\.5 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pb-1 {
  padding-bottom: 0.25rem;
}
.pb-10 {
  padding-bottom: 2.5rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pl-1 {
  padding-left: 0.25rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pr-2 {
  padding-right: 0.5rem;
}
.pr-4 {
  padding-right: 1rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-3 {
  padding-top: 0.75rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-5 {
  padding-top: 1.25rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.\!text-\[10px\] {
  font-size: 10px !important;
}
.\!text-\[11px\] {
  font-size: 11px !important;
}
.\!text-\[9px\] {
  font-size: 9px !important;
}
.\!text-xl {
  font-size: 1.25rem !important;
  line-height: 1.75rem !important;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}
.text-8xl {
  font-size: 6rem;
  line-height: 1;
}
.text-\[0\.65rem\] {
  font-size: 0.65rem;
}
.text-\[0\.7rem\] {
  font-size: 0.7rem;
}
.text-\[10px\] {
  font-size: 10px;
}
.text-\[11px\] {
  font-size: 11px;
}
.text-\[8px\] {
  font-size: 8px;
}
.text-\[9px\] {
  font-size: 9px;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-black {
  font-weight: 900;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.font-light {
  font-weight: 300;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.capitalize {
  text-transform: capitalize;
}
.italic {
  font-style: italic;
}
.not-italic {
  font-style: normal;
}
.leading-relaxed {
  line-height: 1.625;
}
.leading-snug {
  line-height: 1.375;
}
.leading-tight {
  line-height: 1.25;
}
.tracking-\[0\.15em\] {
  letter-spacing: 0.15em;
}
.tracking-\[0\.1em\] {
  letter-spacing: 0.1em;
}
.tracking-\[0\.2em\] {
  letter-spacing: 0.2em;
}
.tracking-\[0\.3em\] {
  letter-spacing: 0.3em;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.tracking-tighter {
  letter-spacing: -0.05em;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.\!text-gray-900 {
  --tw-text-opacity: 1 !important;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1)) !important;
}
.\!text-gray-950 {
  --tw-text-opacity: 1 !important;
  color: rgb(3 7 18 / var(--tw-text-opacity, 1)) !important;
}
.text-\[\#7ee7c7\] {
  --tw-text-opacity: 1;
  color: rgb(126 231 199 / var(--tw-text-opacity, 1));
}
.text-\[\#aaf7ff\] {
  --tw-text-opacity: 1;
  color: rgb(170 247 255 / var(--tw-text-opacity, 1));
}
.text-\[\#caf2fd\] {
  --tw-text-opacity: 1;
  color: rgb(202 242 253 / var(--tw-text-opacity, 1));
}
.text-\[\#f0ece1\] {
  --tw-text-opacity: 1;
  color: rgb(240 236 225 / var(--tw-text-opacity, 1));
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-blue-200 {
  --tw-text-opacity: 1;
  color: rgb(191 219 254 / var(--tw-text-opacity, 1));
}
.text-blue-300 {
  --tw-text-opacity: 1;
  color: rgb(147 197 253 / var(--tw-text-opacity, 1));
}
.text-blue-400 {
  --tw-text-opacity: 1;
  color: rgb(96 165 250 / var(--tw-text-opacity, 1));
}
.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-cyan-100 {
  --tw-text-opacity: 1;
  color: rgb(207 250 254 / var(--tw-text-opacity, 1));
}
.text-cyan-300 {
  --tw-text-opacity: 1;
  color: rgb(103 232 249 / var(--tw-text-opacity, 1));
}
.text-cyan-400 {
  --tw-text-opacity: 1;
  color: rgb(34 211 238 / var(--tw-text-opacity, 1));
}
.text-emerald-400 {
  --tw-text-opacity: 1;
  color: rgb(52 211 153 / var(--tw-text-opacity, 1));
}
.text-gray-100 {
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity, 1));
}
.text-gray-200 {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}
.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.text-green-200 {
  --tw-text-opacity: 1;
  color: rgb(187 247 208 / var(--tw-text-opacity, 1));
}
.text-green-300 {
  --tw-text-opacity: 1;
  color: rgb(134 239 172 / var(--tw-text-opacity, 1));
}
.text-green-400 {
  --tw-text-opacity: 1;
  color: rgb(74 222 128 / var(--tw-text-opacity, 1));
}
.text-green-500 {
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}
.text-green-800 {
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}
.text-indigo-200\/80 {
  color: rgb(199 210 254 / 0.8);
}
.text-indigo-300 {
  --tw-text-opacity: 1;
  color: rgb(165 180 252 / var(--tw-text-opacity, 1));
}
.text-orange-300 {
  --tw-text-opacity: 1;
  color: rgb(253 186 116 / var(--tw-text-opacity, 1));
}
.text-orange-400 {
  --tw-text-opacity: 1;
  color: rgb(251 146 60 / var(--tw-text-opacity, 1));
}
.text-orange-400\/70 {
  color: rgb(251 146 60 / 0.7);
}
.text-pink-300 {
  --tw-text-opacity: 1;
  color: rgb(249 168 212 / var(--tw-text-opacity, 1));
}
.text-pink-400 {
  --tw-text-opacity: 1;
  color: rgb(244 114 182 / var(--tw-text-opacity, 1));
}
.text-pink-500 {
  --tw-text-opacity: 1;
  color: rgb(236 72 153 / var(--tw-text-opacity, 1));
}
.text-purple-200 {
  --tw-text-opacity: 1;
  color: rgb(233 213 255 / var(--tw-text-opacity, 1));
}
.text-purple-300 {
  --tw-text-opacity: 1;
  color: rgb(216 180 254 / var(--tw-text-opacity, 1));
}
.text-purple-400 {
  --tw-text-opacity: 1;
  color: rgb(192 132 252 / var(--tw-text-opacity, 1));
}
.text-red-100 {
  --tw-text-opacity: 1;
  color: rgb(254 226 226 / var(--tw-text-opacity, 1));
}
.text-red-200 {
  --tw-text-opacity: 1;
  color: rgb(254 202 202 / var(--tw-text-opacity, 1));
}
.text-red-300 {
  --tw-text-opacity: 1;
  color: rgb(252 165 165 / var(--tw-text-opacity, 1));
}
.text-red-400 {
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}
.text-red-500 {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-red-800 {
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}
.text-rose-300 {
  --tw-text-opacity: 1;
  color: rgb(253 164 175 / var(--tw-text-opacity, 1));
}
.text-slate-500 {
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}
.text-teal-100 {
  --tw-text-opacity: 1;
  color: rgb(204 251 241 / var(--tw-text-opacity, 1));
}
.text-teal-100\/80 {
  color: rgb(204 251 241 / 0.8);
}
.text-teal-200 {
  --tw-text-opacity: 1;
  color: rgb(153 246 228 / var(--tw-text-opacity, 1));
}
.text-teal-300 {
  --tw-text-opacity: 1;
  color: rgb(94 234 212 / var(--tw-text-opacity, 1));
}
.text-teal-400 {
  --tw-text-opacity: 1;
  color: rgb(45 212 191 / var(--tw-text-opacity, 1));
}
.text-teal-400\/50 {
  color: rgb(45 212 191 / 0.5);
}
.text-teal-500 {
  --tw-text-opacity: 1;
  color: rgb(20 184 166 / var(--tw-text-opacity, 1));
}
.text-teal-500\/40 {
  color: rgb(20 184 166 / 0.4);
}
.text-teal-500\/60 {
  color: rgb(20 184 166 / 0.6);
}
.text-transparent {
  color: transparent;
}
.text-violet-400 {
  --tw-text-opacity: 1;
  color: rgb(167 139 250 / var(--tw-text-opacity, 1));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-white\/90 {
  color: rgb(255 255 255 / 0.9);
}
.text-yellow-200 {
  --tw-text-opacity: 1;
  color: rgb(254 240 138 / var(--tw-text-opacity, 1));
}
.text-yellow-300 {
  --tw-text-opacity: 1;
  color: rgb(253 224 71 / var(--tw-text-opacity, 1));
}
.text-yellow-400 {
  --tw-text-opacity: 1;
  color: rgb(250 204 21 / var(--tw-text-opacity, 1));
}
.text-yellow-500\/80 {
  color: rgb(234 179 8 / 0.8);
}
.underline {
  text-decoration-line: underline;
}
.underline-offset-2 {
  text-underline-offset: 2px;
}
.placeholder-gray-500::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(107 114 128 / var(--tw-placeholder-opacity, 1));
}
.placeholder-gray-500::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(107 114 128 / var(--tw-placeholder-opacity, 1));
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.opacity-20 {
  opacity: 0.2;
}
.opacity-25 {
  opacity: 0.25;
}
.opacity-30 {
  opacity: 0.3;
}
.opacity-40 {
  opacity: 0.4;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-60 {
  opacity: 0.6;
}
.opacity-70 {
  opacity: 0.7;
}
.opacity-75 {
  opacity: 0.75;
}
.opacity-80 {
  opacity: 0.8;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_0_15px_rgba\(16\2c 185\2c 129\2c 0\.15\)\] {
  --tw-shadow: 0 0 15px rgba(16,185,129,0.15);
  --tw-shadow-colored: 0 0 15px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_0_15px_rgba\(20\2c 184\2c 166\2c 0\.2\)\] {
  --tw-shadow: 0 0 15px rgba(20,184,166,0.2);
  --tw-shadow-colored: 0 0 15px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_0_15px_rgba\(244\2c 63\2c 94\2c 0\.15\)\] {
  --tw-shadow: 0 0 15px rgba(244,63,94,0.15);
  --tw-shadow-colored: 0 0 15px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_0_15px_rgba\(245\2c 158\2c 11\2c 0\.15\)\] {
  --tw-shadow: 0 0 15px rgba(245,158,11,0.15);
  --tw-shadow-colored: 0 0 15px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_0_20px_rgba\(20\2c 184\2c 166\2c 0\.25\)\] {
  --tw-shadow: 0 0 20px rgba(20,184,166,0.25);
  --tw-shadow-colored: 0 0 20px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_0_40px_rgba\(45\2c 212\2c 191\2c 0\.15\)\] {
  --tw-shadow: 0 0 40px rgba(45,212,191,0.15);
  --tw-shadow-colored: 0 0 40px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-inner {
  --tw-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: inset 0 2px 4px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-black {
  --tw-shadow-color: #000;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-purple-500\/20 {
  --tw-shadow-color: rgb(168 85 247 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-900\/20 {
  --tw-shadow-color: rgb(127 29 29 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-red-900\/30 {
  --tw-shadow-color: rgb(127 29 29 / 0.3);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-500\/10 {
  --tw-shadow-color: rgb(20 184 166 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-teal-500\/20 {
  --tw-shadow-color: rgb(20 184 166 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.outline {
  outline-style: solid;
}
.ring-4 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-black\/40 {
  --tw-ring-color: rgb(0 0 0 / 0.4);
}
.drop-shadow-\[0_0_6px_rgba\(45\2c 236\2c 161\2c 0\.4\)\] {
  --tw-drop-shadow: drop-shadow(0 0 6px rgba(45,236,161,0.4));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow-md {
  --tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow-sm {
  --tw-drop-shadow: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur-md {
  --tw-backdrop-blur: blur(12px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-sm {
  --tw-backdrop-blur: blur(4px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.delay-150 {
  transition-delay: 150ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-500 {
  transition-duration: 500ms;
}
.duration-700 {
  transition-duration: 700ms;
}
.ease-\[cubic-bezier\(0\.4\2c 0\2c 0\.2\2c 1\)\] {
  transition-timing-function: cubic-bezier(0.4,0,0.2,1);
}
/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
  }
/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }

/* Styles globaux personnalisés ici si nécessaire */
body {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.last\:border-0:last-child {
  border-width: 0px;
}
.last\:pb-0:last-child {
  padding-bottom: 0px;
}
.hover\:translate-x-1:hover {
  --tw-translate-x: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:scale-105:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:\!border-teal-500\/50:hover {
  border-color: rgb(20 184 166 / 0.5) !important;
}
.hover\:border-gray-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
}
.hover\:border-gray-700:hover {
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}
.hover\:border-purple-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(192 132 252 / var(--tw-border-opacity, 1));
}
.hover\:border-teal-500\/30:hover {
  border-color: rgb(20 184 166 / 0.3);
}
.hover\:border-teal-500\/40:hover {
  border-color: rgb(20 184 166 / 0.4);
}
.hover\:border-teal-500\/50:hover {
  border-color: rgb(20 184 166 / 0.5);
}
.hover\:\!bg-red-600\/40:hover {
  background-color: rgb(220 38 38 / 0.4) !important;
}
.hover\:bg-\[\#2fd9b3\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(47 217 179 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-700\/50:hover {
  background-color: rgb(55 65 81 / 0.5);
}
.hover\:bg-gray-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-800\/60:hover {
  background-color: rgb(31 41 55 / 0.6);
}
.hover\:bg-gray-800\/80:hover {
  background-color: rgb(31 41 55 / 0.8);
}
.hover\:bg-gray-900:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
.hover\:bg-green-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(21 128 61 / var(--tw-bg-opacity, 1));
}
.hover\:bg-indigo-500\/20:hover {
  background-color: rgb(99 102 241 / 0.2);
}
.hover\:bg-orange-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(194 65 12 / var(--tw-bg-opacity, 1));
}
.hover\:bg-pink-500\/20:hover {
  background-color: rgb(236 72 153 / 0.2);
}
.hover\:bg-purple-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(126 34 206 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-500\/20:hover {
  background-color: rgb(239 68 68 / 0.2);
}
.hover\:bg-red-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-900\/50:hover {
  background-color: rgb(127 29 29 / 0.5);
}
.hover\:bg-teal-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(45 212 191 / var(--tw-bg-opacity, 1));
}
.hover\:bg-teal-500\/20:hover {
  background-color: rgb(20 184 166 / 0.2);
}
.hover\:bg-teal-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(15 118 110 / var(--tw-bg-opacity, 1));
}
.hover\:bg-white\/10:hover {
  background-color: rgb(255 255 255 / 0.1);
}
.hover\:bg-white\/20:hover {
  background-color: rgb(255 255 255 / 0.2);
}
.hover\:from-purple-500:hover {
  --tw-gradient-from: #a855f7 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:from-red-800:hover {
  --tw-gradient-from: #991b1b var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(153 27 27 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:from-teal-400:hover {
  --tw-gradient-from: #2dd4bf var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(45 212 191 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:to-emerald-400:hover {
  --tw-gradient-to: #34d399 var(--tw-gradient-to-position);
}
.hover\:to-indigo-500:hover {
  --tw-gradient-to: #6366f1 var(--tw-gradient-to-position);
}
.hover\:to-red-700:hover {
  --tw-gradient-to: #b91c1c var(--tw-gradient-to-position);
}
.hover\:text-gray-200:hover {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-300:hover {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.hover\:text-orange-300:hover {
  --tw-text-opacity: 1;
  color: rgb(253 186 116 / var(--tw-text-opacity, 1));
}
.hover\:text-red-300:hover {
  --tw-text-opacity: 1;
  color: rgb(252 165 165 / var(--tw-text-opacity, 1));
}
.hover\:text-red-400:hover {
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity, 1));
}
.hover\:text-teal-200:hover {
  --tw-text-opacity: 1;
  color: rgb(153 246 228 / var(--tw-text-opacity, 1));
}
.hover\:text-teal-300:hover {
  --tw-text-opacity: 1;
  color: rgb(94 234 212 / var(--tw-text-opacity, 1));
}
.hover\:text-teal-400:hover {
  --tw-text-opacity: 1;
  color: rgb(45 212 191 / var(--tw-text-opacity, 1));
}
.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:underline:hover {
  text-decoration-line: underline;
}
.hover\:shadow-teal-500\/20:hover {
  --tw-shadow-color: rgb(20 184 166 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:border-red-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}
.focus\:border-teal-400:focus {
  --tw-border-opacity: 1;
  border-color: rgb(45 212 191 / var(--tw-border-opacity, 1));
}
.focus\:border-teal-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(20 184 166 / var(--tw-border-opacity, 1));
}
.focus\:border-teal-500\/50:focus {
  border-color: rgb(20 184 166 / 0.5);
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring-0:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-1:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-blue-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}
.focus\:ring-gray-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(107 114 128 / var(--tw-ring-opacity, 1));
}
.focus\:ring-green-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(34 197 94 / var(--tw-ring-opacity, 1));
}
.focus\:ring-red-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1));
}
.focus\:ring-teal-500\/20:focus {
  --tw-ring-color: rgb(20 184 166 / 0.2);
}
.focus\:ring-teal-500\/50:focus {
  --tw-ring-color: rgb(20 184 166 / 0.5);
}
.focus\:ring-offset-0:focus {
  --tw-ring-offset-width: 0px;
}
.focus\:ring-offset-2:focus {
  --tw-ring-offset-width: 2px;
}
.active\:scale-90:active {
  --tw-scale-x: .9;
  --tw-scale-y: .9;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.active\:scale-95:active {
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}
.disabled\:bg-blue-300:disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(147 197 253 / var(--tw-bg-opacity, 1));
}
.disabled\:bg-gray-100:disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.disabled\:bg-green-300:disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(134 239 172 / var(--tw-bg-opacity, 1));
}
.disabled\:bg-red-300:disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(252 165 165 / var(--tw-bg-opacity, 1));
}
.disabled\:text-gray-300:disabled {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.disabled\:text-gray-400:disabled {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.disabled\:opacity-30:disabled {
  opacity: 0.3;
}
.disabled\:opacity-40:disabled {
  opacity: 0.4;
}
.disabled\:opacity-50:disabled {
  opacity: 0.5;
}
.group:focus-within .group-focus-within\:text-teal-400 {
  --tw-text-opacity: 1;
  color: rgb(45 212 191 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:block {
  display: block;
}
.group:hover .group-hover\:hidden {
  display: none;
}
.group\/label:hover .group-hover\/label\:scale-110 {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:scale-105 {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:scale-110 {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:scale-125 {
  --tw-scale-x: 1.25;
  --tw-scale-y: 1.25;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:border-teal-500\/30 {
  border-color: rgb(20 184 166 / 0.3);
}
.group\/label:hover .group-hover\/label\:text-gray-200 {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:text-teal-400 {
  --tw-text-opacity: 1;
  color: rgb(45 212 191 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}
@media (min-width: 640px) {
  .sm\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .sm\:mt-0 {
    margin-top: 0px;
  }
  .sm\:inline {
    display: inline;
  }
  .sm\:grid {
    display: grid;
  }
  .sm\:\!w-auto {
    width: auto !important;
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm\:flex-row {
    flex-direction: row;
  }
  .sm\:items-center {
    align-items: center;
  }
  .sm\:justify-between {
    justify-content: space-between;
  }
  .sm\:gap-4 {
    gap: 1rem;
  }
  .sm\:gap-8 {
    gap: 2rem;
  }
  .sm\:rounded-md {
    border-radius: 0.375rem;
  }
  .sm\:rounded-xl {
    border-radius: 0.75rem;
  }
  .sm\:p-8 {
    padding: 2rem;
  }
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 768px) {
  .md\:col-span-4 {
    grid-column: span 4 / span 4;
  }
  .md\:col-span-8 {
    grid-column: span 8 / span 8;
  }
  .md\:w-1\/2 {
    width: 50%;
  }
  .md\:-translate-y-4 {
    --tw-translate-y: -1rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .md\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:items-start {
    align-items: flex-start;
  }
  .md\:items-end {
    align-items: flex-end;
  }
  .md\:items-center {
    align-items: center;
  }
  .md\:justify-between {
    justify-content: space-between;
  }
  .md\:p-6 {
    padding: 1.5rem;
  }
  .md\:text-left {
    text-align: left;
  }
  .md\:text-right {
    text-align: right;
  }
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 1024px) {
  .lg\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .lg\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  .lg\:block {
    display: block;
  }
  .lg\:hidden {
    display: none;
  }
  .lg\:w-1\/3 {
    width: 33.333333%;
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:flex-row {
    flex-direction: row;
  }
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* frontend/src/styles/themes.css */
/* --- DARK THEME --- */
.theme-dark {
  --color-bg: #0f172a;               /* Deep Navy */
  --color-bg-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --color-surface: rgba(30, 41, 59, 0.7);
  --color-surface-hover: rgba(51, 65, 85, 0.8);
  --color-border: rgba(94, 234, 212, 0.2); /* Teal border */
  --color-text: #f8fafc;
  --color-text-dim: #94a3b8;
  --color-accent: #2dd4bf;           /* Teal */
  --color-accent-gold: #f59e0b;      /* Gold */
  --color-accent-gradient: linear-gradient(90deg, #2dd4bf 0%, #3b82f6 100%);
  --glass-blur: 12px;
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}
/* --- LIGHT THEME --- */
.theme-light {
  --color-bg: #f8fafc;               /* Slate 50 */
  --color-bg-gradient: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  --color-surface: rgba(255, 255, 255, 0.8);
  --color-surface-hover: rgba(248, 250, 252, 0.9);
  --color-border: rgba(15, 23, 42, 0.1);
  --color-text: #0f1723;
  --color-text-dim: #64748b;
  --color-accent: #0f172a;
  --color-accent-gold: #d97706;      /* Darker Gold */
  --color-accent-gradient: linear-gradient(90deg, #1e293b 0%, #334155 100%);
  --glass-blur: 8px;
  --glass-shadow: 0 4px 16px 0 rgba(15, 23, 42, 0.05);
}
/* Global resets using variables */
body {
  background: var(--color-bg-gradient);
  color: var(--color-text);
  transition: background 0.3s ease, color 0.3s ease;
  background: linear-gradient(120deg, #141d26 0%, #38435a 100%);
  min-height: 100vh;
  font-family: 'Inter', 'Poppins', 'Segoe UI', Arial, sans-serif;
  color: #f1f1f1;
}
/* Conteneur principal pour toutes les pages */
.page-container {
  width: 100%;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 2rem;
}
@media (max-width: 768px) {
  .page-container {
    padding: 0.5rem 0.5rem;
  }
}
/* Carte principale - Style unifié */
.glass-card {
  background: rgba(30, 34, 41, 0.93);
  border-radius: 1.2em;
  box-shadow: 0 4px 32px 0 #1fe99d0f, 0 1.5px 0 #00ffd519;
  backdrop-filter: blur(13px) saturate(1.3);
  -webkit-backdrop-filter: blur(13px) saturate(1.3);
  border: 1.7px solid #43ffe544;
  padding: 1.1em 1.4em;
  margin-bottom: 1.2rem;
}
/* Titre et section */
h2,
.section-title {
  font-family: 'Orbitron', 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #e5e0ba;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #f0e6d2 0%, #aee9d1 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title {
  font-size: 1.3rem;
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
  padding-left: 0.5rem;
  background: linear-gradient(90deg, #00fff2 0%, #aee9d1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Résultat humain : highlight chess */
.result-human {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.2rem 0 0.5rem 0;
  color: #caffae;
  text-shadow: 0 2px 9px #18331455;
  display: flex;
  align-items: center;
  gap: 0.8em;
}
.chess-icon {
  font-size: 1.6em;
  vertical-align: -0.1em;
}
/* Bloc joueur */
.player-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1rem 1.5rem;
  border-radius: 17px;
  border: 2px solid #282d1d;
  background: linear-gradient(100deg, #232819 0%, #1a2227 100%);
  margin-bottom: 0.5rem;
  width: 100%;
  max-width: 420px;
}
.player-box.winner {
  border: 2px solid #6fffba;
  background: linear-gradient(100deg, #2d2f1d 0%, #4dbfa3 100%);
  color: #d3f5a9;
  box-shadow: 0 2px 14px 0 #6fffba17;
  font-size: 1.15rem;
}
.player-box.loser {
  border: 1.5px solid #e5e7eb30;
  color: #f5e2c2;
  opacity: 0.85;
}
/* Indicateur de couleur (cercle blanc/noir) */
.player-color-dot {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid #555;
}
.player-color-white {
  background: #f0f0f0;
  border-color: #aaa;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
}
.player-color-black {
  background: #1a1a1a;
  border-color: #666;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}
/* Bordure latérale de distinction */
.player-box-white {
  border-left: 4px solid #e8f0e8;
}
.player-box-black {
  border-left: 4px solid #ffe274;
}
.stats-badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.stat-badge {
  font-size: 0.95rem;
  border-radius: 12px;
  padding: 0.1em 0.75em;
  background: #333b2a;
  color: #e2f5a6;
  border: 1px solid #473c1f;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.stat-badge.strong {
  background: #232d1d;
  color: #6fffba;
  border: 1px solid #6fffba99;
}
.stat-badge.error {
  background: #432f0f;
  color: #ff8c7a;
  border: 1px solid #d12e2e;
}
.stat-badge.warning {
  background: #3a390a;
  color: #ffe17a;
  border: 1px solid #ffe17a80;
}
/* Moment critique */
.critical-move {
  background: linear-gradient(90deg, #23281f 0%, #21272c 100%);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  border: 1.2px solid #aee9d166;
  box-shadow: 0 1px 12px 0 #3fffe911;
  font-size: 1.05em;
  animation: fadeInUp 0.7s;
  width: 100%;
  max-width: 320px;
}
.critical-move strong {
  color: #aee9d1;
  font-size: 1.08em;
}
.critical-move .reason {
  color: #f78585;
  font-style: italic;
}
.critical-move:hover {
  border-color: #aee9d1;
  box-shadow: 0 0 12px #00ffe666, 0 2px 12px #aee9d1;
  transition: 0.18s;
}
.chess-mini-board {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 15px #0008, 0 0 0 2px #6fffba44;
  margin: 0.7em 0 0.5em 0;
  background: #ece6c9;
  width: 150px;
  height: 150px;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}
.profile-bg {
  background: linear-gradient(110deg, #181e30 0%, #2e4370 100%);
  min-height: 100vh;
}
/* Table échecs et badges */
.chess-table {
  background: rgba(33, 39, 52, 0.92);
  color: #f7f7f7;
  border-radius: 14px;
  box-shadow: 0 2px 22px #23304022;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.07em;
  width: 100%;
}
.chess-table th,
.chess-table td {
  padding: 0.6em 0.8em;
  border-bottom: 1px solid #23304033;
  text-align: left;
}
.chess-table-row:hover {
  background: rgba(80, 250, 123, 0.08);
  transition: background 0.17s;
}
.chess-player {
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #9affda;
}
.result-badge {
  display: inline-block;
  border-radius: 11px;
  padding: 0.2em 0.85em;
  font-weight: 600;
  font-size: 0.99em;
  background: #232c22;
  color: #f8f8f8;
}
.result-badge.win {
  background: #253a1a;
  color: #b9f6a2;
  border: 1px solid #3ec273;
}
.result-badge.loss {
  background: #3c2322;
  color: #ffa39e;
  border: 1px solid #fa7d7d;
}
.result-badge.draw {
  background: #443b17;
  color: #ffe37a;
  border: 1px solid #ffe37a77;
}
/* Badges status */
.status-badge {
  display: inline-block;
  border-radius: 11px;
  padding: 0.13em 0.8em;
  font-size: 0.95em;
  font-weight: 500;
}
.status-badge.analyzed {
  background: #223c2b;
  color: #b6fdba;
  border: 1px solid #b6fdba88;
}
.status-badge.imported {
  background: #1b2941;
  color: #90e3ff;
  border: 1px solid #90e3ff77;
}
.status-badge.notimported {
  background: #1d222a;
  color: #f0e8c7;
  border: 1px solid #d8cdae77;
}
/* Onglets */
.tab-btn {
  background: rgba(33, 39, 52, 0.91);
  border-radius: 16px 16px 0 0;
  padding: 0.65em 1.6em;
  border: 2px solid transparent;
  color: #b5dbfe;
  font-weight: 600;
  font-size: 1.05em;
  cursor: pointer;
  margin-bottom: -2px;
  transition: all 0.18s;
}
.tab-btn-active,
.tab-btn:hover {
  background: #171e2a;
  border-bottom: 2.5px solid #1fe99d;
  color: #aef9d1;
}
/* Sélecteur partie */
.select-chess {
  border: 1.5px solid #24314f;
  background: rgba(33, 39, 52, 0.9);
  border-radius: 12px;
  padding: 0.4em 1.1em;
  color: #c8ffe3;
  font-weight: 500;
}
/* Boutons futuristes */
.button-futur {
  border-radius: 0.85em;
  font-size: 1.09em;
  font-weight: 700;
  padding: 0.7em 0.5em;
  /* plus d'espace vertical ET horizontal */
  width: 100%;
  max-width: 240px;
  min-width: 140px;
  text-align: center;
  white-space: normal;
  /* autorise retour à la ligne si VRAIMENT trop long */
  display: flex;
  /* centre le contenu verticalement */
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  word-break: break-word;
  /* ne jamais couper au milieu d’un mot */
}
.button-futur:hover {
  background: linear-gradient(90deg, #11b392 0%, #3d80e5 100%);
  color: #fff;
}
.side-col-flex .button-futur {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.button-futur.ring-2 {
  box-shadow: 0 0 0 3px #ffe366;
  border: 1.5px solid #ffe366;
  background: linear-gradient(90deg, #ffe366 0%, #fff3cd 100%);
  color: #222;
}
.score-section-responsive {
  width: 95vw;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.recharts-tooltip-wrapper {
  z-index: 9999 !important;
}
.chess-progress-popover {
  background: #181e31eb;
  color: #fff;
  border: 2px solid #13ffe1;
  border-radius: 14px;
  padding: 1.1em 1.3em;
  min-width: 300px;
  max-width: 450px;
  font-weight: 500;
  font-size: 0.99em;
  z-index: 9999;
  box-shadow: 0 8px 44px #00fff440;
  word-break: break-word;
  white-space: normal;
}
.chess-progress-popover .popover-title {
  margin-bottom: 7px;
  font-size: 1.05em;
  color: #fff;
  font-weight: 600;
}
.chess-progress-popover p {
  margin: 0.3em 0;
}
/* NAVBAR NEW STYLE: 100% Background, 90% Content */
.sticky-navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(30, 34, 41, 0.9);
  backdrop-filter: blur(8px) saturate(1.3);
  -webkit-backdrop-filter: blur(8px) saturate(1.3);
  border-bottom: 1.5px solid rgba(124, 255, 221, 0.15);
  transition: all 0.2s ease;
}
.navbar-scrolled {
  box-shadow: 0 6px 32px 0 rgba(31, 233, 157, 0.15);
  background: rgba(30, 34, 41, 0.96);
}
.navbar-content-container,
.footer-content-container {
  width: 90%;
  margin: 0 auto;
  max-width: none;
}
/* FOOTER NEW STYLE: 100% Background, 90% Content */
footer {
  background: #191e2e;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}
@media (max-width: 768px) {

  .navbar-content-container,
  .footer-content-container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.logo-svg {
  display: block;
  width: 32px;
  height: 32px;
}
.logo-title {
  font-family: 'Orbitron', 'Poppins', Arial, sans-serif;
  letter-spacing: 0.03em;
  font-weight: 700;
}
/* Styles pour NFTCard */
.nft-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.nft-card-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 255, 225, 0.15);
}
.nft-card {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.nft-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.8em;
  background-color: #2a3341;
}
.nft-info {
  padding-top: 0.75rem;
}
.nft-title {
  font-weight: 600;
  color: #e0e0e0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nft-result {
  font-size: 0.9em;
  color: #a0a0a0;
}
/* --- COMMUNITY THREAD v3 (grid 2 colonnes) --- */
.community-thread {
  display: block;
  container-type: inline-size;
  container-name: ct-container;
}
.ct-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .6rem;
  margin-bottom: .6rem
}
.ct-title {
  font-weight: 700;
  font-size: 1rem
}
.ct-controls {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem
}
.ct-label {
  color: #a3b3c7
}
.ct-select {
  height: 32px;
  padding: .2em .7em
}
.ct-counter {
  color: #9fb5c9
}
.ct-grid {
  display: grid;
  grid-template-columns: minmax(300px, 380px) 1fr;
  gap: 1rem;
  align-items: start
}
.ct-composer {
  grid-column: 1;
  background: #11182780;
  border: 1px solid #253043;
  border-radius: 10px;
  padding: .6rem .7rem;
  position: sticky;
  top: 0
}
.ct-emoji {
  display: flex;
  gap: .35rem
}
.ct-emoji-btn {
  background: transparent;
  border: none;
  font-size: 1.1rem;
  cursor: pointer
}
.ct-textarea {
  background: #181b25;
  border: 1px solid #334155;
  color: #e2e8f0;
  border-radius: 8px;
  min-height: 72px;
  font-size: 1rem;
  width: 100%;
  padding: .55em .75em;
  box-sizing: border-box
}
.ct-textarea:focus {
  outline: none;
  border-color: #1fe99d;
  box-shadow: 0 0 0 3px #1fe99d33
}
.ct-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: .35rem
}
.ct-hint {
  font-size: .8rem;
  color: #9fb5c9
}
.ct-buttons {
  display: flex;
  align-items: center;
  gap: .5rem
}
.ct-cancel {
  background: none;
  border: none;
  color: #fbbf24;
  font-size: .8rem;
  cursor: pointer
}
.ct-send {
  min-width: 120px;
  max-width: 150px;
  padding: .45em 1.2em
}
.ct-ok {
  color: #34d399;
  font-size: .82rem;
  margin-top: .25rem
}
.ct-err {
  color: #f87171;
  font-size: .82rem;
  margin-top: .25rem
}
.ct-right {
  grid-column: 2;
  min-width: 0
}
.ct-list {
  display: flex;
  flex-direction: column;
  gap: .5rem
}
.ct-item {
  background: #161a24;
  border: 1px solid #233046;
  border-left: 3px solid #00eaff55;
  border-radius: 10px;
  padding: .55rem .7rem
}
.ct-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  margin-bottom: .25rem
}
.ct-num {
  font-size: .75rem;
  color: #9aa9bd
}
.ct-user {
  font-weight: 700;
  color: #74ffe0
}
.ct-platform {
  color: #8b9bb2;
  font-size: .75rem
}
.ct-date {
  color: #9aa9bd;
  font-size: .75rem
}
.ct-reply {
  color: #9aa9bd;
  font-size: .75rem
}
.ct-body {
  margin: .15rem 0 .25rem 0;
  line-height: 1.35
}
.ct-reply-btn {
  background: none;
  border: none;
  color: #60a5fa;
  font-size: .8rem;
  cursor: pointer;
  padding: 0
}
.ct-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .6rem
}
/* --- Reply badges + styling --- */
.ct-item-reply {
  border-left-color: #b993ff !important;
  /* accent violet pour les réponses */
  background: #191c2a !important;
  /* léger contraste */
}
.ct-reply-pill {
  margin-left: auto;
  background: #2a3350;
  border: 1px solid #6d7dd6;
  color: #c9d4ff;
  font-size: .72rem;
  padding: .15rem .45rem;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1;
}
.ct-reply-pill:hover {
  filter: brightness(1.1);
}
/* Responsive: 1 colonne quand le conteneur < 800px */
@container ct-container (max-width: 800px) {
  .ct-grid {
    grid-template-columns: 1fr;
  }

  .ct-composer {
    position: static;
  }

  .ct-right {
    grid-column: 1;
  }
}
/* --- COMPACT MODE (Sidebar & Bottom Sheet) --- */
.ct-grid-compact {
  grid-template-columns: 1fr !important;
}
.ct-grid-compact .ct-composer {
  position: static !important;
  margin-bottom: 1rem;
  width: 100% !important;
  max-width: none !important;
  background: rgba(30, 41, 59, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}
.ct-grid-compact .ct-textarea {
  width: 100% !important;
  min-height: 80px !important;
  font-size: 16px !important;
}
.ct-grid-compact .ct-send {
  width: auto !important;
  min-width: 80px;
  align-self: flex-end;
  padding: 0.4rem 1rem !important;
  font-size: 0.85rem !important;
  margin-top: 0.4rem;
  border-radius: 6px !important;
  font-weight: 600;
}
.ct-grid-compact .ct-right {
  grid-column: 1 !important;
}
.compact-mode .ct-header {
  flex-wrap: wrap;
  gap: 0.5rem;
}
.compact-mode .ct-controls {
  margin-left: 0;
  width: 100%;
  justify-content: space-between;
}
/* --- FIN COMMUNITY THREAD v3 --- */
/* --- ANALYSIS PAGE 2-COL LAYOUT --- */
.analysis-two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  /* align-items: stretch; Force equal height */
  align-items: stretch;
}
.col-board {
  flex: 0 0 460px;
  display: flex;
  flex-direction: column;
}
.col-coach {
  flex: 1;
  display: flex;
  flex-direction: column;
}
/* Ensure content inside stretches to fill height */
.col-board>div,
.col-coach>div {
  height: 100%;
}
@media (max-width: 900px) {
  .analysis-two-col {
    flex-direction: column;
  }

  .col-board,
  .col-coach {
    width: 100%;
    min-width: 0;
  }
}
/* --- END ANALYSIS LAYOUT --- */
.kpi-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 56px;
  min-height: 38px;
  font-weight: bold;
  font-size: 1.45em;
  border-radius: 8px;
  background: #181b25;
  margin: 0 auto;
  text-align: center;
}
.kpi-label {
  font-size: 1em;
  color: #ffe366;
  opacity: 0.85;
  text-align: center;
  font-weight: 600;
}
.kpi-radar-container {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
/* === GAME INFO GRID (GameViewPage) === */
.game-info-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.game-info-row {
  display: flex;
  align-items: baseline;
  gap: 0.6em;
  padding: 0.45em 0;
  border-bottom: 1px solid rgba(45, 236, 161, 0.08);
  font-size: 0.95em;
}
.game-info-row:last-child {
  border-bottom: none;
}
.game-info-label {
  color: #5ee9c5;
  font-weight: 600;
  min-width: 100px;
  flex-shrink: 0;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.game-info-value {
  color: #e0e6f0;
}
/* === KPI SCORE HERO (grand badge score global) === */
.kpi-score-hero {
  text-align: center;
  padding: 1em 2em;
  background: linear-gradient(135deg, rgba(45, 236, 161, 0.1) 0%, rgba(0, 255, 213, 0.05) 100%);
  border: 1.5px solid rgba(45, 236, 161, 0.25);
  border-radius: 16px;
  width: 100%;
  max-width: 280px;
}
.kpi-score-hero-label {
  font-size: 0.85em;
  font-weight: 700;
  color: #ffe274;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3em;
}
.kpi-score-hero-value {
  font-size: 2.8em;
  font-weight: 900;
  color: #2deca1;
  line-height: 1;
  text-shadow: 0 0 20px rgba(45, 236, 161, 0.4);
}
/* === KPI AXES GRID (grille 2x2 des 4 scores) === */
.kpi-axes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  max-width: 320px;
}
.kpi-axis-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0.8em 0.6em;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(45, 236, 161, 0.12);
  border-radius: 12px;
  transition: all 0.25s ease;
}
.kpi-axis-card:hover {
  border-color: rgba(45, 236, 161, 0.4);
  background: rgba(15, 23, 42, 0.85);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(45, 236, 161, 0.15);
}
.kpi-axis-icon {
  font-size: 1.4em;
  line-height: 1;
}
.kpi-axis-label {
  font-size: 0.75em;
  font-weight: 600;
  color: #faffb7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.kpi-axis-value {
  font-size: 1.6em;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
mark.bg-yellow-300 {
  background: #ffe366;
  color: #1a1400;
  font-weight: bold;
  padding: 0 4px;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .community-thread {
    min-width: 340px;
    max-width: 420px;
  }
}
.reddit-card {
  padding: 1.2em 1.5em !important;
  border-radius: 14px;
  border: 1px solid #233046;
  width: 100% !important;
}
.premium-preview-img {
  transition: transform 0.2s cubic-bezier(.4, 2, .4, 1);
}
.premium-preview-img:hover {
  transform: scale(1.025) translateY(-4px);
  box-shadow: 0 0 54px #00fff799, 0 2px 34px #000b;
}
.post-info-line,
.mb-1.text-gray-400.text-sm {
  white-space: normal !important;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.35;
  font-size: 1em;
  width: 100%;
  display: block;
}
@media (max-width: 640px) {

  .post-info-line,
  .mb-1.text-gray-400.text-sm {
    font-size: 0.98em;
    padding-right: 0;
    padding-left: 0;
    word-break: break-all;
  }
}
.meta-info-box {
  background: rgba(23, 32, 48, 0.85);
  border: 1.5px solid #21efd1b7;
  border-radius: 9px;
  padding: 0.22em 0.9em;
  margin-bottom: 9px;
  font-size: 0.93em;
  font-weight: 500;
  color: #c6e6e9;
  box-shadow: 0 1px 8px 0 #1fe99d11;
  line-height: 1.42;
  display: block;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .meta-info-box {
    font-size: 0.97em;
    padding: 0.26em 0.5em;
  }
}
.radar-card {
  background: rgba(24, 27, 41, 0.91);
  border-radius: 14px;
  padding: 1.2em 2em 0.8em 2em;
  box-shadow: 0 0 20px #2deca155, 0 1px 8px #00ffd555;
  margin-top: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
/* Badge pour les tags de publication */
.badge {
  background: #23453a;
  color: #9affda;
  border-radius: 6px;
  padding: 2px 8px;
  margin-right: 0.2em;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}
.badge:hover {
  background: #1fe99d;
  color: #141d26;
}
.wallet-linked-message {
  color: #38ffb3;
  font-weight: 600;
  background: #12242a88;
  border-radius: 6px;
  padding: 0.5em 1em;
  margin-top: 0.6em;
  font-family: monospace;
}
.nft-download-link:hover {
  color: #19eab0;
  text-decoration: underline;
}
/*
 * === MISE EN PAGE À 2 COLONNES (GameViewPage & ProfileHomePage) ===
 * Cette section garantit une largeur et une disposition cohérentes sur
 * les pages qui utilisent une colonne principale et une colonne latérale.
 * Le conteneur parent doit avoir la classe "flex flex-col md:flex-row".
*/
@media (min-width: 900px) {

  /* La colonne principale est flexible et prend l'espace restant. */
  .main-col-flex {
    flex: 1;
    min-width: 0;
    /* Empêche le contenu interne de déborder */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  /* La colonne latérale a une largeur fixe pour bien contenir l'échiquier et autres widgets. */
  .side-col-flex {
    flex: 0 0 460px;
    /* Base fixe de 460px, ne grandit pas, ne rétrécit pas */
    width: 460px;
    position: sticky;
    top: 80px;
    /* Ajusté pour la navbar sticky */
    align-self: flex-start;
    /* S'assure qu'elle ne s'étire pas verticalement */
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
  }

  /* Les cartes dans la colonne latérale prennent toute la largeur disponible */
  .side-col-flex>.glass-card {
    width: 100%;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
  }

  /* L'échiquier dans la colonne latérale est centré et sa taille contrôlée */
  .side-col-flex .react-chessboard {
    width: 100% !important;
    max-width: 420px !important;
    /* L'échiquier lui-même ne dépasse pas 420px */
    height: auto !important;
    margin: 0 auto !important;
    /* Centrer l'échiquier */
  }
}
/* Ajustement mobile : la colonne latérale passe dessous */
@media (max-width: 899px) {
  .page-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0.8rem 0.6rem;
  }

  .side-col-flex {
    width: 100%;
    max-width: 100vw;
    position: static;
    gap: 1.5rem;
    margin-top: 1.6rem;
    align-items: stretch !important;
  }
}
/* Ajuste aussi la taille des échiquiers si besoin */
@media (max-width: 600px) {

  .glass-card .chessboard,
  .glass-card .react-chessboard {
    width: 95vw !important;
    max-width: 98vw !important;
  }
}
/* ==== Navigation fine pour l'échiquier interactif ==== */
.chessboard-nav-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75em;
  margin-top: 1.5em;
  margin-bottom: 1.2em;
  width: 100%;
}
.button-futur-nav {
  border-radius: 0.75rem;
  font-size: 1.1em;
  font-weight: 700;
  padding: 0.5em;
  background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
  color: #fff;
  border: none;
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(20, 184, 166, 0.25);
}
.button-futur-nav:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.4);
}
.button-futur-nav:disabled {
  background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
  color: #64748b;
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}
.chessboard-move-indicator {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 0.6em 1.2em;
  min-width: 100px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}
/* Pour la grille de l'analyse (2 colonnes, sans double padding) */
@media (min-width: 1024px) {
  .analysis-two-col {
    display: flex;
    flex-direction: row;
    gap: 0;
    width: 100%;
    margin: 0;
  }

  .analysis-two-col>.board-col,
  .analysis-two-col>.coach-col {
    width: 50%;
    max-width: 50%;
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
  }

  .analysis-two-col>.board-col>.glass-card,
  .analysis-two-col>.coach-col>.glass-card {
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-radius: 0 !important;
    margin: 0 !important;
    border-width: 0 1.2px 0 0;
  }

  .analysis-two-col>.coach-col>.glass-card {
    border-width: 0 0 0 1.2px;
  }
}
.board-interactive-container .react-chessboard {
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  max-width: 420px !important;
  width: 100% !important;
}
.board-interactive-container {
  background: #181f2d;
  border-radius: 1.1em;
  box-shadow: 0 6px 32px #21ffd738;
  padding: 10px 0;
  margin-bottom: 0.8em;
}
.section-title {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-size: 1.16em;
  letter-spacing: .035em;
  text-align: center;
  color: #36ffc7;
  font-weight: 800;
  margin-bottom: .6em;
}
.button-futur {
  border-radius: 1em;
  font-size: 1.06em;
  font-weight: 700;
}
.button-futur-lux {
  display: block;
  background: linear-gradient(92deg, #15ffe7 0%, #2b68ff 80%, #3f4cc9 100%);
  color: #1b273b;
  border: none;
  border-radius: 1.2em;
  box-shadow: 0 2px 24px #20fff655, 0 0.5px 0 #eafffa77;
  padding: 0.76em 1.8em;
  font-weight: 900;
  font-size: 1.07em;
  letter-spacing: .04em;
  transition: transform 0.13s cubic-bezier(.4, 2, .6, 1), box-shadow .19s;
  margin-bottom: 0.15em;
}
.button-futur-lux:hover,
.button-futur-lux:focus {
  background: linear-gradient(92deg, #40ffe7 0%, #2bb0ff 100%);
  color: #000;
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 4px 40px #49fff966, 0 1.5px 0 #afffdfbb;
}
.button-futur-lux.is-cover {
  background: linear-gradient(92deg, #ffe366 10%, #fff3cd 90%);
  color: #282800;
  box-shadow: 0 2px 22px #fffad277, 0 0.5px 0 #ffe36644;
  border: 1.5px solid #ffe366;
}
.neon-title {
  text-shadow: 0 1.5px 6px #12ffe7a6, 0 0 1.5px #00ffd8;
  letter-spacing: 0.04em;
}
.glow-text {
  background: linear-gradient(90deg, #13fbc6 50%, #19eab0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: brightness(1.1) drop-shadow(0 1px 8px #21ffe9c7);
}
.lux-analysis-card {
  background: linear-gradient(140deg, #131f32 0%, #081420 98%);
  border: 1.5px solid #18fffb24;
  border-radius: 2.1em;
  box-shadow: 0 6px 42px #27ffe1a5, 0 1.5px 0 #1a334e;
  padding: 32px 32px 36px 32px;
  margin-bottom: 2.5em;
}
.glass-card-ui {
  background: rgba(17, 26, 38, 0.94);
  border: 1.5px solid #19d9e922;
  border-radius: 1.25em;
  box-shadow: 0 4px 18px #0f334444;
  transition: box-shadow 0.17s;
}
.glass-card-ui:hover {
  box-shadow: 0 6px 28px #13e6b744;
}
.button-futur {
  border-radius: 1em;
  font-size: 1.06em;
  font-weight: 700;
  min-width: 170px;
  max-width: 260px;
  width: 100%;
  text-align: center;
  white-space: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7em 1.1em;
  box-sizing: border-box;
  word-break: break-word;
}
.button-futur:disabled {
  opacity: .65;
  filter: grayscale(0.18);
}
.button-futur:hover:not(:disabled),
.button-futur:focus:not(:disabled) {
  background: linear-gradient(90deg, #42eaff 0%, #47b3ff 100%);
  color: #0b2533;
}
.analysis-two-col {
  display: flex;
  width: 100%;
  align-items: stretch;
  gap: 0;
  min-height: 600px;
}
.col-board,
.col-coach {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1em 0.3em 1.5em 0.3em;
  box-sizing: border-box;
  min-height: 100%;
}
.col-board {
  flex: 0 0 40%;
  max-width: 40%;
}
.col-coach {
  flex: 0 0 60%;
  max-width: 60%;
}
.col-board .chessboard-nav-row,
.col-board .flex.gap-4 {
  width: 100%;
}
.col-coach {
  /* Astuce : prend toute la hauteur de la .analysis-two-col, même si la card de gauche est plus haute */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.col-board .flex.gap-4>.button-futur,
.col-board .flex.gap-4>.button-futur-nav {
  max-width: 220px;
  min-width: 120px;
  width: 100%;
}
@media (max-width: 1100px) {

  .col-board,
  .col-coach {
    padding: 1em 0.3em 1.3em 0.3em;
    max-width: 100%;
  }

  .analysis-two-col {
    flex-direction: column;
  }
}
@media (max-width: 650px) {
  .button-futur {
    width: 98vw;
    max-width: 98vw;
    font-size: 1em;
    padding: 0.7em 0.3em;
  }

  .analysis-two-col {
    flex-direction: column;
  }

  .col-board,
  .col-coach {
    max-width: 100%;
    min-width: 0;
    padding-left: 0.2em;
    padding-right: 0.2em;
  }
}
.analysis-two-col.equal-cols {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 620px;
}
.analysis-two-col.equal-cols>.col-board {
  flex: 0 0 40%;
  max-width: 40%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: auto;
  box-sizing: border-box;
}
.analysis-two-col.equal-cols>.col-coach {
  flex: 0 0 60%;
  max-width: 60%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: auto;
  box-sizing: border-box;
}
@media (max-width: 1100px) {
  .analysis-two-col.equal-cols {
    flex-direction: column;
    min-height: unset;
  }

  .analysis-two-col.equal-cols>.col-board,
  .analysis-two-col.equal-cols>.col-coach {
    max-width: 100%;
    height: auto;
    min-height: unset;
  }
}
/* Resserre les boutons dans la colonne latérale GameViewPage */
.side-col-flex .button-futur,
.side-col-flex .button-futur-nav {
  width: auto !important;
  min-width: 58px;
  max-width: 90px;
  padding-left: 1.1em;
  padding-right: 1.1em;
  font-size: 1em;
}
/* === Flux d'activités / listes latérales === */
.activity-badge {
  display: inline-block;
  border-radius: 10px;
  padding: 0.12em 0.6em;
  background: #1a2231;
  border: 1px solid #2deca166;
  color: #d7fff1;
  font-size: 0.85em;
  font-weight: 600;
}
.sidebar-list li+li {
  margin-top: 0.45rem;
}
/* Styles pour les articles dans le flux d'activité */
.prose {
  color: #d1d5db;
}
.prose a {
  color: #5eead4;
}
.prose a:hover {
  text-decoration: underline;
}
/* ==== Media thumbnails (articles) : taille = échiquier, alignement fixe ==== */
.media-thumb {
  width: 100%;
  max-width: 330px;
  /* même largeur que la preview d'une partie */
  aspect-ratio: 1 / 1;
  /* carré, comme l'échiquier 320x320 */
  border-radius: 18px;
  background: #191e2e;
  border: 2.5px solid #25292f;
  padding: 12px 0;
  overflow: hidden;
  display: block;
  box-shadow: 0 0 34px #00fff744, 0 2px 24px #000b;
}
.media-thumb img,
.media-thumb video {
  width: 100%;
  height: 100%;
  display: block;
  /* évite les espaces inline et décalages */
  -o-object-fit: cover;
     object-fit: cover;
  /* pas de déformation */
}
/* assure l’empilement correct dans le flux Reddit-like */
.reddit-card .premium-preview-img {
  display: block;
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal-content {
  width: 90%;
  max-width: 1100px;
  max-height: 85vh;
  overflow: auto;
}
.w-md-editor {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid #2a3b40;
  border-radius: 8px;
}
.w-md-editor-toolbar {
  background: #0f172a;
  border-bottom: 1px solid #2a3b40;
}
.w-md-editor-content,
.w-md-editor-preview {
  background: #0b1220;
}
.w-md-editor-text,
.w-md-editor-text-input,
.wmde-markdown {
  color: #e5e7eb;
}
.wmde-markdown a {
  color: #38bdf8;
}
.w-md-editor-toolbar {
  background: #121a26 !important;
  border-bottom: 1px solid #19eab0aa !important;
}
.w-md-editor-toolbar li button {
  color: #d7ffea !important;
  opacity: 0.85;
}
.w-md-editor-toolbar li button:hover {
  color: #19eab0 !important;
  opacity: 1;
}
.w-md-editor {
  border: 1.5px solid #19eab033 !important;
  border-radius: 10px !important;
  background: rgba(16, 22, 30, 0.95) !important;
}
.w-md-editor-content,
.w-md-editor-preview {
  background: #0e1620 !important;
  color: #eafaf2 !important;
}
img.media-thumb,
video.media-thumb {
  max-height: 50vh !important;
  /* s’adapte à la hauteur d’écran */
  height: 260px !important;
  /* valeur par défaut au-dessus */
  width: auto !important;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
/* Optimisation de la largeur pour la Home : sidebar plus étroite pour laisser de l'espace au flux */
.home-layout .main-col-flex {
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
}
@media (min-width: 900px) {
  .home-layout .side-col-flex {
    flex: 0 0 320px !important;
    width: 320px !important;
  }
}
/* === FIX CommunityThread width on desktop === */
/* Neutralise l'ancien max-width:420px appliqué à .community-thread */
@media (min-width: 768px) {
  .community-thread {
    min-width: 0 !important;
    max-width: none !important;
    width: 100% !important;
  }
}
/* Rend la grille plus confortable et la colonne droite fluide */
.ct-grid {
  grid-template-columns: 40% 1fr !important;
  gap: 1.5rem !important;
}
/* Force 100% width on compact/mobile mode */
.ct-grid-compact,
.compact-mode .ct-grid {
  grid-template-columns: 1fr !important;
  gap: 1rem !important;
}
.ct-right {
  min-width: 0 !important;
  width: 100% !important;
}
/* Lisibilité des cartes */
.ct-item {
  word-break: normal;
  overflow-wrap: anywhere;
}
/* Optionnel: resserre un peu le composer */
.ct-textarea {
  min-height: 100px;
}
/* Réponse à #N @user */
.ct-reply {
  color: #93c5fd;
  font-size: .75rem
}
/* Article rich content */
.article-img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 12px 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}
/* Article rich content */
.article-content {
  line-height: 1.6;
  display: flow-root;
  /* Fix containment of floating images */
  margin-bottom: 40px;
}
.article-content img.article-img-left {
  float: left;
  max-width: 45%;
  max-height: 480px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 20px 10px 0;
  cursor: zoom-in;
}
.article-content img.article-img-right {
  float: right;
  max-width: 45%;
  max-height: 480px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 0 10px 20px;
  cursor: zoom-in;
}
.article-content img.article-img-center {
  float: none;
  display: block;
  margin: 20px auto;
  max-width: 80%;
  max-height: 70vh;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: zoom-in;
}
@media (max-width: 640px) {

  .article-content img.article-img-left,
  .article-content img.article-img-right,
  .article-content img.article-img-center {
    float: none;
    max-width: 100%;
    margin: 10px 0;
  }
}
.article-tag {
  display: inline-block;
  background: rgba(45, 236, 161, 0.1);
  border: 1px solid rgba(45, 236, 161, 0.2);
  color: #2deca1;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  text-decoration: none;
}
.article-tag:hover {
  background: rgba(45, 236, 161, 0.2);
  border-color: #2deca1;
  box-shadow: 0 0 10px rgba(45, 236, 161, 0.3);
}
/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.lightbox-img {
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .5);
}
.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  background: rgba(17, 24, 39, .85);
  color: #e5e7eb;
  border: 1px solid #374151;
  border-radius: 999px;
  padding: .35rem .6rem;
  font-size: 1rem;
  cursor: pointer;
}
.lightbox-close:hover {
  filter: brightness(1.1);
}
/* Images très larges dans le flux: évite toute débordement */
.article-content img {
  max-width: 100%;
  height: auto;
}
/* === CHESSCOIN STYLES === */
/* Composant ChesscoinBalance - Mode compact (navbar) */
.chesscoin-balance.compact {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(90deg, #2a3a1f 0%, #1a2a2f 100%);
  border: 1.5px solid #6fffba66;
  border-radius: 12px;
  padding: 0.35em 0.75em;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.chesscoin-balance.compact:hover {
  background: linear-gradient(90deg, #3a4a2f 0%, #2a3a3f 100%);
  border-color: #6fffba;
  box-shadow: 0 0 12px #6fffba44;
  transform: translateY(-1px);
}
.chesscoin-icon {
  font-size: 1.2em;
  line-height: 1;
}
.chesscoin-amount {
  font-weight: 700;
  color: #ffe366;
  font-size: 0.95em;
  letter-spacing: 0.02em;
}
/* Carte de solde Chesscoin - Mode complet */
.chesscoin-balance-card {
  background: linear-gradient(135deg, #1a2419 0%, #1f2a2f 100%);
  border: 2px solid #6fffba55;
  box-shadow: 0 4px 24px #6fffba22;
}
.chesscoin-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.stat-label {
  font-size: 0.85rem;
  color: #9fb5c9;
  font-weight: 500;
}
.stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
/* Page d'historique Chesscoin */
.chesscoin-history-page {
  max-width: 1200px;
  margin: 0 auto;
}
/* Responsive */
@media (max-width: 768px) {
  .chesscoin-balance.compact {
    padding: 0.3em 0.6em;
  }

  .chesscoin-icon {
    font-size: 1.1em;
  }

  .chesscoin-amount {
    font-size: 0.9em;
  }
}
/* Boutons modernes */
.button-futur {
  position: relative;
  background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.35rem 0.8rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(20, 184, 166, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  overflow: hidden;
  white-space: nowrap;
}
.button-futur::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.button-futur:hover::before {
  left: 100%;
}
.button-futur:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}
.button-futur:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(20, 184, 166, 0.3);
}
.button-futur:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
/* --- COACH IA PREMIUM UI --- */
.coach-ia-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 96%;
  align-self: center;
}
@media (max-width: 1200px) {
  .coach-ia-grid {
    flex-direction: column;
    align-items: center;
  }
}
.radar-container-premium {
  flex: 3;
  min-width: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}
.stats-container-premium {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 280px;
}
/* Score Global Card */
.global-score-card {
  background: radial-gradient(circle at top left, rgba(46, 236, 161, 0.15), rgba(30, 34, 41, 0.95));
  border: 2px solid #2deca1;
  border-radius: 1.2rem;
  padding: 0.8rem 1rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(45, 236, 161, 0.15), inset 0 0 15px rgba(45, 236, 161, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.global-score-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.global-score-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(45, 236, 161, 0.25);
}
.global-score-label {
  font-family: 'Orbitron', sans-serif;
  color: #2deca1;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  display: block;
}
.global-score-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 20px rgba(45, 236, 161, 0.6);
  line-height: 1;
}
/* KPI Mini Grid */
.kpi-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.kpi-mini-card {
  background: rgba(40, 45, 55, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.8rem;
  padding: 0.5rem 0.8rem 0.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  transition: all 0.2s ease;
  backdrop-filter: blur(5px);
}
.kpi-mini-card:hover {
  background: rgba(50, 55, 65, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.02);
}
.kpi-icon-wrapper {
  font-size: 1.2rem;
  padding: 0.35rem;
  border-radius: 50%;
  margin-bottom: 0.1rem;
}
.kpi-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #a0a0a0;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.kpi-value {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  padding-right: 12px;
}
/* Themes par KPI */
.theme-tactique {
  border-top: 3px solid #ff5e5e;
}
.theme-tactique .kpi-icon-wrapper {
  color: #ff5e5e;
  background: rgba(255, 94, 94, 0.1);
}
.theme-strategie {
  border-top: 3px solid #36d1ff;
}
.theme-strategie .kpi-icon-wrapper {
  color: #36d1ff;
  background: rgba(54, 209, 255, 0.1);
}
.theme-complicite {
  border-top: 3px solid #ffde59;
}
.theme-complicite .kpi-icon-wrapper {
  color: #ffde59;
  background: rgba(255, 222, 89, 0.1);
}
.theme-nervosite {
  border-top: 3px solid #ff31f9;
}
.theme-nervosite .kpi-icon-wrapper {
  color: #ff31f9;
  background: rgba(255, 49, 249, 0.1);
}
/* IA Coach Box */
.coach-advice-premium {
  margin-top: 1.5rem;
  padding: 1.2rem 1.2rem 1.2rem 0;
  background: linear-gradient(135deg, rgba(25, 30, 40, 0.95), rgba(40, 45, 55, 0.95));
  border: 1px solid rgba(45, 236, 161, 0.2);
  border-left: 4px solid #2deca1;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  width: 96%;
  align-self: center;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.8rem;
}
.coach-advice-icon {
  font-size: 1.6rem;
  color: #2deca1;
  flex-shrink: 0;
  margin-top: 0.2rem;
  padding-left: 1rem;
}
.coach-advice-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e0e0;
}
.advice-section {
  margin-bottom: 1rem;
}
.advice-label {
  display: block;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.advice-label.current {
  color: #2deca1;
}
.advice-label.history {
  color: #36d1ff;
}
/* --- STICKY DISCUSSION DRAWER --- */
/* ── Sticky Discussion: Bottom Sheet Design ── */
/* Trigger bar fixed at bottom */
.sticky-discussion-trigger {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 0.5rem 0.5rem;
  pointer-events: none;
}
.sticky-trigger-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(16, 22, 30, 0.92);
  backdrop-filter: blur(16px) saturate(1.6);
  border: 1.5px solid rgba(45, 236, 161, 0.35);
  border-radius: 1rem;
  padding: 0.55rem 1.4rem;
  cursor: pointer;
  box-shadow: 0 -2px 20px rgba(45, 236, 161, 0.12), 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease;
  animation: trigger-pulse 3s infinite ease-in-out;
}
.sticky-trigger-inner:hover {
  transform: translateY(-2px);
  box-shadow: 0 -4px 24px rgba(45, 236, 161, 0.25), 0 6px 16px rgba(0, 0, 0, 0.5);
  border-color: rgba(45, 236, 161, 0.6);
}
.sticky-trigger-inner:active {
  transform: scale(0.97);
}
.sticky-trigger-icon {
  font-size: 1.1rem;
}
.sticky-trigger-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2deca1;
}
.sticky-trigger-arrow {
  font-size: 0.85rem;
  color: #2deca1;
  transition: transform 0.3s ease;
  font-weight: bold;
}
.sticky-trigger-arrow:not(.expanded) {
  animation: bounce-up 1.5s ease infinite;
}
@keyframes trigger-pulse {

  0%,
  100% {
    box-shadow: 0 -2px 15px rgba(45, 236, 161, 0.1), 0 4px 12px rgba(0, 0, 0, 0.4);
    border-color: rgba(45, 236, 161, 0.3);
  }

  50% {
    box-shadow: 0 -4px 20px rgba(45, 236, 161, 0.25), 0 4px 12px rgba(0, 0, 0, 0.4);
    border-color: rgba(45, 236, 161, 0.55);
  }
}
@keyframes bounce-up {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}
/* Backdrop overlay */
.sticky-sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  animation: fade-in 0.2s ease;
}
/* Bottom sheet container */
.sticky-sheet-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  background: rgba(16, 22, 30, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 1.2rem 1.2rem 0 0;
  border-top: 2px solid rgba(45, 236, 161, 0.3);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.6);
  animation: sheet-slide-up 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes sheet-slide-up {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
/* Sheet header with handle */
.sticky-sheet-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.6rem 1rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.sticky-sheet-handle {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 0.5rem;
}
.sticky-sheet-title-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sticky-sheet-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2deca1;
}
.sticky-sheet-close {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #aaa;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.sticky-sheet-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
/* Scrollable body */
.sticky-sheet-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem;
  -webkit-overflow-scrolling: touch;
}
/* Compact mode overrides for CommunityThread inside the sheet */
.sticky-sheet-body .community-thread {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.sticky-sheet-body .ct-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(16, 22, 30, 0.95);
  backdrop-filter: blur(8px);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.sticky-sheet-body .ct-textarea {
  min-height: 50px;
  max-height: 100px;
  font-size: 0.8rem;
}
.sticky-sheet-body .ct-item {
  padding: 0.6rem;
  margin-bottom: 0.3rem;
}
.sticky-sheet-body .ct-body {
  font-size: 0.82rem;
  line-height: 1.4;
}
.sticky-sheet-body .ct-meta {
  font-size: 0.7rem;
}
/* Old classes kept for backward compatibility on desktop */
.sticky-discussion-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.drawer-trigger {
  pointer-events: auto;
  background: rgba(30, 34, 41, 0.85);
  backdrop-filter: blur(12px) saturate(1.5);
  border: 1.5px solid rgba(45, 236, 161, 0.4);
  border-bottom: none;
  border-radius: 1.2rem 1.2rem 0 0;
  padding: 0.6rem 2rem;
  color: #2deca1;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 -4px 20px rgba(45, 236, 161, 0.15);
  transition: all 0.3s ease;
  animation: drawer-glow 3s infinite ease-in-out;
}
.drawer-trigger:hover {
  background: rgba(40, 45, 55, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 -6px 25px rgba(45, 236, 161, 0.3);
  border-color: rgba(45, 236, 161, 0.8);
}
.drawer-content {
  pointer-events: auto;
  width: 100%;
  max-width: 1200px;
  height: 60vh;
  background: rgba(16, 22, 30, 0.98);
  backdrop-filter: blur(20px);
  border-top: 2px solid rgba(45, 236, 161, 0.3);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.drawer-content.collapsed {
  transform: translateY(100%);
  height: 0;
}
.drawer-inner-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}
@keyframes drawer-glow {

  0%,
  100% {
    box-shadow: 0 -4px 15px rgba(45, 236, 161, 0.15);
    border-color: rgba(45, 236, 161, 0.4);
  }

  50% {
    box-shadow: 0 -6px 25px rgba(45, 236, 161, 0.35);
    border-color: rgba(45, 236, 161, 0.8);
  }
}
/* --- MOBILE MENU PREMIUM REDESIGN --- */
.premium-menu-drawer {
  background: rgba(15, 20, 28, 0.98) !important;
  backdrop-filter: blur(25px) saturate(1.8) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.premium-menu-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(148, 163, 184, 0.8);
  text-transform: uppercase;
  margin: 1.5rem 0 0.5rem 0.5rem;
}
.premium-nav-link {
  font-size: 1.05rem !important;
  font-weight: 500 !important;
  padding: 0.8rem 1rem !important;
  border-radius: 14px !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border: 1px solid transparent !important;
  color: #cbd5e1 !important;
}
.premium-nav-link.active {
  background: rgba(45, 236, 161, 0.1) !important;
  color: #2deca1 !important;
  border-color: rgba(45, 236, 161, 0.2) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}
.premium-btn-gold {
  background: linear-gradient(135deg, rgba(217, 176, 74, 0.1) 0%, rgba(181, 142, 54, 0.15) 100%) !important;
  border: 1px solid rgba(217, 176, 74, 0.4) !important;
  color: #f3cf8a !important;
  box-shadow: 0 4px 15px rgba(217, 176, 74, 0.1) !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.8rem !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  width: 100% !important;
}
.premium-btn-gold::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: rotate(45deg);
  animation: gold-shimmer 4s infinite linear;
}
@keyframes gold-shimmer {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) rotate(45deg);
  }
}
.premium-user-header {
  padding: 1.8rem 1.4rem !important;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.03), transparent) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}
.premium-lang-pill {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.4rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  background: rgba(255, 255, 255, 0.02) !important;
  transition: all 0.2s ease;
  cursor: pointer;
}
.premium-lang-pill.active {
  background: rgba(45, 236, 161, 0.1) !important;
  border-color: rgba(45, 236, 161, 0.4) !important;
  color: #2deca1 !important;
}
.premium-lang-pill:hover:not(.active) {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}