 /* Social Media Calendar Maker Styles - Scoped */
        .smcm-wrapper {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #f1efec 0%, #ffffff 50%, #f1efec 100%);
            min-height: 100vh;
        }
        
        .smcm-wrapper * {
            box-sizing: border-box;
        }
        
        /* Hero Section */
        .smcm-hero {
            background: linear-gradient(135deg, #3e40cc 0%, #5a5ce6 50%, #3e40cc 100%);
            padding: 80px 0 100px;
            position: relative;
            overflow: hidden;
        }
        
        .smcm-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        
        .smcm-hero-content {
            position: relative;
            z-index: 2;
        }
        
        .smcm-hero h1 {
            font-size: 3rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        
        .smcm-hero-subtitle {
            font-size: 1.25rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .smcm-rating-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 12px 24px;
            border-radius: 50px;
            color: #ffffff;
            font-weight: 600;
        }
        
        .smcm-rating-badge i {
            color: #ffc107;
            margin-right: 5px;
        }
        
        .smcm-rating-badge span {
            margin-left: 10px;
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        /* Main Tool Section */
        .smcm-main-section {
            padding: 60px 0;
        }
        
        .smcm-tool-card {
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(62, 64, 204, 0.15);
            overflow: hidden;
            margin-top: 10px;
            position: relative;
            z-index: 10;
        }
        
        .smcm-tool-header {
            background: linear-gradient(90deg, #3e40cc 0%, #5a5ce6 100%);
            padding: 25px 30px;
            color: #ffffff;
        }
        
        .smcm-tool-header h2 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
        }
        
        .smcm-tool-header p {
            margin: 5px 0 0;
            opacity: 0.9;
            font-size: 0.95rem;
        }
        
        .smcm-tool-body {
            padding: 40px;
        }
        
        .smcm-form-group {
            margin-bottom: 25px;
        }
        
        .smcm-form-group label {
            font-weight: 600;
            color: #3e40cc;
            margin-bottom: 10px;
            display: block;
            font-size: 0.95rem;
        }
        
        .smcm-form-group label i {
            margin-right: 8px;
            color: #fe6963;
        }
        
        .smcm-form-control {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e8e8f5;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f8f8fc;
        }
        
        .smcm-form-control:focus {
            border-color: #3e40cc;
            box-shadow: 0 0 0 4px rgba(62, 64, 204, 0.1);
            outline: none;
            background: #ffffff;
        }
        
        .smcm-form-control::placeholder {
            color: #999;
        }
        
        .smcm-platform-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 12px;
        }
        
        .smcm-platform-item {
            position: relative;
        }
        
        .smcm-platform-item input[type="checkbox"] {
            display: none;
        }
        
        .smcm-platform-label {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            background: #f8f8fc;
            border: 2px solid #e8e8f5;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            color: #555;
        }
        
        .smcm-platform-label i {
            margin-right: 8px;
            font-size: 1.2rem;
        }
        
        .smcm-platform-item input:checked + .smcm-platform-label {
            background: linear-gradient(135deg, #3e40cc 0%, #5a5ce6 100%);
            border-color: #3e40cc;
            color: #ffffff;
        }
        
        .smcm-platform-label:hover {
            border-color: #3e40cc;
            transform: translateY(-2px);
        }
        
        /* Platform specific colors */
        .smcm-platform-facebook i { color: #1877f2; }
        .smcm-platform-instagram i { color: #e4405f; }
        .smcm-platform-twitter i { color: #1da1f2; }
        .smcm-platform-linkedin i { color: #0a66c2; }
        .smcm-platform-tiktok i { color: #000000; }
        .smcm-platform-pinterest i { color: #bd081c; }
        .smcm-platform-youtube i { color: #ff0000; }
        
        .smcm-platform-item input:checked + .smcm-platform-label i {
            color: #ffffff;
        }
        
        .smcm-btn-generate {
            background: linear-gradient(135deg, #fe6963 0%, #ff8a85 100%);
            color: #ffffff;
            border: none;
            padding: 18px 50px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 10px 30px rgba(254, 105, 99, 0.3);
        }
        
        .smcm-btn-generate:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(254, 105, 99, 0.4);
            background: linear-gradient(135deg, #ff5a53 0%, #fe6963 100%);
        }
        
        .smcm-btn-generate:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }
        
        /* Results Section */
        .smcm-results {
            display: none;
            margin-top: 40px;
            animation: smcm-fadeIn 0.5s ease;
        }
        
        @keyframes smcm-fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .smcm-results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .smcm-results-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #3e40cc;
            margin: 0;
        }
        
        .smcm-export-btns {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .smcm-btn-export {
            padding: 12px 20px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: none;
        }
        
        .smcm-btn-pdf {
            background: #dc3545;
            color: #ffffff;
        }
        
        .smcm-btn-excel {
            background: #198754;
            color: #ffffff;
        }
        
        .smcm-btn-copy {
            background: #3e40cc;
            color: #ffffff;
        }
        
        .smcm-btn-export:hover {
            transform: translateY(-2px);
            opacity: 0.9;
        }
        
        /* Calendar Table */
        .smcm-calendar-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .smcm-calendar-table thead {
            background: linear-gradient(90deg, #3e40cc 0%, #5a5ce6 100%);
        }
        
        .smcm-calendar-table th {
            padding: 18px 15px;
            color: #ffffff;
            font-weight: 600;
            text-align: left;
            font-size: 0.9rem;
        }
        
        .smcm-calendar-table tbody tr {
            transition: all 0.3s ease;
        }
        
        .smcm-calendar-table tbody tr:nth-child(even) {
            background: #f8f8fc;
        }
        
        .smcm-calendar-table tbody tr:hover {
            background: #f0f0ff;
        }
        
        .smcm-calendar-table td {
            padding: 15px;
            border-bottom: 1px solid #e8e8f5;
            color: #444;
            font-size: 0.95rem;
        }
        
        .smcm-platform-badge {
            display: inline-flex;
            align-items: center;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            gap: 5px;
        }
        
        .smcm-badge-facebook { background: #e7f3ff; color: #1877f2; }
        .smcm-badge-instagram { background: #fce4ec; color: #e4405f; }
        .smcm-badge-twitter { background: #e8f5fe; color: #1da1f2; }
        .smcm-badge-linkedin { background: #e8f4fc; color: #0a66c2; }
        .smcm-badge-tiktok { background: #f5f5f5; color: #000000; }
        .smcm-badge-pinterest { background: #fce4e4; color: #bd081c; }
        .smcm-badge-youtube { background: #ffebee; color: #ff0000; }
        
        /* Ad Spaces */
        .smcm-ad-space {
            background: linear-gradient(135deg, #f1efec 0%, #ffffff 100%);
            border: 2px dashed #e0e0e0;
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            min-height: 600px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: sticky;
            top: 100px;
        }
        
        .smcm-ad-space i {
            font-size: 3rem;
            color: #ccc;
            margin-bottom: 15px;
        }
        
        .smcm-ad-space p {
            color: #999;
            font-size: 0.9rem;
            margin: 0;
        }
        
        /* Features Section */
        .smcm-features {
            padding: 80px 0;
            background: #ffffff;
        }
        
        .smcm-section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .smcm-section-title h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #3e40cc;
            margin-bottom: 15px;
        }
        
        .smcm-section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .smcm-feature-card {
            background: #f8f8fc;
            border-radius: 20px;
            padding: 35px 30px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            border: 2px solid transparent;
        }
        
        .smcm-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(62, 64, 204, 0.15);
            border-color: #3e40cc;
            background: #ffffff;
        }
        
        .smcm-feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #3e40cc 0%, #5a5ce6 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .smcm-feature-icon i {
            font-size: 2rem;
            color: #ffffff;
        }
        
        .smcm-feature-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 12px;
        }
        
        .smcm-feature-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.7;
            margin: 0;
        }
        
        /* How It Works */
        .smcm-how-it-works {
            padding: 80px 0;
            background: linear-gradient(135deg, #f1efec 0%, #ffffff 100%);
        }
        
        .smcm-step {
            text-align: center;
            position: relative;
        }
        
        .smcm-step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #fe6963 0%, #ff8a85 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            box-shadow: 0 10px 30px rgba(254, 105, 99, 0.3);
        }
        
        .smcm-step h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }
        
        .smcm-step p {
            color: #666;
            font-size: 0.95rem;
        }
        
        /* Content Section */
        .smcm-content-section {
            padding: 80px 0;
            background: #ffffff;
        }
        
        .smcm-content-block {
            background: #f8f8fc;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
        }
        
        .smcm-content-block h2 {
            font-size: 1.75rem;
            font-weight: 700;
            color: #3e40cc;
            margin-bottom: 20px;
        }
        
        .smcm-content-block h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #333;
            margin: 25px 0 15px;
        }
        
        .smcm-content-block p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 1rem;
        }
        
        .smcm-content-block ul {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
        
        .smcm-content-block ul li {
            padding: 12px 0 12px 35px;
            position: relative;
            color: #555;
            line-height: 1.7;
        }
        
        .smcm-content-block ul li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #fe6963;
            font-size: 1rem;
        }
        
        /* FAQ Section */
        .smcm-faq {
            padding: 80px 0;
            background: linear-gradient(135deg, #f1efec 0%, #ffffff 100%);
        }
        
        .smcm-accordion-item {
            background: #ffffff;
            border-radius: 16px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .smcm-accordion-header {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .smcm-accordion-header:hover {
            background: #f8f8fc;
        }
        
        .smcm-accordion-header h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            margin: 0;
            flex: 1;
            padding-right: 15px;
        }
        
        .smcm-accordion-header i {
            color: #3e40cc;
            transition: transform 0.3s ease;
        }
        
        .smcm-accordion-item.active .smcm-accordion-header i {
            transform: rotate(180deg);
        }
        
        .smcm-accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .smcm-accordion-item.active .smcm-accordion-body {
            max-height: 500px;
        }
        
        .smcm-accordion-content {
            padding: 0 25px 25px;
            color: #666;
            line-height: 1.8;
        }
        
        /* Popup Modal */
        .smcm-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(5px);
            z-index: 9999;
            display: none;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        
        .smcm-modal-overlay.active {
            display: flex;
        }
        
        .smcm-modal {
            background: #ffffff;
            border-radius: 20px;
            max-width: 450px;
            width: 100%;
            padding: 40px;
            text-align: center;
            animation: smcm-modalSlide 0.3s ease;
        }
        
        @keyframes smcm-modalSlide {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(-20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }
        
        .smcm-modal-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .smcm-modal-icon.success {
            background: linear-gradient(135deg, #28a745 0%, #34ce57 100%);
        }
        
        .smcm-modal-icon.error {
            background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
        }
        
        .smcm-modal-icon.info {
            background: linear-gradient(135deg, #3e40cc 0%, #5a5ce6 100%);
        }
        
        .smcm-modal-icon i {
            font-size: 2rem;
            color: #ffffff;
        }
        
        .smcm-modal h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }
        
        .smcm-modal p {
            color: #666;
            margin-bottom: 25px;
            line-height: 1.6;
        }
        
        .smcm-modal-btn {
            background: linear-gradient(135deg, #3e40cc 0%, #5a5ce6 100%);
            color: #ffffff;
            border: none;
            padding: 14px 40px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .smcm-modal-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(62, 64, 204, 0.3);
        }
        
        /* Loading Spinner */
        .smcm-spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top-color: #ffffff;
            animation: smcm-spin 1s ease-in-out infinite;
        }
        
        @keyframes smcm-spin {
            to { transform: rotate(360deg); }
        }
        
        /* CTA Section */
        .smcm-cta {
            padding: 80px 0;
            background: linear-gradient(135deg, #3e40cc 0%, #5a5ce6 100%);
            text-align: center;
        }
        
        .smcm-cta h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 20px;
        }
        
        .smcm-cta p {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .smcm-cta-btn {
            background: #fe6963;
            color: #ffffff;
            padding: 18px 50px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        
        .smcm-cta-btn:hover {
            background: #ff5a53;
            transform: translateY(-3px);
            color: #ffffff;
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .smcm-ad-space {
                position: static;
                min-height: 250px;
                margin-bottom: 30px;
            }
            
            .smcm-hero h1 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .smcm-hero {
                padding: 60px 0 80px;
            }
            
            .smcm-hero h1 {
                font-size: 2rem;
            }
            
            .smcm-tool-body {
                padding: 25px;
            }
            
            .smcm-platform-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .smcm-section-title h2 {
                font-size: 2rem;
            }
            
            .smcm-results-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .smcm-calendar-table {
                font-size: 0.85rem;
            }
            
            .smcm-calendar-table th,
            .smcm-calendar-table td {
                padding: 10px 8px;
            }
        }
        
        @media (max-width: 576px) {
            .smcm-hero h1 {
                font-size: 1.75rem;
            }
            
            .smcm-hero-subtitle {
                font-size: 1rem;
            }
            
            .smcm-platform-grid {
                grid-template-columns: 1fr;
            }
            
            .smcm-btn-generate {
                width: 100%;
                justify-content: center;
            }
            
            .smcm-export-btns {
                width: 100%;
            }
            
            .smcm-btn-export {
                flex: 1;
                justify-content: center;
            }
        }