:root {
    --primary-color: #0BF8C4;
    --primary-dark: #09d6a8;
    --dark-color: #010001;
    --light-color: #FFFEFE;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --transition-base: all 0.3s ease;
    --box-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --box-shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius-sm: 6px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
}

body.likhun-dark #ClubsTextBox h1,
body.likhun-dark #ClubsTextBox h2,
body.likhun-dark #ClubsTextBox h3,
body.likhun-dark #ClubsTextBox h4,
body.likhun-dark #ClubsTextBox h5,
body.likhun-dark #ClubsTextBox h6 {
    color: var(--light-color) !important;
}

.ta-clubs-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: inherit;
}

.ta-clubs-header {
    margin: 20px 0 40px 0;
    position: relative;
}

.ta-clubs-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.ta-clubs-main-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

.ta-clubs-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-600);
    max-width: 800px;
    margin-bottom: 30px;
}

.ta-clubs-filters {
    background-color: var(--dark-color);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.ta-clubs-filters-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ta-clubs-filter-selectors {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: flex-end;
}

.ta-clubs-filter-item {
    display: flex;
    flex-direction: column;
    min-width: 220px;
    flex: 1;
}

.ta-clubs-filters label {
    margin-bottom: 10px;
    font-size: 0.95rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
}

.ta-clubs-filters select {
    padding: 14px 18px;
    border-radius: var(--border-radius-md);
    border: 2px solid #333;
    background-color: #222;
    color: var(--light-color);
    cursor: pointer;
    width: 100%;
    font-size: 15px;
    transition: all 0.3s ease;
}

.ta-clubs-filters select:hover {
    border-color: #444;
}

.ta-clubs-filters select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(11, 248, 196, 0.2);
}

.ta-clubs-filters select option {
    background-color: #222;
    color: #fff;
    padding: 10px;
}

.ta-clubs-filter-submit-btn {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: none;
    padding: 14px 28px;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    transition: all 0.3s ease;
    height: 52px;
}

.ta-clubs-filter-submit-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(11, 248, 196, 0.3);
}

.ta-clubs-filter-reset-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    height: 52px;
    border: none;
    cursor: pointer;
}

.ta-clubs-filter-reset-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.ta-clubs-results-heading {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.ta-clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.ta-clubs-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: none;
    border: 1px solid var(--gray-200);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, var(--light-color) 0%, var(--gray-100) 100%);
}

.ta-clubs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.ta-clubs-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.ta-clubs-card:hover::after {
    opacity: 1;
}

.ta-clubs-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.ta-clubs-card:hover::before {
    opacity: 1;
    animation: moveSpotlight 2s ease-in-out infinite alternate;
}

@keyframes moveSpotlight {
    0% {
        top: -50%;
        left: -50%;
    }
    100% {
        top: 150%;
        left: 150%;
    }
}

.ta-clubs-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    z-index: 1;
}

.ta-clubs-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.ta-clubs-card:hover .ta-clubs-image-wrapper::after {
    opacity: 1;
}

.ta-clubs-image-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.ta-clubs-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.ta-clubs-card:hover .ta-clubs-image-img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.ta-clubs-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.ta-clubs-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.3;
    box-shadow: none !important;
    text-shadow: none !important;
}

.ta-clubs-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    background-image: linear-gradient(var(--primary-color), var(--primary-color));
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size 0.3s ease, color 0.3s ease;
    box-shadow: none !important;
    text-shadow: none !important;
}

.ta-clubs-title a:hover {
    color: #0BF8C4;
    background-size: 100% 2px;
}

