/* Polygon Tickets Frontend Styles */
.polygon-ticket-info {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    border-left: 4px solid #8247E5;
}

.polygon-ticket-info h3 {
    color: #8247E5;
    margin-bottom: 20px;
    font-size: 24px;
}

.ticket-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 20px;
}

.ticket-availability {
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.availability-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 10px;
}

.availability-fill {
    height: 100%;
    background: linear-gradient(45deg, #8247E5, #A855F7);
    transition: width 0.3s ease;
}

.wallet-connect-notice {
    background: #E8F4FD;
    border: 1px solid #2196F3;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notice-icon {
    font-size: 32px;
}

.notice-text strong {
    color: #1976D2;
    font-size: 18px;
}

.notice-text p {
    margin: 5px 0 0 0;
    color: #1976D2;
}

#polygon_wallet_fields {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.wallet-connect-section {
    margin-top: 15px;
    text-align: center;
}

#connect-metamask {
    background: linear-gradient(45deg, #f6851b, #e2761b);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#connect-metamask:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(246, 133, 27, 0.3);
}

@media (max-width: 768px) {
    .ticket-features {
        grid-template-columns: 1fr;
    }
    
    .notice-content {
        flex-direction: column;
        text-align: center;
    }
}