/* ============================================
   UiKitCard.css - Bot & Feature Card Styles
   ============================================ */

/* Bots Grid */
.bots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Bot Card */
.bot-card {
    background: rgba(255, 255, 255, 0.04);
    border: none;
    border-radius: 24px;
    padding: 56px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: inset var(--shadow-inner-dark), var(--shadow-outer-dark);
}

.bot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-orange), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.bot-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset var(--shadow-inner-orange), var(--shadow-outer-orange);
}

/* Bot Icon */
.bot-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: block;
}

/* Bot Name */
.bot-name {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--color-text-primary);
}

/* Bot Description */
.bot-description {
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 1.6;
}

/* Bot Features List */
.bot-features {
    list-style: none;
    margin-bottom: 40px;
}

.bot-features li {
    padding: 12px 0;
    color: var(--color-text-secondary);
    font-size: 17px;
    padding-left: 24px;
    position: relative;
}

.bot-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-orange);
    font-size: 24px;
    line-height: 1;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Feature Card */
.feature-card {
    text-align: center;
    padding: 48px 32px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    border-radius: 16px;
    position: relative;
    box-shadow: inset var(--shadow-inner-dark), var(--shadow-outer-dark);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(119, 0, 204, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-16px) rotate(2deg);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: inset var(--shadow-inner-purple), var(--shadow-outer-purple);
}

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

/* Feature Icon */
.feature-icon {
    font-size: 56px;
    margin-bottom: 24px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Feature Title */
.feature-title {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--color-text-primary);
}

/* Feature Description */
.feature-desc {
    color: var(--color-text-secondary);
    font-size: 17px;
    line-height: 1.6;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
    .bots-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .bot-card {
        padding: 32px;
    }
}

