/* Thanus AI - Advanced Animations and Visual Effects */

/* Glowing Particles */
.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(110, 0, 255, 0.8) 0%, rgba(0, 217, 255, 0.4) 70%, transparent 100%);
    border-radius: 50%;
    filter: blur(3px);
    pointer-events: none;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(110, 0, 255, 0.7), 0 0 20px rgba(0, 217, 255, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(110, 0, 255, 0.8), 0 0 30px rgba(0, 217, 255, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(110, 0, 255, 0.7), 0 0 20px rgba(0, 217, 255, 0.5);
    }
}

/* Glow Animation */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(110, 0, 255, 0.5), 0 0 10px rgba(0, 217, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(110, 0, 255, 0.8), 0 0 30px rgba(0, 217, 255, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(110, 0, 255, 0.5), 0 0 10px rgba(0, 217, 255, 0.3);
    }
}

/* Typing Cursor Animation */
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Gradient Text Animation */
@keyframes gradientText {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Futuristic Loader Animation */
@keyframes loader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Neural Network Animation */
.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0.2;
}

.node {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

.connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, rgba(110, 0, 255, 0.5), rgba(0, 217, 255, 0.5));
    transform-origin: left center;
    z-index: -1;
}

/* Holographic Effect */
.holographic {
    position: relative;
    overflow: hidden;
}

.holographic::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(110, 0, 255, 0.1) 25%,
        transparent 50%,
        rgba(0, 217, 255, 0.1) 75%,
        transparent 100%
    );
    transform: rotate(30deg);
    animation: holographic 6s linear infinite;
    pointer-events: none;
}

@keyframes holographic {
    0% {
        transform: translateX(-50%) translateY(-50%) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) translateY(-50%) rotate(360deg);
    }
}

/* Futuristic Button Hover Effect */
.future-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.future-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    transition: all 0.5s ease;
}

.future-btn:hover::before {
    left: 100%;
}

.future-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--primary-color) 0%,
        var(--secondary-color) 50%,
        var(--primary-color) 100%
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.future-btn:hover::after {
    transform: scaleX(1);
}

/* Data Flow Animation */
.data-flow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
    opacity: 0.1;
}

.data-particle {
    position: absolute;
    width: 2px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 10px;
    filter: blur(1px);
    animation: dataFlow linear infinite;
}

@keyframes dataFlow {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100vh);
    }
}

/* Futuristic Card Hover Effect */
.future-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.future-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(110, 0, 255, 0.1) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.future-card:hover::before {
    opacity: 1;
}

.future-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.future-card:hover::after {
    transform: scaleX(1);
}

/* Cybernetic Grid Background */
.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(110, 0, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(110, 0, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -1;
    opacity: 0.2;
}

/* Glitch Text Effect */
.glitch {
    position: relative;
    animation: glitch 5s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--secondary-color);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--accent-color);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 var(--secondary-color), -0.05em -0.025em 0 var(--accent-color);
    }
    14% {
        text-shadow: 0.05em 0 0 var(--secondary-color), -0.05em -0.025em 0 var(--accent-color);
    }
    15% {
        text-shadow: -0.05em -0.025em 0 var(--secondary-color), 0.025em 0.025em 0 var(--accent-color);
    }
    49% {
        text-shadow: -0.05em -0.025em 0 var(--secondary-color), 0.025em 0.025em 0 var(--accent-color);
    }
    50% {
        text-shadow: 0.025em 0.05em 0 var(--secondary-color), 0.05em 0 0 var(--accent-color);
    }
    99% {
        text-shadow: 0.025em 0.05em 0 var(--secondary-color), 0.05em 0 0 var(--accent-color);
    }
    100% {
        text-shadow: -0.025em 0 0 var(--secondary-color), -0.025em -0.025em 0 var(--accent-color);
    }
}

