.affiliate-showcase {
            max-width: 1100px;
            margin: 60px auto;
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .affiliate-showcase-inner {
            display: grid;
            grid-template-columns: 400px 1fr;
            min-height: 320px;
            position: relative;
        }

        /* Left Side - Image Background */
        .affiliate-image-section {
            position: relative;
            background: linear-gradient(135deg, #432C86 0%, #5a3ba8 100%);
            overflow: hidden;
        }

        .affiliate-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.5;
        }

        .affiliate-logo-container {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            padding: 40px;
        }

        .affiliate-logo {
            width: 140px;
            height: 140px;
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            margin-bottom: 20px;
        }

        .affiliate-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .affiliate-label {
            display: inline-block;
            padding: 8px 20px;
            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: #ffffff;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        /* Right Side - Content */
        .affiliate-content-section {
            padding: 50px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: #ffffff;
        }

        .affiliate-name {
            font-size: 28px;
            font-weight: 700;
            color: #432C86;
            margin-bottom: 18px;
            line-height: 1.3;
        }

        .affiliate-description {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 28px;
        }

        .affiliate-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background-color: #432C86;
            color: #ffffff;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
            align-self: flex-start;
        }

        .affiliate-cta:hover {
            background-color: #5a3ba8;
            transform: translateX(4px);
            box-shadow: 0 4px 16px rgba(67, 44, 134, 0.3);
        }

        .affiliate-cta svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .affiliate-cta:hover svg {
            transform: translateX(4px);
        }

        /* Decorative Elements
        .affiliate-image-section::after {
            content: '';
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            z-index: 1;
        }

        .affiliate-image-section::before {
            content: '';
            position: absolute;
            top: -30px;
            left: -30px;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            z-index: 1;
        }  */

        /* Responsive Design */
        @media screen and (max-width: 968px) {
            .affiliate-showcase-inner {
                grid-template-columns: 320px 1fr;
            }

            .affiliate-content-section {
                padding: 40px 45px;
            }

            .affiliate-name {
                font-size: 24px;
            }

            .affiliate-logo {
                width: 120px;
                height: 120px;
            }
        }

        @media screen and (max-width: 768px) {
            .affiliate-showcase-inner {
                grid-template-columns: 1fr;
                min-height: auto;
            }

            .affiliate-image-section {
                padding: 50px 30px;
            }

            .affiliate-logo-container {
                flex-direction: row;
                justify-content: flex-start;
                gap: 25px;
                padding: 0;
            }

            .affiliate-logo {
                width: 100px;
                height: 100px;
                margin-bottom: 0;
            }

            .affiliate-content-section {
                padding: 40px 30px;
            }

            .affiliate-name {
                font-size: 22px;
            }

            .affiliate-description {
                font-size: 14px;
            }
        }

        @media screen and (max-width: 480px) {
            .affiliate-showcase {
                border-radius: 12px;
            }

            .affiliate-image-section {
                padding: 40px 25px;
            }

            .affiliate-logo-container {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .affiliate-logo {
                width: 90px;
                height: 90px;
            }

            .affiliate-content-section {
                padding: 30px 25px;
            }

            .affiliate-name {
                font-size: 20px;
            }

            .affiliate-description {
                font-size: 14px;
                line-height: 1.7;
            }

            .affiliate-cta {
                padding: 12px 24px;
                font-size: 12px;
            }

            .affiliate-label {
                font-size: 10px;
                padding: 6px 16px;
            }
        }

        /* Demo Page Styling */
        .demo-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .demo-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .demo-header h1 {
            font-size: 32px;
            color: #333;
            margin-bottom: 10px;
        }

        .demo-header p {
            color: #666;
            font-size: 16px;
        }

        /* Alternative Style - Pattern Background */
        .affiliate-showcase.pattern-style .affiliate-image-section {
            background: linear-gradient(135deg, #432C86 0%, #5a3ba8 100%);
        }

        .affiliate-showcase.pattern-style .affiliate-bg-image {
            opacity: 0.08;
        }