.ta-clubs-title a,
.ta-clubs-title a:hover,
.ta-clubs-title a:focus,
.ta-clubs-title a:active {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

.ta-clubs-location {
    font-style: normal;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #555;
    font-size: 1rem;
    opacity: 0.8;
}

.ta-clubs-location::before {
    content: "📍";
    margin-right: 8px;
    font-size: 1.1rem;
}

.ta-clubs-budget {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    border: none;
    letter-spacing: 0.5px;
    transform: translateY(0);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.ta-clubs-budget-free {
    background-color: rgba(11, 248, 196, 0.15);
    color: var(--dark-color);
}

.ta-clubs-budget-budget {
    background-color: rgba(255, 193, 7, 0.15);
    color: #856404;
}

.ta-clubs-budget-moderate {
    background-color: rgba(255, 133, 27, 0.15);
    color: #cc5500;
}

.ta-clubs-budget-expensive {
    background-color: rgba(220, 53, 69, 0.15);
    color: #721c24;
}

.ta-clubs-card:hover .ta-clubs-budget-free {
    transform: translateY(-3px);
    background-color: rgba(11, 248, 196, 0.25);
}

.ta-clubs-card:hover .ta-clubs-budget-budget {
    transform: translateY(-3px);
    background-color: rgba(255, 193, 7, 0.25);
}

.ta-clubs-card:hover .ta-clubs-budget-moderate {
    transform: translateY(-3px);
    background-color: rgba(255, 133, 27, 0.25);
}

.ta-clubs-card:hover .ta-clubs-budget-expensive {
    transform: translateY(-3px);
    background-color: rgba(220, 53, 69, 0.25);
}

.ta-clubs-meta-info {
    background-color: var(--gray-100);
    padding: 15px;
    border-radius: var(--border-radius-md);
    margin: 15px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ta-clubs-card:hover .ta-clubs-meta-info {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.ta-clubs-meta-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.ta-clubs-meta-row:last-child {
    margin-bottom: 0;
}

.ta-clubs-meta-label {
    font-weight: 600;
    color: #444;
    margin-right: 8px;
    min-width: 75px;
}

.ta-clubs-meta-value {
    color: #555;
}

.ta-clubs-feature-tag {
    display: inline-block;
    padding: 5px 12px;
    background-color: #f3f4f6;
    color: var(--gray-700);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
	font-weight: 700;
}

.ta-clubs-features {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.ta-clubs-genre-tag,
.ta-clubs-dj-tag {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--dark-color);
    color: var(--light-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-base);
    margin-right: 8px;
    margin-bottom: 10px;
    text-decoration: none;
}

.ta-clubs-genre-tag:hover,
.ta-clubs-dj-tag:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
	font-weight: 700;
}

.ta-clubs-dj-tags,
.ta-clubs-genre-tags {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.ta-clubs-no-results {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--gray-100);
    border-radius: var(--border-radius-lg);
    margin-bottom: 50px;
}

.ta-clubs-no-results h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.ta-clubs-no-results p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.ta-clubs-reset-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 12px 25px;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
}

.ta-clubs-reset-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.ta-clubs-single-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}

.ta-clubs-single-header {
    margin-bottom: 40px;
}

.ta-clubs-featured-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    margin-bottom: 30px;
}

.ta-clubs-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ta-clubs-single-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.ta-clubs-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--gray-100);
    border-radius: var(--border-radius-lg);
}

.ta-clubs-meta-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.ta-clubs-meta-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

.ta-clubs-section {
    margin-bottom: 40px;
}

.ta-clubs-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.ta-clubs-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.ta-clubs-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.ta-clubs-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.ta-clubs-social-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background-color: var(--dark-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: var(--border-radius-md);
    transition: var(--transition-base);
    font-weight: 600;
}

.ta-clubs-social-link:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

.ta-clubs-social-icon {
    margin-right: 8px;
    font-size: 1.1rem;
}

.ta-clubs-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    margin-top: 20px;
    box-shadow: var(--box-shadow-md);
}

.ta-clubs-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.ta-clubs-map-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    margin-top: 20px;
    box-shadow: var(--box-shadow-md);
}

.ta-clubs-map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.festival-news-section {
    margin: 40px 0;
    position: relative;
    width: 100%;
}

.festival-carousel-wrapper {
    position: relative;
    width: 100%;
}

.festival-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: var(--border-radius-lg);
}

