:root {
    --primary: #6c63ff;
    --secondary: #37cfa4;
    --tertiary: #9a54bc;
    --dark: #2a2a2a;
    --light: #f9f9f9;
    --accent: #00c9a7;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
    scroll-padding-top: 80px;
}

/* Common Elements */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-button {
    text-decoration: none;
    background: linear-gradient(90deg, var(--tertiary), var(--secondary));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
}

.gradient-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 50% 50%, rgba(154, 84, 188, 0.1), transparent 70%);
    z-index: -1;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glow {
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px -10px var(--tertiary);
    }
    to {
        box-shadow: 0 0 20px 10px var(--tertiary);
    }
}

/* Header and Navigation */
header {
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--light);
}

.logo-text span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a, .footer-col a {
    position: relative;
    transition: color 0.3s;
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
}

.nav-links a::after, .footer-col a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(90deg, var(--tertiary), var(--secondary));
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .footer-col a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 120px 0 80px;
    position: relative;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(90deg, var(--tertiary), var(--secondary));
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

.hero p {
    font-size: 20px;
    max-width: 600px;
    margin-bottom: 30px;
}

/* About Section */
.about {
    padding: 80px 20px;
    background-color: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 40px auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

/* Center the about section content */
.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

/* Make sure stats are centered and properly spaced */
.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    width: 100%;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(55, 207, 164, 0.3);
}

.stat-item h3 {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.member-avatar {
    height: 120px;
    background: linear-gradient(45deg, var(--tertiary), var(--secondary));
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    margin-bottom: 5px;
    font-size: 20px;
}

.member-info h4 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
}

/* Apply Section */
.apply-section, .investor-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(rgba(42, 42, 42, 0.8), rgba(42, 42, 42, 0.8));
    /* TODO */
    /* url('/api/placeholder/1200/400') no-repeat center center; */
    background-size: cover;
    border-radius: 20px;
    margin: 40px auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* DAOcafe Notice */
.daocafe-notice {
    display: flex;
    align-items: flex-start;
    background: rgba(55, 207, 164, 0.1);
    border: 1px solid var(--secondary);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    width: 100%;
    text-align: left;
    animation: fadeInUp 0.8s ease-out forwards;
    transition: transform 0.3s, box-shadow 0.3s;
}

.daocafe-notice:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(55, 207, 164, 0.2);
}

.notice-icon {
    font-size: 24px;
    color: var(--secondary);
    margin-right: 15px;
    flex-shrink: 0;
}

.notice-content h4 {
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 18px;
}

.notice-content p {
    margin-bottom: 12px;
    font-size: 16px;
}

.daocafe-link {
    display: inline-block;
    color: var(--tertiary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.daocafe-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(90deg, var(--tertiary), var(--secondary));
    transition: width 0.3s ease;
}

.daocafe-link:hover {
    color: var(--secondary);
}

.daocafe-link:hover::after {
    width: 100%;
}

.apply-section h2, .investor-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.apply-section p, .investor-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 18px;
}

/* Investor Section Specific Styles */
.investor-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    width: 100%;
    max-width: 900px;
}

.benefit-item {
    background: rgba(42, 42, 42, 0.6);
    border-radius: 12px;
    padding: 25px;
    flex: 1;
    min-width: 200px;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: calc(var(--i, 0) * 0.2s);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(55, 207, 164, 0.2);
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.benefit-item h4 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 18px;
}

.investor-form {
    max-width: 600px;
    width: 100%;
    margin: 20px auto 0;
    text-align: left;
    background: rgba(42, 42, 42, 0.6);
    border-radius: 12px;
    padding: 30px;
    animation: fadeInUp 1s ease-out forwards;
}

.investor-form h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 24px;
    text-align: center;
}

.investor-form p {
    margin-bottom: 25px;
    text-align: center;
}

.form-group select {
    width: 100%;
    padding: 12px;
    background: rgba(154, 84, 188, 0.1);
    border: 1px solid rgba(154, 84, 188, 0.3);
    border-radius: 8px;
    color: var(--light);
    font-size: 16px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    transition: all 0.3s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
}

/* Special styling for the experience dropdown */
.form-group.experience-dropdown .select-wrapper {
    position: relative;
    width: 100%;
}

.form-group.experience-dropdown .select-display {
    width: 100%;
    padding: 12px;
    background: rgba(154, 84, 188, 0.1);
    border: 1px solid rgba(154, 84, 188, 0.3);
    border-radius: 8px;
    color: var(--light);
    font-size: 16px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.form-group.experience-dropdown select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* Make it completely invisible */
    cursor: pointer;
    z-index: 1; /* Lower z-index than the custom dropdown */
    pointer-events: none; /* Prevent it from receiving mouse events on desktop */
}

