:root {
            --primary-color: #e50914; /* Example red accent */
            --dark-bg: #141414;
            --text-light: #ffffff;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
            scroll-behavior: smooth;
        }

        /* Navbar */
        .navbar {
            background-color: rgba(20, 20, 20, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .navbar-brand img {
            height: 40px;
            border-radius: 4px;
        }
        .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        .btn-login {
            background-color: transparent;
            border: 2px solid var(--primary-color);
            color: var(--text-light);
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }
        .btn-login:hover {
            background-color: var(--primary-color);
            color: white;
        }

        /* Login Form embedded in nav/dropdown or inline */
        .login-form-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .login-input {
            background-color: rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            border-radius: 4px;
            padding: 5px 10px;
            font-size: 0.9rem;
        }
        .login-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        .login-input:focus {
            background-color: rgba(0, 0, 0, 0.3);
            border-color: var(--primary-color);
            color: white;
            box-shadow: 0 0 0 0.2rem rgba(229, 9, 20, 0.5);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?q=80&w=1470&auto=format&fit=crop') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 80px; /* Offset for navbar */
        }
        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        .hero h1 span {
            color: var(--primary-color);
        }
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: #ddd;
        }
        .btn-hero {
            background-color: var(--primary-color);
            color: white;
            padding: 15px 30px;
            font-size: 1.2rem;
            font-weight: bold;
            text-transform: uppercase;
            border: none;
            transition: background-color 0.3s ease;
        }
        .btn-hero:hover {
            background-color: #b20710;
            color: white;
        }

        /* Section Titles */
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 50px;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
        }

        /* About Section */
        .about-section {
            padding: 100px 0;
            background-color: #1a1a1a;
        }
        .about-img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        /* Membership Details */
        .membership-section {
            padding: 100px 0;
            background-color: var(--dark-bg);
        }
        .pricing-card {
            background: #222;
            border: 1px solid #333;
            border-radius: 10px;
            padding: 40px 20px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(229, 9, 20, 0.2);
            border-color: var(--primary-color);
        }
        .pricing-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        .price span {
            font-size: 1.2rem;
            color: #888;
        }
        .pricing-features {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
            flex-grow: 1;
        }
        .pricing-features li {
            margin-bottom: 10px;
            color: #ddd;
        }

        /* WhatsApp Button */
        .btn-whatsapp {
            background-color: #25D366;
            color: black;
            border: none;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background-color 0.3s;
        }
        .btn-whatsapp:hover {
            background-color: #1ebe57;
            color: black;
        }
        .btn-outline-whatsapp {
            background-color: transparent;
            color: #25D366;
            border: 2px solid #25D366;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s;
        }
        .btn-outline-whatsapp:hover {
            background-color: #25D366;
            color: black;
        }

        /* Offers Section */
        .offers-section {
            padding: 80px 0;
            background: linear-gradient(45deg, var(--primary-color), #8a060c);
            text-align: center;
        }
        .offer-box {
            background: rgba(0,0,0,0.2);
            padding: 40px;
            border-radius: 10px;
            border: 2px dashed rgba(255,255,255,0.5);
        }
        .offer-box h3 {
            font-size: 2.5rem;
            font-weight: bold;
        }

        /* Recent Activities / Gallery */
        .gallery-section {
            padding: 100px 0;
            background-color: #1a1a1a;
        }
        .gallery-item {
            overflow: hidden;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Contact Section */
        .contact-section {
            padding: 100px 0;
            background-color: var(--dark-bg);
        }
        .contact-card i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        .contact-card {
            background: #222;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            height: 100%;
        }

        /* Footer */
        footer {
            background-color: #111;
            padding: 30px 0;
            text-align: center;
            border-top: 1px solid #333;
        }

        /* Utility */
        .text-accent {
            color: var(--primary-color);
        }

        /* Flash messages container */
        .flashes {
            position: fixed;
            top: 80px; /* Below navbar */
            right: 20px;
            z-index: 1050;
            min-width: 250px;
        }