/* ========== DOCS SUPPORT SECTION ========== */
.docs-support {
    padding: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 50%, #3c4aa3 100%);
    position: relative;
    overflow: hidden;
    border-radius: 0 0 0.5rem 0.5rem;
    animation: docsSectionGlow 60s ease-in-out infinite;
}

/* Subtle ambient effects for entire section */
@keyframes docsSectionGlow {
    0%, 100% {
        filter: brightness(1) contrast(1);
    }
    50% {
        filter: brightness(1.05) contrast(1.02);
    }
}

.docs-support > * {
    position: relative;
    z-index: 10;
}

.docs-support h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    border-bottom: none;
    padding-bottom: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.docs-support h2::before {
    display: none;
}

.docs-support p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    background: none;
    border: none;
    padding: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.support-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.support-discord,
.support-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
    min-width: 200px;
    height: 56px;
    padding: 0 1.5rem;
    text-transform: none;
    letter-spacing: 0.025em;
    border: none;
    outline: none;
}

.support-discord {
    background: linear-gradient(135deg, #5865f2, #4752c4);
    color: white;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    position: relative;
    overflow: hidden;
}

.support-discord::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.support-discord:hover::before {
    width: 300px;
    height: 300px;
}

.support-discord:hover {
    background: linear-gradient(135deg, #6c7bff, #5865f2);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(108, 123, 255, 0.6);
}

.support-discord:focus {
    outline: none;
    background: linear-gradient(135deg, #5865f2, #4752c4);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
}

.support-email {
    background: linear-gradient(135deg, #4a5568, #2d3748);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(74, 85, 104, 0.3);
    position: relative;
    overflow: hidden;
}

.support-email::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.support-email:hover::before {
    width: 300px;
    height: 300px;
}

.support-email:hover {
    background: linear-gradient(135deg, #5a6c7d, #4a5568);
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(74, 85, 104, 0.5);
}

.support-email:focus {
    outline: none;
    background: linear-gradient(135deg, #4a5568, #2d3748);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(74, 85, 104, 0.4);
}

.support-discord svg,
.support-email svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
} 