/* Mobile dropdown support */
@media (max-width: 768px) {
    .form-group.experience-dropdown select {
        pointer-events: auto;
    }

    /* Make dropdown header more clickable on mobile */
    .dropdown-header {
        padding: 15px 12px; /* Slightly larger padding for better touch target */
        -webkit-tap-highlight-color: rgba(154, 84, 188, 0.2); /* Visual feedback for Safari */
        cursor: pointer; /* Ensure cursor shows it's clickable */
    }

    /* Ensure dropdown options are visible when shown on mobile */
    .dropdown-options {
        max-height: 200px;
        overflow-y: auto;
        z-index: 200;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling for Safari */
    }

    /* Improve touch targets for dropdown options */
    .dropdown-option {
        padding: 15px;
        border-bottom: 1px solid rgba(154, 84, 188, 0.1);
        -webkit-tap-highlight-color: rgba(154, 84, 188, 0.2); /* Visual feedback for Safari */
    }

    /* Remove hover dependency for mobile */
    .hover-dropdown .dropdown-options {
        /* These styles will be controlled by JavaScript on mobile */
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    }

    /* Hover dropdown shouldn't rely on hover for mobile */
    .hover-dropdown:hover .dropdown-options {
        /* Don't automatically show on hover for mobile - JS will handle this */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
    }

    /* Safari-specific fixes */
    .hover-dropdown.active .dropdown-options {
        display: block !important; /* Force display in Safari */
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
}

/* Safari-specific fixes for all screen sizes */
@supports (-webkit-touch-callout: none) {
    /* Target Safari */
    .dropdown-header {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(154, 84, 188, 0.2);
    }

    .dropdown-option {
        -webkit-tap-highlight-color: rgba(154, 84, 188, 0.2);
    }

    /* Ensure active state works properly */
    .hover-dropdown.active .dropdown-options {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.form-group.experience-dropdown .select-display:hover,
.form-group.experience-dropdown:hover .select-display {
    border-color: var(--tertiary);
    box-shadow: 0 0 8px rgba(154, 84, 188, 0.3);
    transform: translateY(-2px);
}

.form-group select:hover {
    border-color: var(--tertiary);
    box-shadow: 0 0 8px rgba(154, 84, 188, 0.3);
    transform: translateY(-2px);
}

/* Create a custom dropdown container for hover animation */
.form-group.select-container {
    position: relative;
}

/* Style for dropdown options */
.form-group select option {
    background-color: var(--dark);
    color: var(--light);
    padding: 12px;
}

/* Style for dropdown when open */
.form-group select:focus {
    outline: none;
    border-color: var(--tertiary);
    box-shadow: 0 0 10px rgba(154, 84, 188, 0.5);
}

/* Custom styling for dropdown options */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    .form-group select {
        padding-right: 30px;
    }

    .form-group select option {
        background-color: #3a3a3a;
        color: white;
    }

    .form-group select option:hover,
    .form-group select option:focus,
    .form-group select option:active {
        background: linear-gradient(90deg, var(--tertiary), var(--secondary));
        background-color: var(--secondary);
    }
}

/* Hover dropdown styles */
.form-group.hover-dropdown {
    position: relative;
}

.dropdown-container {
    position: relative;
    width: 100%;
}

.dropdown-header {
    width: 100%;
    padding: 12px;
    background: rgba(154, 84, 188, 0.1);
    border: 1px solid rgba(154, 84, 188, 0.3);
    border-radius: 8px;
    color: var(--light);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(42, 42, 42, 0.95);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 100;
    overflow: hidden;
}

.hover-dropdown .dropdown-header:hover,
.hover-dropdown.active .dropdown-header {
    border-color: var(--tertiary);
    box-shadow: 0 0 12px rgba(154, 84, 188, 0.5);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239a54bc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

.hover-dropdown:hover .dropdown-options,
.hover-dropdown.active .dropdown-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-option {
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    opacity: 0;
    transform: translateY(-5px);
}

.hover-dropdown:hover .dropdown-option {
    animation: optionFadeIn 0.4s forwards;
}

/* Stagger the animation for each option */
.hover-dropdown:hover .dropdown-option:nth-child(1) {
    animation-delay: 0.05s;
}
.hover-dropdown:hover .dropdown-option:nth-child(2) {
    animation-delay: 0.1s;
}
.hover-dropdown:hover .dropdown-option:nth-child(3) {
    animation-delay: 0.15s;
}
.hover-dropdown:hover .dropdown-option:nth-child(4) {
    animation-delay: 0.2s;
}

.dropdown-option:hover {
    background: linear-gradient(90deg, var(--tertiary), var(--secondary));
    color: white;
}

.dropdown-option.selected {
    background: linear-gradient(90deg, var(--tertiary), var(--secondary));
    color: white;
}

.apply-form {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(154, 84, 188, 0.1);
    border: 1px solid rgba(154, 84, 188, 0.3);
    border-radius: 8px;
    color: var(--light);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--tertiary);
    box-shadow: 0 0 8px rgba(154, 84, 188, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--tertiary);
    box-shadow: 0 0 10px rgba(154, 84, 188, 0.5);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* Form Messages */
.form-message {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.form-message.success {
    background-color: rgba(55, 207, 164, 0.2);
    border: 1px solid var(--secondary);
}

.form-message.error {
    background-color: rgba(255, 99, 71, 0.2);
    border: 1px solid tomato;
}

/* Footer */
footer {
    padding: 60px 0 30px;
    background-color: rgba(30, 30, 30, 0.5);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--tertiary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--secondary);
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Thank You Page Specific Styles */
body.thank-you-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.thank-you-card {
    background-color: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
}

.thank-you-page .container {
    max-width: 800px;
    padding: 40px 20px;
}

.thank-you-page h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--tertiary), var(--secondary));
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.thank-you-page p {
    font-size: 20px;
    margin-bottom: 30px;
}

.thank-you-page .cta-button {
    display: inline-block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 40px;
    }

    .about-content {
        flex-direction: column;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .daocafe-notice {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .notice-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .investor-benefits {
        flex-direction: column;
        align-items: center;
    }

    .benefit-item {
        width: 100%;
        max-width: 300px;
    }

    .investor-form {
        padding: 20px;
    }
}

@keyframes dropdownFadeIn {
    0% {
      opacity: 0;
      transform: translateY(-15px);
    }
    70% {
      opacity: 1;
      transform: translateY(3px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
}

/* Dropdown option animation */
@keyframes optionFadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Base styles for the select element */
.investor-form .form-group select {
    opacity: 0;
    transform: translateY(-15px);
    transition: none; /* Prevent any transitions from interfering */
}

/* Animation triggered by JavaScript */
.investor-form .form-group select.animate-dropdown,
.investor-form .form-group select {
    animation: dropdownFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.3s;
}

/* Add animation to the form group containing the select for a staggered effect */
.investor-form .form-group:nth-child(3) {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

/* Custom animated dropdown styles */
.investor-form .form-group.experience-dropdown {
    position: relative;
}

/* Create a custom animated dropdown */
.animated-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: rgba(42, 42, 42, 0.95);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(-10px) scaleY(0.8);
    transform-origin: top center;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 200; /* Higher z-index to appear above the select */
    overflow: hidden;
}

/* Style for the custom dropdown container */
.investor-form .form-group.experience-dropdown {
    cursor: pointer;
}

/* Add a subtle animation to the select display on hover */
.investor-form .form-group.experience-dropdown .select-display {
    transition: all 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Show the dropdown on hover */
.investor-form .form-group.experience-dropdown:hover .animated-dropdown {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    pointer-events: auto;
}

/* Hide the default dropdown arrow in some browsers */
.investor-form .form-group.experience-dropdown select::-ms-expand {
    display: none;
}

/* Make the select element appear as a regular div */
.investor-form .form-group.experience-dropdown select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.dropdown-option {
    padding: 12px 15px;
    color: var(--light);
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    opacity: 0;
    transform: translateY(-5px);
}

.investor-form .form-group.experience-dropdown:hover .dropdown-option {
    animation: optionFadeIn 0.4s forwards;
}

/* Stagger the animation for each option */
.investor-form .form-group.experience-dropdown:hover .dropdown-option:nth-child(1) {
    animation-delay: 0.05s;
}
.investor-form .form-group.experience-dropdown:hover .dropdown-option:nth-child(2) {
    animation-delay: 0.1s;
}
.investor-form .form-group.experience-dropdown:hover .dropdown-option:nth-child(3) {
    animation-delay: 0.15s;
}
.investor-form .form-group.experience-dropdown:hover .dropdown-option:nth-child(4) {
    animation-delay: 0.2s;
}

.dropdown-option:hover {
    background: linear-gradient(90deg, var(--tertiary), var(--secondary));
    color: white;
}

.dropdown-option.selected {
    background: linear-gradient(90deg, var(--tertiary), var(--secondary));
    color: white;
    position: relative;
}

.dropdown-option.selected::after {
    content: '✓';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

/* Glow effect on hover */
.investor-form .form-group.experience-dropdown:hover select {
    box-shadow: 0 0 15px rgba(154, 84, 188, 0.6);
    border-color: var(--tertiary);
}
