/* Tix Protocol Specific Styles */

.tix-hero {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%),
                var(--bg-dark);
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

.tix-accent {
    background: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.ticket-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.ticket-card.featured {
    border-color: #f97316;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
}

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

.ticket-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border-radius: 20px;
}

.ticket-physical {
    background: linear-gradient(135deg, #6b7280 0%, #374151 100%);
}

.ticket-digital {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.ticket-nft {
    background: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
}

.feature-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: #f97316;
    margin-top: 10px;
}

.flow-container {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 50px;
    width: 2px;
    height: calc(100% + 10px);
    background: linear-gradient(180deg, #f97316 0%, #ec4899 100%);
}

.flow-number {
    min-width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    margin-right: 20px;
    position: relative;
    z-index: 1;
}

.flow-content h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.flow-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Mobile Showcase Styles */
.showcase-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .showcase-wrapper {
        grid-template-columns: 1fr;
    }
}

.showcase-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-features {
    list-style: none;
    margin: 30px 0;
}

.showcase-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.showcase-features li::before {
    content: '✓';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
    border-radius: 50%;
    color: white;
    text-align: center;
    line-height: 24px;
    font-weight: 700;
    flex-shrink: 0;
}