/* アプリ一覧ページ専用CSS */

/* 絵文字専用フォント指定 */
.app-icon-large,
.dev-icon {
    font-family: 'Noto Color Emoji', 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
}

.app-header {
    background: white;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 0;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #764ba2;
}

.separator {
    margin: 0 0.5rem;
    color: #999;
}

.hero-apps {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-apps h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-apps .tagline {
    font-size: 1.2rem;
    opacity: 0.9;
}

.apps-showcase {
    padding: 4rem 0;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.app-showcase-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.app-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.app-showcase-card.featured {
    border: 2px solid #667eea;
}

.app-showcase-card.coming-soon {
    opacity: 0.7;
    border: 2px dashed #ccc;
}

.app-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.app-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.coming-soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #6c757d;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.app-content {
    padding: 2rem;
}

.app-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.app-category {
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: #f8f9fa;
    color: #495057;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid #e9ecef;
}

.app-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: #666;
}

.meta-icon {
    font-size: 1rem;
}

.app-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border: 2px solid #667eea;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.btn-disabled {
    background: #6c757d;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: not-allowed;
    opacity: 0.6;
}

.development-info {
    background: #f8f9fa;
    padding: 4rem 0;
}

.development-info h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.dev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.dev-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.dev-item:hover {
    transform: translateY(-5px);
}

.dev-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.dev-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.dev-item p {
    color: #666;
    line-height: 1.6;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero-apps h1 {
        font-size: 2rem;
    }
    
    .hero-apps .tagline {
        font-size: 1rem;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .app-banner {
        padding: 1.5rem;
    }
    
    .app-content {
        padding: 1.5rem;
    }
    
    .app-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-disabled {
        text-align: center;
    }
    
    .app-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .dev-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dev-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-apps {
        padding: 60px 0;
    }
    
    .apps-showcase {
        padding: 3rem 0;
    }
    
    .development-info {
        padding: 3rem 0;
    }
    
    .app-showcase-card {
        margin: 0 10px;
    }
}