        :root {
            --vgm-primary: #FFD700;
            --vgm-secondary: #FFA500;
            --vgm-dark: #1a1a1a;
            --vgm-text: #333333;
            --vgm-light: #f8f9fa;
            --vgm-gray: #6c757d;
            --vgm-gray-light: #f4f4f4;
            --vgm-border: #e9ecef;
            --vgm-shadow: 0 2px 10px rgba(0,0,0,0.08);
            --vgm-radius: 12px;
            --vgm-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--vgm-text);
            background: #ffffff;
        }

        /* Container */
        .vgm-sgclubs-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Breadcrumb */
        .vgm-sgclubs-breadcrumb {
            background: #f8f9fa;
            border-bottom: 1px solid var(--vgm-border);
            padding: 15px 0;
        }

        .vgm-sgclubs-breadcrumb-list {
            display: flex;
            align-items: center;
            list-style: none;
            font-size: 15px;
        }

        .vgm-sgclubs-breadcrumb-item {
            display: flex;
            align-items: center;
        }

        .vgm-sgclubs-breadcrumb-item::after {
            content: '›';
            margin: 0 10px;
            color: #999;
        }

        .vgm-sgclubs-breadcrumb-item:last-child::after {
            display: none;
        }

        .vgm-sgclubs-breadcrumb-item a {
            color: #0066cc;
            text-decoration: none;
            transition: color 0.2s;
        }

        .vgm-sgclubs-breadcrumb-item a:hover {
            color: var(--vgm-primary);
            text-decoration: underline;
        }

        .vgm-sgclubs-breadcrumb-item.active {
            color: #333;
            font-weight: 600;
        }

        /* Hero Section with Outfit */
        .vgm-sgclubs-hero {
            position: relative;
            background: white;
            padding: 50px 0;
            border-bottom: 1px solid var(--vgm-border);
        }

        .vgm-sgclubs-hero-wrapper {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: stretch;
        }

        .vgm-sgclubs-hero-left {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .vgm-sgclubs-hero-content {
            display: flex;
            align-items: center;
            gap: 35px;
            min-height: 180px;
        }

        .vgm-sgclubs-hero-logo {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: white url(https://bestmarathon.vn/wp-content/themes/flatsome-child/avatar/team/BNR_LOGO.jpg) center/cover no-repeat;
            border: 3px solid var(--vgm-primary);
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            flex-shrink: 0;
        }

        .vgm-sgclubs-hero-info {
            flex: 1;
            padding: 20px 0;
        }

        .vgm-sgclubs-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--vgm-gray-light);
            color: var(--vgm-gray);
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .vgm-sgclubs-hero-badge span {
            color: var(--vgm-primary);
            font-weight: 700;
        }

        .vgm-sgclubs-hero-title {
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--vgm-dark);
            line-height: 1.1;
        }

        .vgm-sgclubs-hero-location {
            font-size: 18px;
            color: #555;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }

        .vgm-sgclubs-hero-location::before {
            content: '📍';
            font-size: 20px;
        }

        /* Hero Info Grid */
        .vgm-sgclubs-hero-info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

        .vgm-sgclubs-hero-info-item {
            padding: 18px 15px;
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            text-align: center;
            transition: var(--vgm-transition);
        }

        .vgm-sgclubs-hero-info-item:hover {
            background: #fffbf0;
            border-color: var(--vgm-primary);
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
            transform: translateY(-2px);
        }

        .vgm-sgclubs-hero-info-value {
            font-size: 15px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 6px;
            line-height: 1.4;
        }

        .vgm-sgclubs-hero-info-label {
            font-size: 12px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        .vgm-sgclubs-hero-info-item a {
            color: #0066cc;
            text-decoration: none;
        }

        .vgm-sgclubs-hero-info-item a:hover {
            color: var(--vgm-primary);
            text-decoration: underline;
        }

        /* Outfit Showcase - Eye-catching */
        .vgm-sgclubs-outfit-showcase {
            position: relative;
            background: var(--vgm-gray-light);
            border-radius: var(--vgm-radius);
            padding: 30px;
            border: 2px solid var(--vgm-primary);
            overflow: hidden;
        }

        .vgm-sgclubs-outfit-showcase::before {
            content: 'OUTFIT CLB';
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--vgm-primary);
            color: var(--vgm-dark);
            padding: 6px 20px;
            font-weight: 700;
            font-size: 12px;
            border-radius: 20px;
            z-index: 2;
        }

        .vgm-sgclubs-outfit-image {
            width: 100%;
            height: 400px;
            background: var(--vgm-light) center/contain no-repeat;
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 12px;
            transition: all 0.6s ease;
            position: relative;
            overflow: hidden;
        }

        /* Hover flip effect - only if has 2 images */
        .vgm-sgclubs-outfit-showcase.has-back-image .vgm-sgclubs-outfit-image:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
        }

        /* Main Layout */
        .vgm-sgclubs-layout {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 40px;
            margin: 50px 0;
        }

        /* Content Area */
        .vgm-sgclubs-content {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        /* Info Section - Combined */
        .vgm-sgclubs-info-section {
            background: white;
            border-radius: var(--vgm-radius);
            padding: 35px;
            box-shadow: var(--vgm-shadow);
        }

        .vgm-sgclubs-section-header {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--vgm-border);
        }

        .vgm-sgclubs-section-icon {
            width: 45px;
            height: 45px;
            background: var(--vgm-gray-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            border: 1px solid var(--vgm-primary);
        }

        .vgm-sgclubs-section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--vgm-dark);
            margin: 0;
        }

        .vgm-sgclubs-description {
            font-size: 16px;
            line-height: 1.8;
            color: var(--vgm-text);
            margin-bottom: 30px;
        }

        /* Location Map Section */
        .vgm-sgclubs-map-section {
            background: white;
            border-radius: var(--vgm-radius);
            padding: 35px;
            box-shadow: var(--vgm-shadow);
            margin-top: 30px;
        }

        .vgm-sgclubs-location-map {
            width: 100%;
            height: 450px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .club-location-marker {
            background: transparent !important;
            border: none !important;
        }

        /* Info Grid */
        .vgm-sgclubs-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .vgm-sgclubs-info-item {
            padding: 20px;
            background: white;
            border-radius: 12px;
            border: 1px solid var(--vgm-border);
            transition: var(--vgm-transition);
        }

        .vgm-sgclubs-info-item:hover {
            border-color: var(--vgm-primary);
            box-shadow: var(--vgm-shadow);
        }

        .vgm-sgclubs-info-label {
            font-size: 12px;
            text-transform: uppercase;
            color: #666;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .vgm-sgclubs-info-value {
            font-size: 16px;
            color: var(--vgm-dark);
            font-weight: 500;
        }

        .vgm-sgclubs-info-value a {
            color: var(--vgm-secondary);
            text-decoration: none;
        }

        /* Gallery Section */
        .vgm-sgclubs-gallery-section {
            background: white;
            border-radius: var(--vgm-radius);
            padding: 35px;
            box-shadow: var(--vgm-shadow);
        }

        .vgm-sgclubs-gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }

        .vgm-sgclubs-gallery-item {
            position: relative;
            padding-bottom: 100%;
            background: var(--vgm-light);
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: var(--vgm-transition);
            text-decoration: none;
            display: block;
        }

        .vgm-sgclubs-gallery-item.hidden {
            display: none;
        }

        .vgm-sgclubs-gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .vgm-sgclubs-gallery-item img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .vgm-sgclubs-gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .vgm-sgclubs-gallery-item:hover .vgm-sgclubs-gallery-overlay {
            opacity: 1;
        }

        .vgm-sgclubs-gallery-icon {
            color: white;
            font-size: 30px;
        }

        .vgm-sgclubs-gallery-more {
            color: white;
            font-size: 28px;
            font-weight: 700;
            text-align: center;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        /* Members Sidebar */
        .vgm-sgclubs-members-widget {
            position: sticky;
            top: 20px;
            background: white;
            border-radius: var(--vgm-radius);
            border: 1px solid var(--vgm-border);
            overflow: hidden;
            max-height: calc(100vh - 40px);
            display: flex;
            flex-direction: column;
        }

        .vgm-sgclubs-members-header {
            background: var(--vgm-gray-light);
            padding: 25px;
            border-bottom: 2px solid var(--vgm-primary);
        }

        .vgm-sgclubs-members-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--vgm-dark);
        }

        .vgm-sgclubs-members-count {
            font-size: 28px;
            font-weight: 700;
            color: var(--vgm-primary);
        }

        .vgm-sgclubs-members-subtitle {
            font-size: 14px;
            color: #333;
            margin-top: 5px;
            font-weight: 500;
        }

        .vgm-sgclubs-members-body {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }

        .vgm-sgclubs-members-body::-webkit-scrollbar {
            width: 6px;
        }

        .vgm-sgclubs-members-body::-webkit-scrollbar-thumb {
            background: #ddd;
            border-radius: 3px;
        }

        /* Mobile: Remove scroll container */
        @media (max-width: 1024px) {
            .vgm-sgclubs-members-widget {
                position: static;
                max-height: none;
                display: block;
            }

            .vgm-sgclubs-members-body {
                overflow-y: visible;
                max-height: none;
            }
        }

        .vgm-sgclubs-member-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .vgm-sgclubs-member {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px;
            background: white;
            border: 1px solid var(--vgm-border);
            border-radius: 10px;
            transition: var(--vgm-transition);
        }

        .vgm-sgclubs-member:hover {
            border-color: var(--vgm-primary);
            background: var(--vgm-gray-light);
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .vgm-sgclubs-member-avatar-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            flex-shrink: 0;
        }

        .vgm-sgclubs-member-avatar-wrapper > img,
        .vgm-sgclubs-member-avatar-wrapper > div:first-child {
            width: 50px;
            height: 50px;
            border-radius: 8px;
            overflow: hidden;
        }

        .vgm-sgclubs-member-avatar-wrapper img {
            width: 50px;
            height: 50px;
            object-fit: cover;
            border-radius: 8px;
        }

        .vgm-sgclubs-member-avatar-fallback {
            width: 50px;
            height: 50px;
            border-radius: 8px;
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--vgm-dark);
            font-weight: 700;
            font-size: 14px;
        }

        .vgm-sgclubs-member-info {
            flex: 1;
            min-width: 0;
        }

        .vgm-sgclubs-member-name {
            font-weight: 700;
            font-size: 15px;
            color: var(--vgm-dark);
            margin-bottom: 6px;
            line-height: 1.3;
        }

        .vgm-sgclubs-member-stars-badge {
            display: inline-block;
            background: #fffbf0;
            color: #333;
            padding: 2px 6px;
            border-radius: 10px;
            font-size: 10px;
            font-weight: 600;
            white-space: nowrap;
        }

        .vgm-sgclubs-member-times {
            margin-top: 2px;
        }

        .vgm-sgclubs-member-times p {
            font-size: 12px;
            color: #666;
            margin: 2px 0;
            line-height: 1.4;
        }

        .vgm-sgclubs-member-badge {
            font-size: 24px;
            flex-shrink: 0;
        }

        .vgm-sgclubs-load-more-btn {
            width: 100%;
            padding: 12px 20px;
            margin-top: 15px;
            background: var(--vgm-primary);
            color: var(--vgm-dark);
            border: none;
            border-radius: var(--vgm-radius);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--vgm-transition);
        }

        .vgm-sgclubs-load-more-btn:hover {
            background: #FFA500;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
        }

        .vgm-sgclubs-load-more-btn:active {
            transform: translateY(0);
        }

        /* Lightbox */
        .vgm-sgclubs-lightbox {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.95);
            z-index: 9999;
            backdrop-filter: blur(10px);
        }

        .vgm-sgclubs-lightbox.active {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .vgm-sgclubs-lightbox-inner {
            position: relative;
            max-width: 90%;
            max-height: 90vh;
        }

        .vgm-sgclubs-lightbox-image {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }

        .vgm-sgclubs-lightbox-close {
            position: absolute;
            top: -50px;
            right: 0;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: var(--vgm-transition);
        }

        .vgm-sgclubs-lightbox-close:hover {
            background: rgba(255,255,255,0.2);
            transform: rotate(90deg);
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .vgm-sgclubs-hero-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .vgm-sgclubs-hero-left {
                gap: 30px;
            }

            .vgm-sgclubs-hero-info-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .vgm-sgclubs-outfit-showcase {
                width: 100%;
                margin: 0 auto;
                padding: 25px;
            }

            .vgm-sgclubs-outfit-image {
                height: 450px;
                background-size: contain;
            }

            .vgm-sgclubs-layout {
                grid-template-columns: 1fr;
            }

            .vgm-sgclubs-members-widget {
                position: static;
                max-height: none;
                display: block;
            }

            .vgm-sgclubs-members-body {
                overflow-y: visible;
                max-height: none;
            }
        }

        @media (max-width: 768px) {
            .vgm-sgclubs-container {
                padding: 0 20px;
            }

            .vgm-sgclubs-hero {
                padding: 30px 0;
            }

            .vgm-sgclubs-hero-content {
                flex-direction: column;
                text-align: center;
                min-height: auto;
                gap: 20px;
            }

            .vgm-sgclubs-hero-info {
                display: flex;
                flex-direction: column;
                align-items: center;
                padding: 15px 0;
            }

            .vgm-sgclubs-hero-logo {
                width: 120px;
                height: 120px;
            }

            .vgm-sgclubs-hero-title {
                font-size: 32px;
            }

            .vgm-sgclubs-hero-location {
                font-size: 18px;
            }

            /* Hide Info Grid on mobile */
            .vgm-sgclubs-hero-info-grid {
                display: none !important;
            }

            .vgm-sgclubs-hero-info-item {
                display: none !important;
            }

            .vgm-sgclubs-hero-info-value {
                font-size: 15px;
            }

            .vgm-sgclubs-outfit-showcase {
                padding: 20px;
                width: 100%;
                margin: 0 auto;
            }

            .vgm-sgclubs-outfit-image {
                height: 380px;
                background-size: contain;
            }

            .vgm-sgclubs-layout {
                gap: 30px;
                margin: 30px 0;
            }

            .vgm-sgclubs-info-grid {
                grid-template-columns: 1fr;
            }

            .vgm-sgclubs-gallery {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .vgm-sgclubs-info-section,
            .vgm-sgclubs-gallery-section {
                padding: 25px 20px;
            }

            .vgm-sgclubs-section-title {
                font-size: 24px;
            }

            .vgm-sgclubs-section-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .vgm-sgclubs-members-widget {
                max-height: none;
            }

            .vgm-sgclubs-members-header {
                padding: 20px;
            }

            .vgm-sgclubs-members-body {
                padding: 15px;
                overflow-y: visible;
            }
        }

        @media (max-width: 480px) {
            .vgm-sgclubs-container {
                padding: 0 15px;
            }

            .vgm-sgclubs-hero {
                padding: 20px 0;
            }

            .vgm-sgclubs-hero-logo {
                width: 100px;
                height: 100px;
            }

            .vgm-sgclubs-hero-title {
                font-size: 28px;
            }

            .vgm-sgclubs-hero-location {
                font-size: 16px;
            }

            .vgm-sgclubs-hero-badge {
                font-size: 11px;
                padding: 4px 12px;
            }

            .vgm-sgclubs-hero-info-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .vgm-sgclubs-hero-info-item {
                padding: 15px;
            }

            .vgm-sgclubs-outfit-showcase {
                padding: 15px;
                width: 100%;
                margin: 0 auto;
            }

            .vgm-sgclubs-outfit-image {
                height: 320px;
                background-size: contain;
            }

            .vgm-sgclubs-info-section,
            .vgm-sgclubs-gallery-section {
                padding: 20px 15px;
            }

            .vgm-sgclubs-section-header {
                gap: 12px;
                margin-bottom: 20px;
                padding-bottom: 15px;
            }

            .vgm-sgclubs-section-title {
                font-size: 20px;
            }

            .vgm-sgclubs-section-icon {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }

            .vgm-sgclubs-description {
                font-size: 15px;
                line-height: 1.7;
                margin-bottom: 20px;
            }

            .vgm-sgclubs-info-item {
                padding: 15px;
            }

            .vgm-sgclubs-info-label {
                font-size: 11px;
            }

            .vgm-sgclubs-info-value {
                font-size: 14px;
            }

            .vgm-sgclubs-gallery {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .vgm-sgclubs-members-header {
                padding: 18px 15px;
            }

            .vgm-sgclubs-members-title {
                font-size: 16px;
            }

            .vgm-sgclubs-members-count {
                font-size: 24px;
            }

            .vgm-sgclubs-members-subtitle {
                font-size: 12px;
            }

            .vgm-sgclubs-members-body {
                padding: 12px;
            }

            .vgm-sgclubs-member {
                padding: 10px;
            }

            .vgm-sgclubs-member-avatar {
                width: 38px;
                height: 38px;
                font-size: 13px;
            }

            .vgm-sgclubs-member-name {
                font-size: 14px;
            }

            .vgm-sgclubs-member-stats {
                font-size: 11px;
            }

            .vgm-sgclubs-member-badge {
                font-size: 20px;
            }

            .vgm-sgclubs-breadcrumb {
                padding: 10px 0;
            }

            .vgm-sgclubs-breadcrumb-list {
                font-size: 13px;
            }

            .vgm-sgclubs-lightbox-close {
                top: -40px;
                width: 35px;
                height: 35px;
                font-size: 20px;
            }
        }

        @media (max-width: 360px) {
            .vgm-sgclubs-hero-title {
                font-size: 24px;
            }

            .vgm-sgclubs-hero-location {
                font-size: 14px;
            }

            .vgm-sgclubs-outfit-showcase {
                padding: 12px;
            }

            .vgm-sgclubs-outfit-image {
                height: 280px;
                background-size: contain;
            }

            .vgm-sgclubs-section-title {
                font-size: 18px;
            }
        }

        /* Print Styles */
        @media print {
            .vgm-sgclubs-lightbox {
                display: none !important;
            }
            
            .vgm-sgclubs-layout {
                grid-template-columns: 1fr;
            }
        }

        /* Focus Styles */
        button:focus-visible,
        a:focus-visible,
        [tabindex]:focus-visible {
            outline: 3px solid var(--vgm-primary);
            outline-offset: 2px;
        }
    </style>