.festival-carousel-inner {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.festival-carousel-item {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    min-height: 300px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    position: relative;
}

.festival-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    border: none;
}

.festival-carousel-nav:hover {
    background-color: var(--primary-color);
}

.festival-carousel-prev {
    left: -50px;
}

.festival-carousel-next {
    right: -50px;
}

.festival-news-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    min-height: 300px;
}

.festival-news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0) 100%);
    color: white;
    transition: all 0.3s ease;
}

.festival-news-date {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
    font-weight: bold;
}

.festival-news-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    color: #ffffff;
}

.festival-news-link:hover .festival-news-overlay {
    background: linear-gradient(to top, rgba(10,248,197,0.9) 0%, rgba(10,248,197,0.7) 40%, rgba(0,0,0,0) 100%);
}

.ta-clubs-pagination-container {
    margin: 30px 0 50px;
    display: flex;
    justify-content: center;
}

.ta-clubs-page-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ta-clubs-page-numbers li {
    margin: 0;
    padding: 0;
}

.ta-clubs-page-numbers a,
.ta-clubs-page-numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    background-color: var(--light-color);
    color: var(--gray-700);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-base);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.ta-clubs-page-numbers span.current {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.ta-clubs-page-numbers a:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

.ta-clubs-page-numbers a.next,
.ta-clubs-page-numbers a.prev {
    font-size: 20px;
    background-color: var(--dark-color);
    color: var(--light-color);
}

.ta-clubs-page-numbers a.next:hover,
.ta-clubs-page-numbers a.prev:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.ta-clubs-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
    gap: 20px;
}

.ta-clubs-search-box {
    position: relative;
    max-width: 350px;
    flex-shrink: 0;
}

.ta-clubs-search-box form {
    display: flex;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
}

.ta-clubs-search-box input {
    flex-grow: 1;
    padding: 12px 15px;
    border: none;
    font-size: 1rem;
    background-color: #2a2a2a;
    color: #fff;
}

.ta-clubs-search-box input:focus {
    outline: none;
}

.ta-clubs-search-box button {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: none;
    padding: 0 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.ta-clubs-search-box button:hover {
    background-color: var(--primary-dark);
}

#ClubsTextBox {
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

#ClubsTextBox.expanded {
    max-height: 9999px;
}

#ClubsTextReadMore {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
}

#ClubsTextReadMore:hover {
    background-color: var(--primary-dark);
}

body.likhun-dark .ta-clubs-main-title,
body.likhun-dark .ta-clubs-single-title,
body.likhun-dark .ta-clubs-section-title,
body.likhun-dark .ta-clubs-results-heading {
    color: var(--light-color) !important;
}

