/* Tournament Entry Page Specific Styles */
        .tournament-entry-page {
            width: 100%;
        }
        
        /* Hero/Banner Section */
        .tournament-banner {
            position: relative;
            width: 100%;
            height: 45vh;
            background-color: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }
        
        .tournament-banner-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-position: 50% 63%; 
        }
        
        .tournament-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0);
            z-index: 1;
        }
        
        .tournament-banner h1 {
            position: relative;
            z-index: 2;
            color: white;
            font-size: 3rem;
            font-weight: 400;
            margin: 0;
            text-transform: none;
            letter-spacing: normal;
        }
        
        /* Product Grid Section */
        .tournament-products {
            background-color: white;
        }
        
        .tournament-products-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .tournament-products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
            margin-top: 40px;
        }
        
        .tournament-product-card {
            background: transparent;
            border: none;
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s ease;
        }
        
        .tournament-product-card:hover {
            transform: translateY(-5px);
        }
        
        .tournament-product-image-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 3/2;
            overflow: hidden;
            margin-bottom: 20px;
        }
        
        .tournament-product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .tournament-product-card:hover .tournament-product-image {
            transform: scale(1.05);
        }
        
        .tournament-product-meta {
            padding: 0 10px;
        }
        
        .tournament-product-title {
            font-size: 1.5rem;
            font-weight: 300;
            color: #333;
            margin: 0 0 10px 0;
            line-height: 1.3;
        }
        
        .tournament-product-price {
            font-size: 1.25rem;
            font-weight: 400;
            color: black;
            padding-bottom: 40px;
        }
        
        /* Loading state */
        .loading {
            text-align: center;
            padding: 20px;
            color: #666;
        }
        
        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .tournament-banner {
                height: 35vh;
            }
            
            .tournament-banner h1 {
                font-size: 2.5rem;
            }
            
            .tournament-products {
                padding: 40px 0;
            }
            
            .tournament-products-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .tournament-banner h1 {
                font-size: 2rem;
            }
            
            .tournament-products {
                padding: 40px 0;
            }
        }

/* Single Tournament Layout */
.single-tournament-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.single-tournament-card {
    width: calc(100% + 100px);
    max-width: 800px;
    margin: 20px auto;
}

.single-tournament-card .tournament-product-card {
    width: 100%;
}

.single-tournament-card .tournament-product-image-wrapper {
    aspect-ratio: 3/2;
}

/* Membership Grid */
.membership-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 40px;
}

/* Multiple Tournaments Grid */
.multiple-tournaments-grid {
    display: grid;
    gap: 60px;
    margin-bottom: 40px;
}

/* Tournament cards - general styles that apply to all */
.tournament-product-card {
    background: transparent;
    border: none;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    width: 100%;
}

.single-tournament-card .tournament-product-card:hover {
    transform: translateY(-5px);
}

/* Mobile Responsiveness for single tournament */
@media (max-width: 768px) {
    .single-tournament-card {
        width: 100%;
        max-width: 100%;
    }
    
    .single-tournament-container {
        padding: 0 10px;
    }
    
    .membership-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .multiple-tournaments-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .single-tournament-card {
        width: 100%;
    }
}