/* Support & Resources Section */
.support-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05) 0%, rgba(0, 191, 166, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .support-section {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.03) 0%, rgba(0, 191, 166, 0.03) 100%);
}

.support-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.support-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

[data-theme="light"] .support-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(108, 99, 255, 0.15);
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(0, 191, 166, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.support-card:hover {
    transform: translateY(-10px);
    border-color: rgba(108, 99, 255, 0.5);
    box-shadow: 0 20px 60px rgba(108, 99, 255, 0.3);
}

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

.support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6c63ff 0%, #00bfa6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

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

.support-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.support-icon i {
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 1;
}

.support-card.docs .support-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.support-card.help .support-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.support-card.community .support-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.support-card.updates .support-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.support-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #f1f5f9;
    font-weight: 700;
    position: relative;
}

[data-theme="light"] .support-card h3 {
    color: #1e293b;
}

.support-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

[data-theme="light"] .support-card p {
    color: #64748b;
}

.support-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.support-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #cbd5e1;
    font-size: 0.95rem;
}

[data-theme="light"] .support-features li {
    color: #475569;
}

.support-features li i {
    color: #6c63ff;
    font-size: 0.875rem;
}

.support-card .btn-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #6c63ff 0%, #00bfa6 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.support-card .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00bfa6 0%, #6c63ff 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.support-card .btn-primary:hover::before {
    opacity: 1;
}

.support-card .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .support-section {
        padding: 60px 0;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support-card {
        padding: 2rem;
    }
    
    .support-icon {
        width: 60px;
        height: 60px;
    }
    
    .support-icon i {
        font-size: 2rem;
    }
    
    .support-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .support-card {
        padding: 1.5rem;
    }
    
    .support-features li {
        font-size: 0.875rem;
    }
}
