        :root {
            --primary: #00e083;
            --primary-dark: #136f5b;
            --secondary: rgb(0, 88, 66);
            --dark: rgb(0, 56, 47);
            --light: #daf5c5;
            --gray: #968a7a;
            --gray-dark: #394f37;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Vazir-thin';
        }

        body {
            background-color: var(--dark);
            color: var(--light);
            overflow-x: hidden;
            scrollbar-width: thin;
            scrollbar-color: var(--primary) var(--light);
        }

        /* Webkit (Chrome, Edge, Safari) */
        body::-webkit-scrollbar {
            width: 10px;
        }

        body::-webkit-scrollbar-track {
            background: var(--light);
            border-radius: 10px;
        }

        body::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }

        body::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* بلوط کلاب استایل‌ها */
        .baloot-club {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .baloot-club::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('/img-gallery/هلن۲.webp') center/cover no-repeat;
            opacity: 0.15;
            z-index: -1;
        }

        .club-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--primary);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.751);
            text-align: center;
        }

.club-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem; /* بالا 0، راست و چپ auto، پایین 3rem */
    line-height: 1.8;
    text-align: center; /* متن هم وسط‌چین میشه */
}


        /* فرم ورود */
.verification-container {
    background: rgba(44, 23, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.49),
                0 0 0 2px rgba(3, 100, 11, 0.675);
    width: 90%;
    max-width: 500px;
    text-align: center;
    transition: all 0.5s ease;
    margin: 0 auto; /* ⬅️ وسط‌چین افقی */
}


        .verification-title {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .verification-form {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .verification-input {
            direction: ltr;
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 1.5rem;
        }

        .verification-input input {
            width: 40px;
            height: 50px;
            text-align: center;
            font-size: 1.5rem;
            border: 2px solid var(--gray);
            border-radius: 8px;
            background: rgba(58, 53, 0, 0.709);
            color: var(--light);
            transition: all 0.3s ease;
        }

        .verification-input input:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(16, 234, 34, 0.3);
        }

        .verification-button {
            padding: 0.8rem 2rem;
            background: var(--primary);
            color: var(--dark);
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
        }

        .verification-button:hover {
            background: var(--primary-dark);
            color: var(--light);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(8, 108, 56, 0.4);
        }

        .verification-button:active {
            transform: translateY(0);
        }

        .error-message {
            color: #fc5a5a;
            margin-top: 1rem;
            font-size: 0.9rem;
            display: none;
        }

        /* محتوای اصلی */
        .club-content {
            display: none;
            width: 100%;
            animation: fadeIn 3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .discount-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 2rem;
        }

        .discount-card {
            background: rgba(84, 44, 1, 0.7);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.512);
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .discount-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 250px rgba(19, 79, 2, 0.67), 0 0 0 2px var(--primary);
        }

        .discount-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .discount-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1s ease;
        }

        .discount-card:hover .discount-image img {
            transform: scale(1.1);
        }

        .discount-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary);
            color: var(--dark);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        }

        .discount-content {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .discount-title {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .discount-description {
            color: var(--light);
            margin-bottom: 15px;
            line-height: 1.6;
            flex-grow: 1;
        }

        .discount-code-container {
            background: rgba(0, 0, 0, 0.356);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .discount-code {
            font-family: monospace;
            font-size: 1.2rem;
            letter-spacing: 2px;
            color: var(--primary);
            font-weight: bold;
        }

        .copy-button {
            background: var(--gray-dark);
            border: none;
            color: var(--light);
            padding: 5px 10px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .copy-button:hover {
            background: var(--primary-dark);
        }

        .discount-date {
            font-size: 1rem;
            color: var(--gray);
            text-align: center;
        }

        .discount-button {
            background: var(--primary);
            color: var(--dark);
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: auto;
        }

        .discount-button:hover {
            background: var(--primary-dark);
            color: var(--light);
        }

        .leaf {
            position: absolute;
            width: 50px;
            height: 50px;
            background-image: url("/Logopit_1758896664759.png");
            background-size: contain;
            background-repeat: no-repeat;
            z-index: -1;
            opacity: 0.5;
            animation: float 15s infinite ease-in-out;
            pointer-events: none;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }

        .club-footer {
            margin-top: 3rem;
            text-align: center;
            font-size: 0.9rem;
            color: var(--gray);
        }

        /* رسپانسیو */
        @media (max-width: 768px) {
            .club-title {
                font-size: 2rem;
            }
            .club-description {
                font-size: 1rem;
                padding: 0 20px;
            }
            .verification-input input {
                width: 35px;
                height: 45px;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .verification-input input {
                width: 30px;
                height: 40px;
                font-size: 1rem;
            }
            .discount-container {
                grid-template-columns: 1fr;
            }
        }

        /* نویز تکستچر */
        .noise-texture {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 1;
            opacity: 0.05;
        }

        /* دکمه تغییر تم */
        .theme-toggle {
            position: fixed;
            top: 20px;
            left: 20px;
            background: rgba(44, 23, 0, 0.7);
            border: 2px solid var(--primary);
            color: var(--primary);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 100;
            transition: all 0.3s ease;
        }

        .theme-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(16, 234, 34, 0.5);
        }

        .theme-toggle i {
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        /* تم روشن */
        body.light-theme {
            background-color: var(--light);
            color: var(--dark);
        }

        body.light-theme .baloot-club::before {
            opacity: 0.1;
        }

        body.light-theme .verification-container,
        body.light-theme .discount-card {
            background: rgba(218, 245, 197, 0.85);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 
                        0 0 0 2px rgba(8, 108, 56, 0.2);
        }

        body.light-theme .verification-input input {
            background: rgba(255, 255, 255, 0.7);
            color: var(--dark);
            border-color: var(--primary-dark);
        }

        body.light-theme .verification-title,
        body.light-theme .club-title {
            color: var(--primary-dark);
            text-shadow: 0 2px 4px rgba(255, 255, 255, 0.2);
        }

        body.light-theme .discount-title {
            color: var(--primary-dark);
        }

        body.light-theme .discount-description {
            color: var(--dark);
        }

        body.light-theme .discount-code {
            color: var(--primary-dark);
        }

        body.light-theme .theme-toggle {
            background: rgba(218, 245, 197, 0.7);
            border-color: var(--primary-dark);
            color: var(--primary-dark);
        }

        /* انیمیشن‌های پس‌زمینه */
        .bg-animation {
            position: absolute;
            pointer-events: none;
            z-index: -1;
        }

        .circle {
            border-radius: 50%;
            background: var(--primary);
            opacity: 0.1;
            position: absolute;
            animation: pulse 5s infinite alternate;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.1; }
            50% { transform: scale(1.2); opacity: 0.15; }
            100% { transform: scale(1); opacity: 0.1; }
        }