.fet-content {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--purple) 100%);
    min-height: 100vh;
}

.fet-tickets {
    position: relative;
}

.fet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.fet-ticket-card {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.ticket-header {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticket-header h3 {
    color: var(--mustard);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.price {
    display: inline-block;
    background: var(--mustard);
    color: var(--dark-blue);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.2rem;
}

.ticket-body {
    padding: 1.5rem;
    color: white;
}

.ticket-body p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.benefits li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.benefits li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--mustard);
}

.ticket-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.buy-fet {
    width: 100%;
    padding: 1rem;
    background: var(--mustard);
    color: var(--dark-blue);
    border: 2px solid var(--mustard);
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.buy-fet:hover {
    background: transparent;
    color: var(--mustard);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 192, 45, 0.3);
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 126, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* FET Buy Modal Styles */
#buyFetModal .form-select {
    text-overflow: ellipsis;
    white-space: normal;
    overflow: visible;
    min-height: 50px;
    height: auto;
    padding: 0.5rem;
}

#buyFetModal .form-select option {
    white-space: normal;
    padding: 8px;
    line-height: 1.4;
}

#matchSelect {
    font-size: 0.9rem;
}

#matchSelect option {
    padding: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .fet-content {
        padding: 1rem 0;
    }

    .fet-tickets {
        padding: 0;
    }

    .fet-ticket-card {
        margin: 0 0 1rem 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .ticket-header {
        padding: 1rem;
        border-radius: 0;
    }

    .ticket-header h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .price {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    .ticket-body {
        padding: 1rem;
    }

    .ticket-body p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .benefits {
        margin-bottom: 1rem;
    }

    .benefits li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .ticket-footer {
        padding: 1rem;
    }

    .buy-fet {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .container {
        padding-left: 0;
        padding-right: 0;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .col-md-4 {
        padding-left: 0;
        padding-right: 0;
    }

    #buyFetModal .modal-body {
        padding: 1rem;
    }

    #matchSelect {
        font-size: 0.85rem;
    }

    #matchSelect option {
        padding: 8px;
    }
}
