#modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1000;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1001;
}

.investment-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(20, 20, 25, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1002;
}

.modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    z-index: 1003;
    padding: 0;
}

.modal-close:hover {
    opacity: 1;
}

.modal-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #7A4FFC 0%, #4F74FC 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.modal-content h4 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-align: center;
}

.choice-comparison {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.choice-option {
    flex: 1;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.choice-option:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.choice-option.highlight {
    border: 1px solid rgba(74, 111, 255, 0.3);
    background: rgba(74, 111, 255, 0.1);
}

.choice-option.highlight:hover {
    background: rgba(74, 111, 255, 0.15);
}

.choice-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.choice-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.choice-content p {
    opacity: 0.8;
    line-height: 1.4;
}

.vs-divider {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    opacity: 0.5;
    padding: 0 1rem;
}

.button-container {
    margin-top: 2rem;
    padding: 0 1rem;
}

.button-container button {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fade-button {
    background: linear-gradient(135deg, #FF6B2C 0%, #FF4B2B 100%);
    border: none;
    box-shadow: 0 0 20px rgba(255, 107, 44, 0.3);
    color: white;
    transform: perspective(1px) translateZ(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fade-button:hover {
    background: linear-gradient(135deg, #FF4B2B 0%, #FF6B2C 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 5px 20px rgba(255, 107, 44, 0.5);
}

.glow-button {
    background: linear-gradient(135deg, #4A6FFF 0%, #2C4FFF 100%);
    border: none;
    box-shadow: 0 0 20px rgba(74, 111, 255, 0.3);
    color: white;
    transform: perspective(1px) translateZ(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glow-button:hover {
    background: linear-gradient(135deg, #2C4FFF 0%, #4A6FFF 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 5px 20px rgba(74, 111, 255, 0.5);
}

@media (max-width: 768px) {
    .investment-modal {
        padding: 1.5rem;
        margin: 0;
        width: 95%;
        max-height: 85vh;
    }

    .modal-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .modal-content h4 {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .choice-comparison {
        flex-direction: column;
        gap: 1rem;
    }

    .vs-divider {
        margin: 0.5rem 0;
        justify-content: center;
        font-size: 1.25rem;
    }

    .choice-option {
        padding: 1.25rem;
    }

    .choice-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .choice-content p {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .button-container {
        margin-top: 1rem;
    }

    .button-container button {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
} 