html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    background: #0f0f0f;
    color: #eaeaea;
}
.neon-text {
    text-shadow: 0 0 8px rgba(228, 79, 239, 0.6), 0 0 20px rgba(228, 79, 239, 0.3);
}
.neon-border {
    box-shadow: 0 0 8px rgba(228, 79, 239, 0.4), 0 0 20px rgba(228, 79, 239, 0.15);
}
.highlight {
    color: #e44fef;
    font-weight: bold;
}
.why-choose-fixed-background {
    background-attachment: fixed;
    background-image: url('images/why-choose-cointech2u.png');
    background-size: cover;
    background-position: center;
}
.bg-gray-800 {
    background-color: #1a1a1a;
}
.bg-gray-700 {
    background-color: #222222;
}
.bg-gray-900 {
    background-color: #0f0f0f;
}
.text-gray-100 {
    color: #f7f7f7;
}
.text-gray-300 {
    color: #b0b0b0;
}

/* ─── Override Tailwind cyan → white (links/titles) or accent (interactive) ─── */

/* Nav & general links: white, not pink */
.text-cyan-400 {
    color: #f7f7f7 !important;
}
.text-cyan-300 {
    color: #eaeaea !important;
}
.hover\:text-cyan-300:hover {
    color: #e44fef !important;
}

/* Borders on CTA buttons: use accent */
.border-cyan-400 {
    border-color: #e44fef !important;
}
.border-cyan-500 {
    border-color: #e44fef !important;
}
.border-cyan-500\/30 {
    border-color: rgba(228, 79, 239, 0.3) !important;
}
.hover\:border-cyan-500\/50:hover {
    border-color: rgba(228, 79, 239, 0.5) !important;
}

/* Button hover fills */
.hover\:bg-cyan-400:hover {
    background-color: #e44fef !important;
    color: #0f0f0f !important;
}
.bg-cyan-400 {
    background-color: #e44fef !important;
}
.bg-cyan-500 {
    background: linear-gradient(135deg, #e44fef, #9b45fe) !important;
}
.hover\:bg-cyan-600:hover {
    background: linear-gradient(135deg, #c93fdb, #7b35ce) !important;
}

/* Login / CTA gradient button: cyan-blue → magenta-purple */
/* Force white text since original used text-black (invisible on dark gradient) */
.from-cyan-400 {
    color: #ffffff !important;
}
.from-cyan-400 {
    --tw-gradient-from: #e44fef !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
}
.to-blue-500 {
    --tw-gradient-to: #9b45fe !important;
}
.hover\:from-cyan-300:hover {
    --tw-gradient-from: #d040e0 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
}
.hover\:to-blue-400:hover {
    --tw-gradient-to: #8535ee !important;
}

/* Shadow overrides */
.shadow-cyan-500\/25 {
    --tw-shadow-color: rgba(228, 79, 239, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), 0 10px 15px -3px rgba(228, 79, 239, 0.25) !important;
}
.shadow-cyan-500\/40 {
    --tw-shadow-color: rgba(228, 79, 239, 0.4) !important;
}
.hover\:shadow-cyan-500\/40:hover {
    --tw-shadow-color: rgba(228, 79, 239, 0.4) !important;
}

/* Back-to-top button */
button.bg-cyan-400 {
    background: linear-gradient(135deg, #e44fef, #9b45fe) !important;
    color: #fff !important;
}

/* ─── Legacy ul.relative nav styles ─── */
ul.relative {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    list-style: none;
    padding: 10px 20px;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

ul.relative > li > a {
    color: #f7f7f7;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

ul.relative > li > a:hover {
    background-color: rgba(228, 79, 239, 0.15);
    color: #e44fef;
}

ul.relative > li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    padding: 10px 0;
    z-index: 10;
}

ul.relative > li > ul > li > a,
ul.relative > li > ul > li > ul > li > a {
    color: #eaeaea;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    white-space: nowrap;
    width: 100%;
    transition: background-color 0.3s ease;
}

ul.relative > li > ul > li > a:hover,
ul.relative > li > ul > li > ul > li > a:hover {
    background-color: rgba(228, 79, 239, 0.15);
    color: #e44fef;
    border-radius: 5px;
}

ul.relative > li:hover > ul {
    display: block;
}

ul.relative > li > ul > li > ul {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    padding: 10px 0;
}

ul.relative > li > ul > li:hover > ul {
    display: block;
}
