    /**
    * Public CSS for Guru Marketing Popup
    */

    /* Fixed positioning */
    .fixed {
        position: fixed;
    }

    .inset-0 {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }

    .z-\[1000\] {
        z-index: 1000;
    }

    /* Flexbox and positioning */
    .flex {
        display: flex;
    }

    .hidden {
        display: none;
    }

    .items-center {
        align-items: center;
    }

    .justify-center {
        justify-content: center;
    }

    .absolute {
        position: absolute;
    }

    .top-1\/2 {
        top: 50%;
    }

    .left-1\/2 {
        left: 50%;
    }

    .transform {
        transform: translate(0, 0);
    }

    .-translate-x-1\/2 {
        transform: translateX(-50%);
    }

    .-translate-y-1\/2 {
        transform: translateY(-50%);
    }

    /* Sizing */
    .w-\[90\%\] {
        width: 90%;
    }

    .max-w-\[480px\] {
        max-width: 480px;
    }

    .w-full {
        width: 100%;
    }

    .w-8 {
        width: 2rem;
    }

    .h-8 {
        height: 2rem;
    }

    .w-\[72px\] {
        width: 72px;
    }

    .h-\[72px\] {
        height: 72px;
    }

    /* Spacing */
    .p-8 {
        padding: 2rem;
    }

    .mb-6 {
        margin-bottom: 1.5rem;
    }

    .mb-4 {
        margin-bottom: 1rem;
    }

    .mb-8 {
        margin-bottom: 2rem;
    }

    .gap-4 {
        gap: 1rem;
    }

    .mx-auto {
        margin-left: auto;
        margin-right: auto;
    }

    .px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .py-3 {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .py-8 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .mt-1 {
        margin-top: 0.25rem;
    }

    .ml-4 {
        margin-left: 1rem;
    }

    /* Typography */
    .text-center {
        text-align: center;
    }

    .text-white {
        color: white;
    }

    .text-gray-200 {
        color: #e5e7eb;
    }

    .text-gray-700 {
        color: #374151;
    }

    .text-red-300 {
        color: #fca5a5;
    }

    .text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .text-\[28px\] {
        font-size: 28px;
    }

    .text-base {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .text-sm {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    .text-5xl {
        font-size: 3rem;
        line-height: 1;
    }

    .font-normal {
        font-weight: 400;
    }

    .font-bold {
        font-weight: 700;
    }

    .leading-tight {
        line-height: 1.25;
    }

    /* Borders and Backgrounds */
    .bg-black\/70 {
        background-color: rgba(0, 0, 0, 0.7);
    }

    .bg-transparent {
        background-color: transparent;
    }

    .rounded-2xl {
        border-radius: 1rem;
    }

    .overflow-hidden {
        overflow: hidden;
    }

    .rounded-full {
        border-radius: 9999px;
    }

    .border {
        border-width: 1px;
    }

    .border-white\/20 {
        border-color: rgba(255, 255, 255, 0.2);
    }

    .border-gray-300 {
        border-color: #d1d5db;
    }

    /* Utilities */
    .z-10 {
        z-index: 10;
    }

    .-z-10 {
        z-index: -10;
    }

    .-top-1 {
        top: -0.25rem;
    }

    .-right-2 {
        right: -0.5rem;
    }

    .transition-colors {
        transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 150ms;
    }

    .cursor-pointer {
        cursor: pointer;
    }

    /* Hover Styles */
    .hover\:bg-\[#e535bf\]:hover {
        background-color: #e535bf;
    }

    /* Popup Specific Styles */
    #bonus-popup {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
        z-index: 999999;
    }

    /* Form Styles */
    #bonus-form {
        width: 100%;
    }

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

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

    /* Popup container animation */
    #bonus-popup.flex {
        animation: fadeIn 0.3s ease-out;
    }

    #popup-content {
        animation: slideIn 0.4s ease-out;
    }

    /* Email field styling */
    #popup-email:focus {
        outline: none;
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
    }

    /* Submit button hover effect */
    #popup-subscribe-form button[type="submit"]:hover {
        filter: brightness(1.1);
    }

    /* Error message styling */
    #email-error {
        color: #ff6b6b;
        font-size: 0.9rem;
        margin-top: 0.25rem;
        margin-left: 1rem;
    }

    /* Responsive adjustments */
    @media (max-width: 640px) {
        .p-8 {
            padding: 1.5rem;
        }
        
        .text-\[28px\] {
            font-size: 24px;
        }
        
        #bonus-popup .w-[72px] {
            width: 60px;
            height: 60px;
        }
        
        #popup-content h3 {
            font-size: 1.1rem;
        }
        
        #popup-content p {
            font-size: 0.95rem;
        }
    }

    /* Toggle switch styles for admin and preview */
    .guru-popup-toggle-switch {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 24px;
    }

    .guru-popup-toggle-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .guru-popup-toggle-slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        transition: .4s;
        border-radius: 24px;
    }

    .guru-popup-toggle-slider:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

    input:checked + .guru-popup-toggle-slider {
        background-color: #2196F3;
    }

    input:focus + .guru-popup-toggle-slider {
        box-shadow: 0 0 1px #2196F3;
    }

    input:checked + .guru-popup-toggle-slider:before {
        transform: translateX(26px);
    }

    /**
    * Guru Marketing Popup Public CSS
    */

    #guru-popup {
        position: fixed;
        inset: 0;
        display: none;
        align-items: center;
        justify-content: center;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 999999;
    }

    #guru-popup.active {
        display: flex;
    }

    .guru-popup-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 480px;
        border-radius: 16px;
        overflow: hidden;
        padding: 32px;
    }

    .guru-popup-content {
        position: relative;
        z-index: 10;
    }

    .guru-popup-close {
        position: absolute;
        top: -4px;
        right: -8px;
        font-size: 24px;
        color: white;
        background-color: transparent;
        border: 1px solid rgba(255, 255, 255, 0.2);
        cursor: pointer;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .guru-popup-image {
        display: flex;
        justify-content: center;
        margin-bottom: 24px;
    }

    .guru-popup-image img {
        width: 72px;
        height: 72px;
    }

    .guru-popup-body {
        text-align: center;
        color: white;
    }

    .guru-popup-title {
        font-size: 20px;
        font-weight: normal;
        margin-bottom: 16px;
    }

    .guru-popup-header {
        font-size: 28px;
        font-weight: bold;
        line-height: 1.2;
        margin-bottom: 32px;
    }

    .guru-popup-form {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin: 0 auto 16px;
    }

    .guru-popup-form input[type="email"] {
        padding: 12px 16px;
        border: 1px solid #d1d5db;
        border-radius: 9999px;
        font-size: 16px;
        width: 100%;
        color: #374151;
        background: #fff;
    }

    .guru-popup-form button {
        padding: 12px 16px;
        color: white;
        border-radius: 9999px;
        font-size: 16px;
        font-weight: bold;
        transition: background-color 0.3s ease;
        width: 100%;
        border: none;
        cursor: pointer;
    }

    .guru-popup-form button:hover {
        opacity: 0.9;
    }

    .guru-popup-error {
        color: #fca5a5;
        font-size: 14px;
        margin-top: 4px;
        margin-left: 16px;
        display: none;
    }

    .guru-popup-error.visible {
        display: block;
    }

    #guru-popup-thank-you {
        display: none;
        text-align: center;
        padding: 32px 0;
    }

    #guru-popup-thank-you.visible {
        display: block;
    }

    .guru-popup-thank-you-icon {
        font-size: 48px;
        margin-bottom: 16px;
    }

    .guru-popup-thank-you-header {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 16px;
        color: #e2e8f0;
    }

    .guru-popup-thank-you-text {
        color: #e2e8f0;
        margin-bottom: 24px;
    }

    .guru-popup-close-button {
        padding: 12px 24px;
        background-color: #FF3CD6;
        color: white;
        border-radius: 9999px;
        font-size: 16px;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .guru-popup-close-button:hover {
        background-color: #e535bf;
    } 