@keyframes glitch-anim {
    0% {
        clip: rect(10px, 9999px, 31px, 0);
    }
    5% {
        clip: rect(99px, 9999px, 94px, 0);
    }
    10% {
        clip: rect(23px, 9999px, 37px, 0);
    }
    15% {
        clip: rect(88px, 9999px, 9px, 0);
    }
    20% {
        clip: rect(42px, 9999px, 68px, 0);
    }
    25% {
        clip: rect(18px, 9999px, 72px, 0);
    }
    30% {
        clip: rect(37px, 9999px, 41px, 0);
    }
    35% {
        clip: rect(71px, 9999px, 21px, 0);
    }
    40% {
        clip: rect(2px, 9999px, 48px, 0);
    }
    45% {
        clip: rect(50px, 9999px, 53px, 0);
    }
    50% {
        clip: rect(23px, 9999px, 40px, 0);
    }
    55% {
        clip: rect(76px, 9999px, 99px, 0);
    }
    60% {
        clip: rect(46px, 9999px, 10px, 0);
    }
    65% {
        clip: rect(11px, 9999px, 16px, 0);
    }
    70% {
        clip: rect(89px, 9999px, 69px, 0);
    }
    75% {
        clip: rect(38px, 9999px, 21px, 0);
    }
    80% {
        clip: rect(63px, 9999px, 59px, 0);
    }
    85% {
        clip: rect(44px, 9999px, 51px, 0);
    }
    90% {
        clip: rect(23px, 9999px, 35px, 0);
    }
    95% {
        clip: rect(3px, 9999px, 32px, 0);
    }
    100% {
        clip: rect(92px, 9999px, 60px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(65px, 9999px, 99px, 0);
    }
    5% {
        clip: rect(79px, 9999px, 49px, 0);
    }
    10% {
        clip: rect(12px, 9999px, 46px, 0);
    }
    15% {
        clip: rect(26px, 9999px, 8px, 0);
    }
    20% {
        clip: rect(92px, 9999px, 61px, 0);
    }
    25% {
        clip: rect(2px, 9999px, 35px, 0);
    }
    30% {
        clip: rect(38px, 9999px, 27px, 0);
    }
    35% {
        clip: rect(48px, 9999px, 31px, 0);
    }
    40% {
        clip: rect(89px, 9999px, 84px, 0);
    }
    45% {
        clip: rect(62px, 9999px, 77px, 0);
    }
    50% {
        clip: rect(15px, 9999px, 63px, 0);
    }
    55% {
        clip: rect(98px, 9999px, 46px, 0);
    }
    60% {
        clip: rect(65px, 9999px, 30px, 0);
    }
    65% {
        clip: rect(51px, 9999px, 69px, 0);
    }
    70% {
        clip: rect(23px, 9999px, 21px, 0);
    }
    75% {
        clip: rect(18px, 9999px, 57px, 0);
    }
    80% {
        clip: rect(70px, 9999px, 37px, 0);
    }
    85% {
        clip: rect(67px, 9999px, 78px, 0);
    }
    90% {
        clip: rect(75px, 9999px, 13px, 0);
    }
    95% {
        clip: rect(67px, 9999px, 47px, 0);
    }
    100% {
        clip: rect(67px, 9999px, 36px, 0);
    }
}

/* Futuristic Loader */
.future-loader {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--primary-color);
    border-bottom-color: var(--secondary-color);
    animation: loader 1.5s linear infinite;
}

.future-loader::before,
.future-loader::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}

.future-loader::before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px solid transparent;
    border-left-color: var(--accent-color);
    border-right-color: var(--primary-color);
    animation: loader 2s linear infinite reverse;
}

.future-loader::after {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid transparent;
    border-top-color: var(--secondary-color);
    border-bottom-color: var(--accent-color);
    animation: loader 1s linear infinite;
}

/* Futuristic Typing Effect */
.typing::after {
    content: '|';
    animation: blink 1s infinite;
}

/* Neon Glow Effect */
.neon-glow {
    text-shadow: 
        0 0 5px rgba(110, 0, 255, 0.7),
        0 0 10px rgba(110, 0, 255, 0.5),
        0 0 15px rgba(110, 0, 255, 0.3),
        0 0 20px rgba(0, 217, 255, 0.2);
}

/* Futuristic Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(5, 1, 24, 0.7);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--secondary-color), var(--accent-color));
}

/* Animated Gradient Border */
.gradient-border {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--primary-color), 
        var(--secondary-color), 
        var(--accent-color), 
        var(--primary-color));
    background-size: 400% 400%;
    animation: gradientBorder 3s ease infinite;
    z-index: -1;
    border-radius: 17px;
}

@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Futuristic Tooltip */
.future-tooltip {
    position: relative;
    cursor: pointer;
}

.future-tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    padding: 0.5rem 1rem;
    background: rgba(5, 1, 24, 0.9);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    color: var(--light-text);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.future-tooltip::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: var(--primary-color) transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.future-tooltip:hover::before,
