/* ── Selection Card System (Premium Dark) ── */

.selection-container {
    padding-top: 80px;
    padding-bottom: 100px;
    max-width: 900px;
    margin: 0 auto;
}

.selection-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(15px);
    border-radius: 24px !important;
    padding: 40px 30px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    text-decoration: none !important;
}

.selection-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(125, 119, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.selection-card:hover {
    transform: translateY(-10px);
    border-color: rgba(125, 119, 255, 0.4) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

/* Color Themes */
.selection-card.theme-blue:hover { border-color: #3876f2 !important; }
.selection-card.theme-purple:hover { border-color: #7d77ff !important; }
.selection-card.theme-pink:hover { border-color: #ff4d94 !important; }

.selection-card h3 {
    color: white !important;
    margin-top: 20px;
    font-weight: 700;
    z-index: 1;
}

.selection-card p {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    z-index: 1;
}

.selection-card .icon-box {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    transition: all 0.4s ease;
    z-index: 1;
}

/* Icon Colors */
.selection-card.theme-blue .icon-box i { color: #3876f2; }
.selection-card.theme-purple .icon-box i { color: #7d77ff; }
.selection-card.theme-pink .icon-box i { color: #ff4d94; }

.selection-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.1);
}

.selection-card.clicked {
    background: rgba(125, 119, 255, 0.2) !important;
    border-color: #7d77ff !important;
    transform: scale(0.98);
}
