/* Creation Studio View Styles */

.studio-container {
    padding: 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.studio-header {
    margin-bottom: 3rem;
    text-align: left;
}

.studio-header h2 {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.studio-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
    gap: 2rem;
}

/* Tool Card */
.tool-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(41, 151, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tool-card.coming-soon {
    cursor: not-allowed;
    opacity: 0.65;
}

.tool-card:not(.coming-soon):hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(41, 151, 255, 0.3),
                0 4px 20px rgba(41, 151, 255, 0.2);
    border-color: rgba(41, 151, 255, 0.4);
}

.tool-card:not(.coming-soon):hover::before {
    opacity: 1;
}

/* Tool Icon */
.tool-icon {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.tool-icon i {
    font-size: 2rem;
}

.tool-card:not(.coming-soon):hover .tool-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Icon backgrounds */
.tool-icon.blue {
    background: linear-gradient(135deg, rgba(41, 151, 255, 0.15), rgba(41, 151, 255, 0.05));
    border: 1px solid rgba(41, 151, 255, 0.3);
}

.tool-icon.blue i {
    color: #2997ff;
}

.tool-icon.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.tool-icon.purple i {
    color: #8b5cf6;
}

.tool-icon.yellow {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.05));
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.tool-icon.yellow i {
    color: #fbbf24;
}

.tool-icon.pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(236, 72, 153, 0.05));
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.tool-icon.pink i {
    color: #ec4899;
}

.tool-icon.green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.tool-icon.green i {
    color: #22c55e;
}

/* Tool Content */
.tool-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tool-header {
    margin-bottom: 1rem;
}

.tool-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    line-height: 1.3;
}

/* Status Badges */
.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 980px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.status-badge.live {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.status-badge.soon {
    background: rgba(41, 151, 255, 0.15);
    color: #2997ff;
}

/* Tool Description */
.tool-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Tool Footer (Buttons) */
.tool-footer {
    margin-top: auto;
    padding-top: 1rem;
}

.tool-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
}

.tool-cta.launch {
    background: linear-gradient(135deg, #2997ff, #0077ed);
    color: white;
    box-shadow: 0 4px 12px rgba(41, 151, 255, 0.3);
}

.tool-cta.launch:hover {
    box-shadow: 0 6px 16px rgba(41, 151, 255, 0.4);
    transform: translateY(-2px);
    gap: 0.75rem;
}

.tool-cta.coming-soon {
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .studio-header h2 {
        font-size: 2rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tool-card {
        padding: 1.5rem;
    }
}
