/* Tools Page Styles */

#tools-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tool-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #55ddff, #4aa3ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.tool-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #55ddff, #4aa3ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(85, 221, 255, 0.3);
}

.tool-icon i {
    font-size: 1.5rem;
    color: white;
}

.tool-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.tool-title {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tool-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tool-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(85, 221, 255, 0.2);
    color: #55ddff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(85, 221, 255, 0.3);
}

.feature-tag.showcase {
    background: rgba(255, 165, 2, 0.2);
    color: #ffa502;
    border-color: rgba(255, 165, 2, 0.3);
}

.feature-tag.coming {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

.tool-footer {
    margin-top: auto;
}

.btn-tool {
    background: linear-gradient(135deg, #55ddff, #4aa3ff);
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(85, 221, 255, 0.3);
}

.btn-tool:hover {
    background: linear-gradient(135deg, #4aa3ff, #3d8bff);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(85, 221, 255, 0.4);
    color: white;
}

.btn-tool-showcase {
    background: linear-gradient(135deg, #ffa502, #ff7675);
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(255, 165, 2, 0.3);
}

.btn-tool-showcase:hover {
    background: linear-gradient(135deg, #ff7675, #fd79a8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 2, 0.4);
    color: white;
}

.btn-tool-disabled {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    cursor: not-allowed;
    display: inline-flex;
    align-items: center;
}

/* Showcase Cards */
.showcase-card .tool-icon {
    background: linear-gradient(135deg, #ffa502, #ff7675);
    box-shadow: 0 8px 20px rgba(255, 165, 2, 0.3);
}

/* Coming Soon Cards */
.coming-soon {
    opacity: 0.7;
    position: relative;
}

.coming-soon .tool-icon {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.coming-soon .tool-icon i {
    color: rgba(255, 255, 255, 0.6);
}

/* Call to Action */
.tools-cta {
    background: rgba(85, 221, 255, 0.1);
    border: 1px solid rgba(85, 221, 255, 0.3);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
}

.tools-cta h3 {
    color: #55ddff;
    margin-bottom: 1rem;
}

.tools-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.btn-cta {
    background: linear-gradient(135deg, #55ddff, #4aa3ff);
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(85, 221, 255, 0.4);
}

.btn-cta:hover {
    background: linear-gradient(135deg, #4aa3ff, #3d8bff);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(85, 221, 255, 0.5);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .tool-card {
        padding: 1.5rem;
    }
    
    .tool-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .tool-icon i {
        font-size: 1.25rem;
    }
    
    .tools-cta {
        padding: 2rem;
    }
    
    .tools-cta h3 {
        font-size: 1.5rem;
    }
}