.future-tooltip:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Futuristic Checkbox */
.future-checkbox {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.future-checkbox input {
    opacity: 0;
    width: 0;
    height: 0;
}

.future-checkbox-mark {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: rgba(5, 1, 24, 0.7);
    border: 1px solid var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.future-checkbox input:checked ~ .future-checkbox-mark {
    background: var(--primary-color);
}

.future-checkbox-mark::after {
    content: '';
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.future-checkbox input:checked ~ .future-checkbox-mark::after {
    display: block;
}

/* Futuristic Radio Button */
.future-radio {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.future-radio input {
    opacity: 0;
    width: 0;
    height: 0;
}

.future-radio-mark {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: rgba(5, 1, 24, 0.7);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.future-radio input:checked ~ .future-radio-mark {
    border-color: var(--secondary-color);
    border-width: 2px;
}

.future-radio-mark::after {
    content: '';
    position: absolute;
    display: none;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary-color);
}

.future-radio input:checked ~ .future-radio-mark::after {
    display: block;
}

/* Futuristic Switch */
.future-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.future-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.future-switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 1, 24, 0.7);
    border: 1px solid var(--primary-color);
    border-radius: 34px;
    transition: all 0.3s ease;
}

.future-switch-slider::before {
    position: absolute;
    content: '';
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 3px;
    background: var(--light-text);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.future-switch input:checked ~ .future-switch-slider {
    background: var(--primary-color);
}

.future-switch input:checked ~ .future-switch-slider::before {
    transform: translateX(26px);
    background: var(--light-text);
}

/* Futuristic Progress Bar */
.future-progress {
    width: 100%;
    height: 10px;
    background: rgba(5, 1, 24, 0.7);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.future-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
    transition: width 0.3s ease;
    position: relative;
}

.future-progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    animation: progressShine 2s infinite linear;
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Futuristic Badge */
.future-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.future-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    animation: badgeShine 3s infinite linear;
}

@keyframes badgeShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Futuristic Alert */
.future-alert {
    padding: 1rem;
    border-radius: 10px;
    background: rgba(5, 1, 24, 0.7);
    border-left: 4px solid var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.future-alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(110, 0, 255, 0.1) 0%,
        transparent 100%
    );
    z-index: -1;
}

.future-alert-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.future-alert-content {
    color: rgba(255, 255, 255, 0.8);
}

/* Futuristic Tabs */
.future-tabs {
    display: flex;
    border-bottom: 1px solid rgba(110, 0, 255, 0.2);
    margin-bottom: 1rem;
}

.future-tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.future-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.future-tab.active {
    color: var(--light-text);
}

.future-tab.active::after {
    transform: scaleX(1);
}

.future-tab:hover {
    color: var(--light-text);
}

.future-tab:hover::after {
    transform: scaleX(1);
}

/* Futuristic Accordion */
.future-accordion {
    border: 1px solid rgba(110, 0, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.future-accordion-header {
    padding: 1rem;
    background: rgba(5, 1, 24, 0.7);
    color: var(--light-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.future-accordion-header:hover {
    background: rgba(110, 0, 255, 0.1);
}

.future-accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(5, 1, 24, 0.5);
}

.future-accordion.active .future-accordion-content {
    padding: 1rem;
    max-height: 500px;
}

.future-accordion-icon {
    transition: transform 0.3s ease;
}

.future-accordion.active .future-accordion-icon {
    transform: rotate(180deg);
}

/* Futuristic Modal */
.future-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 0, 16, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.future-modal.active {
    opacity: 1;
    visibility: visible;
}

.future-modal-content {
    background: rgba(5, 1, 24, 0.9);
    border: 1px solid rgba(110, 0, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    transform: translateY(30px);
    transition: all 0.3s ease;
    position: relative;
}

.future-modal.active .future-modal-content {
    transform: translateY(0);
}

.future-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.future-modal-close:hover {
    color: var(--light-text);
    transform: rotate(90deg);
}

.future-modal-header {
    margin-bottom: 1rem;
}

.future-modal-title {
    font-size: 1.5rem;
    color: var(--light-text);
}

.future-modal-body {
    margin-bottom: 1.5rem;
}

.future-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Futuristic Dropdown */
.future-dropdown {
    position: relative;
    display: inline-block;
}

.future-dropdown-toggle {
    background: rgba(5, 1, 24, 0.7);
    color: var(--light-text);
    border: 1px solid rgba(110, 0, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.future-dropdown-toggle:hover {
    background: rgba(110, 0, 255, 0.1);
}

.future-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: rgba(5, 1, 24, 0.9);
    border: 1px solid rgba(110, 0, 255, 0.3);
    border-radius: 5px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.future-dropdown.active .future-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.future-dropdown-item {
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.future-dropdown-item:hover {
    background: rgba(110, 0, 255, 0.1);
    color: var(--light-text);
}

/* Futuristic Tooltip */
.future-tooltip {
    position: relative;
    display: inline-block;
}

.future-tooltip-text {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(5, 1, 24, 0.9);
    color: var(--light-text);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.future-tooltip:hover .future-tooltip-text {
    opacity: 1;
    visibility: visible;
}

.future-tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: rgba(5, 1, 24, 0.9) transparent transparent transparent;
}

/* Futuristic Notification */
.future-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(5, 1, 24, 0.9);
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateX(120%);
    transition: transform 0.3s ease;
    z-index: 1000;
    max-width: 300px;
}

.future-notification.active {
    transform: translateX(0);
}

.future-notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.future-notification-title {
    font-weight: 600;
    color: var(--secondary-color);
}

.future-notification-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.future-notification-close:hover {
    color: var(--light-text);
}

.future-notification-body {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.future-notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    width: 100%;
    animation: notificationProgress 5s linear forwards;
}

@keyframes notificationProgress {
    0% {
        width: 100%;
    }
    100% {
        width: 0%;
    }
}