body.likhun-dark .ta-clubs-card {
    background-color: #222 !important;
    border-color: #333 !important;
    background: linear-gradient(to bottom, #222 0%, #1a1a1a 100%) !important;
}

body.likhun-dark .ta-clubs-card::after {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

body.likhun-dark .ta-clubs-card::before {
    background: radial-gradient(circle, rgba(11,248,196,0.15) 0%, rgba(11,248,196,0) 70%);
}

body.likhun-dark .ta-clubs-title a {
    color: var(--light-color) !important;
}

body.likhun-dark .ta-clubs-title,
body.likhun-dark .ta-clubs-title a {
    box-shadow: none !important;
}

body.likhun-dark .ta-clubs-content,
body.likhun-dark .ta-clubs-description {
    color: #ccc !important;
}

body.likhun-dark .ta-clubs-meta-label,
body.likhun-dark .ta-clubs-meta-value,
body.likhun-dark .ta-clubs-location {
    color: #bbb !important;
}

body.likhun-dark .ta-clubs-feature-tag {
    background-color: #333 !important;
    color: #ccc !important;
    border-color: #444 !important;
}

body.likhun-dark .ta-clubs-single-meta {
    background-color: #222 !important;
}

body.likhun-dark .ta-clubs-meta-info {
    background-color: #2a2a2a !important;
}

body.likhun-dark .ta-clubs-page-numbers a {
    background-color: #333 !important;
    color: #eee !important;
}

body.likhun-dark .ta-clubs-page-numbers span.current {
    background-color: var(--primary-color) !important;
    color: var(--dark-color) !important;
}

.clubs-news-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.clubs-news-heading h2 {
    margin: 0;
}

.clubs-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.clubs-news-item {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition-base);
    background-color: var(--light-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.clubs-news-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.clubs-news-image {
    height: 200px;
    overflow: hidden;
}

.clubs-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.clubs-news-item:hover .clubs-news-image img {
    transform: scale(1.05);
}

.clubs-news-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.clubs-news-date {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 10px;
}

.clubs-news-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.clubs-news-title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.clubs-news-title a:hover {
    color: var(--primary-color);
}

.clubs-news-excerpt {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 15px;
    line-height: 1.5;
}

.clubs-news-readmore {
    margin-top: auto;
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--gray-100);
    color: var(--gray-800);
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-base);
    text-align: center;
}

.clubs-news-readmore:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.clubs-news-loading {
    text-align: center;
    padding: 40px 20px;
}

.clubs-news-loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(11, 248, 196, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

body.likhun-dark .clubs-news-item {
    background-color: #222 !important;
}

body.likhun-dark .clubs-news-title a {
    color: var(--light-color) !important;
}

body.likhun-dark .clubs-news-excerpt,
body.likhun-dark .clubs-news-date {
    color: #bbb !important;
}

body.likhun-dark .clubs-news-readmore {
    background-color: #333 !important;
    color: #eee !important;
}

.ta-clubs-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.ta-clubs-detail-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.ta-clubs-detail-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #000;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.ta-clubs-detail-item h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #0BF8C4;
}

.ta-clubs-detail-item p,
.ta-clubs-detail-item div {
    margin: 0;
    color: #333;
    line-height: 1.5;
}

body.likhun-dark .ta-clubs-detail-item {
    background-color: #222 !important;
}

body.likhun-dark .ta-clubs-detail-item h3 {
    color: #fff !important;
}

body.likhun-dark .ta-clubs-detail-item p,
body.likhun-dark .ta-clubs-detail-item div {
    color: #ddd !important;
}

@media (max-width: 992px) {
    .ta-clubs-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .festival-carousel-item {
        flex: 0 0 calc(50% - 20px);
    }
    
    .ta-clubs-filter-selectors {
        gap: 20px;
    }
    
    .ta-clubs-filter-item {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .ta-clubs-container,
    .ta-clubs-single-container {
        padding: 0 15px;
    }
    
    .ta-clubs-main-title {
        font-size: 2rem;
    }
    
    .ta-clubs-single-title {
        font-size: 2.2rem;
    }
    
    .ta-clubs-filters {
        padding: 25px 20px;
    }
    
    .ta-clubs-filter-selectors {
        flex-direction: column;
        gap: 20px;
    }
    
    .ta-clubs-filter-item {
        min-width: auto;
        width: 100%;
    }
    
    .ta-clubs-filter-submit-btn,
    .ta-clubs-filter-reset-btn {
        width: 100%;
        margin-top: 5px;
    }
    
    .ta-clubs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .ta-clubs-single-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .ta-clubs-socials {
        flex-direction: column;
    }
    
    .ta-clubs-social-link {
        justify-content: center;
    }
    
    .ta-clubs-featured-image {
        height: 250px;
    }
    
    .ta-clubs-title-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ta-clubs-search-box {
        max-width: 100%;
        width: 100%;
    }
    
    .festival-carousel-item {
        flex: 0 0 calc(100% - 20px);
    }
    
    .festival-carousel-prev {
        left: -15px;
    }
    
    .festival-carousel-next {
        right: -15px;
    }
    
    .ta-clubs-card-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .ta-clubs-main-title {
        font-size: 1.8rem;
    }
    
    .ta-clubs-single-title {
        font-size: 1.8rem;
    }
    
    .ta-clubs-section-title {
        font-size: 1.6rem;
    }
    
    .ta-clubs-card-content {
        padding: 20px;
    }
    
    .ta-clubs-filters {
        padding: 15px;
    }
    
    .ta-clubs-page-numbers a,
    .ta-clubs-page-numbers span {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .ta-clubs-grid {
        gap: 25px;
    }
}

.clubs-faqs-section {
    margin-bottom: 40px;
}

.clubs-faq-accordion {
    width: 100%;
}

.clubs-faq-item {
    margin-bottom: 0.5rem;
    background-color: #F8F9F8;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.clubs-faq-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.clubs-faq-item:last-child {
    margin-bottom: 0;
}

.clubs-faq-header {
    position: relative;
    margin: 0;
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    background: none;
    cursor: pointer;
    display: block;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease;
    border: none;
}

.clubs-faq-header:hover {
    background-color: rgba(10, 248, 196, 0.05);
}

.clubs-faq-header.active {
    background-color: rgba(10, 248, 196, 0.1);
    border-left: 4px solid #0BF8C4;
    padding-left: calc(1.5rem - 4px);
}

.clubs-faq-question {
    display: block;
    padding-right: 2rem;
}

.clubs-faq-header:after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: #000000;
    transition: transform 0.3s ease;
}

.clubs-faq-header.active:after {
    content: '−';
    transform: translateY(-50%);
}

.clubs-faq-content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.clubs-faq-content.active {
    height: auto;
}

.clubs-faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: rgba(0, 0, 0, 0.75);
    font-size: 1rem;
    line-height: 1.6;
}

.clubs-faq-item .clubs-faq-header.active + .clubs-faq-content .clubs-faq-answer {
    padding-left: calc(1.5rem - 4px);
}

body.likhun-dark .clubs-faq-item {
    background-color: #222;
}

body.likhun-dark .clubs-faq-header {
    color: #fff;
}

body.likhun-dark .clubs-faq-header:after {
    color: #fff;
}

body.likhun-dark .clubs-faq-header:hover {
    background-color: rgba(10, 248, 196, 0.05);
}

body.likhun-dark .clubs-faq-header.active {
    background-color: rgba(10, 248, 196, 0.1);
}

body.likhun-dark .clubs-faq-answer {
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 768px) {
    .clubs-faq-header {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    .clubs-faq-header:after {
        right: 1.25rem;
        font-size: 1.25rem;
    }
    
    .clubs-faq-header.active {
        padding-left: calc(1.25rem - 4px);
    }
    
    .clubs-faq-answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .clubs-faq-item .clubs-faq-header.active + .clubs-faq-content .clubs-faq-answer {
        padding-left: calc(1.25rem - 4px);
    }
}

body.likhun-dark .ta-clubs-budget-free {
    background-color: rgba(11, 248, 196, 0.2) !important;
    color: #eee !important;
}

body.likhun-dark .ta-clubs-budget-budget {
    background-color: rgba(255, 193, 7, 0.2) !important;
    color: #ffd60a !important;
}

body.likhun-dark .ta-clubs-budget-moderate {
    background-color: rgba(255, 133, 27, 0.2) !important;
    color: #ff851b !important;
}

body.likhun-dark .ta-clubs-budget-expensive {
    background-color: rgba(220, 53, 69, 0.2) !important;
    color: #ff6b7d !important;
}

body.likhun-dark .ta-clubs-card:hover .ta-clubs-budget-free {
    background-color: rgba(11, 248, 196, 0.3) !important;
}

body.likhun-dark .ta-clubs-card:hover .ta-clubs-budget-budget {
    background-color: rgba(255, 193, 7, 0.3) !important;
}

body.likhun-dark .ta-clubs-card:hover .ta-clubs-budget-moderate {
    background-color: rgba(255, 133, 27, 0.3) !important;
}

body.likhun-dark .ta-clubs-card:hover .ta-clubs-budget-expensive {
    background-color: rgba(220, 53, 69, 0.3) !important;
}