/* Collaborations Styles */

.collab-section-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-primary);
    border-left: 4px solid var(--accent-primary);
    padding-left: 12px;
}

.active-collabs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.collab-card {
    border-radius: 16px;
    padding: 24px;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.collab-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.copy-link-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

/* Removed hidden/absolute styles */

.copy-link-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.1);
}

.copy-link-btn:active {
    transform: scale(0.95);
}

/* Specific Gradients */
.collab-card.skyultraplus {
    background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 50%, #a855f7 100%);
}

.collab-card.stellar {
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #10b981 100%);
}

.collab-card.mitzuki {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
}

.collab-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.collab-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.95;
    flex-grow: 1;
}

.collab-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.collab-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.collab-link:hover {
    background: rgba(255, 255, 255, 0.35);
}

.collab-link i {
    font-size: 16px;
}

.glass-container {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}