.feature-detail-section {
    color: #ffffff;
    padding: 4rem 0;
    background: linear-gradient(45deg, #1a1b1f, #2c2f33);
    position: relative;
    overflow: hidden;
}

.feature-detail-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at center, rgba(245, 69, 164, 0.1), transparent 70%);
    pointer-events: none;
    animation: rotate 30s linear infinite;
}

.feature-section h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
    background: linear-gradient(120deg, #ffffff, #f545a4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-section .lead {
    color: #ffffff;
    font-size: 1.2rem;
}

.feature-section p {
    color: #e0e0e0;
    line-height: 1.6;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.capability-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(245, 69, 164, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.capability-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(245, 69, 164, 0.1), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(245, 69, 164, 0.3);
    border-color: #f545a4;
}

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

.capability-card i {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f545a4;
    position: relative;
}

.capability-card h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    position: relative;
}

.capability-card p {
    color: #e0e0e0;
    font-size: 0.95rem;
    margin: 0;
    position: relative;
}

.usage-section {
    background: rgba(245, 69, 164, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(245, 69, 164, 0.2);
    box-shadow: 0 0 30px rgba(245, 69, 164, 0.1);
    backdrop-filter: blur(10px);
}

.usage-section .chat-example {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.chat-example .bot-message {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.bot-message img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 1rem;
    box-shadow: 0 2px 10px rgba(245, 69, 164, 0.3);
    border: 2px solid rgba(245, 69, 164, 0.3);
}

.bot-message .message-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 0 12px 12px 12px;
    color: #ffffff;
    border: 1px solid rgba(245, 69, 164, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.coming-soon-section {
    margin-top: 3rem;
    margin-bottom: 4rem;
    background: rgba(245, 69, 164, 0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(245, 69, 164, 0.2);
    box-shadow: 0 0 30px rgba(245, 69, 164, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.coming-soon-section::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: radial-gradient(circle at center, rgba(245, 69, 164, 0.1), transparent 70%);
    pointer-events: none;
    animation: rotate 20s linear infinite;
}

.coming-soon-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    background: linear-gradient(120deg, #ffffff, #f545a4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    position: relative;
}

.coming-soon-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(245, 69, 164, 0.2);
    font-weight: 500;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.coming-soon-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 69, 164, 0.2);
    border-color: #f545a4;
}

.coming-soon-list li i {
    color: #f545a4;
}

/* Premium Banner */
.premium-banner {
    background: linear-gradient(45deg, #1a1b1f, #2c2f33);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(114, 137, 218, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.premium-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: radial-gradient(circle at center, rgba(245, 69, 164, 0.15), transparent 70%);
    pointer-events: none;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.premium-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.premium-icon {
    font-size: 3rem;
    color: #f545a4;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.premium-banner h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(120deg, #ffffff, #f545a4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-banner .lead {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.premium-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.premium-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
}

.premium-feature i {
    color: #f545a4;
}

.premium-cta {
    margin-top: 2rem;
}

.btn-premium.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: linear-gradient(45deg, #f545a4, #9a45f5);
    border: none;
    color: white;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(245, 69, 164, 0.3);
}

.btn-premium.btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 69, 164, 0.4);
    background: linear-gradient(45deg, #f873bc, #b373f8);
}

.premium-note {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}
