<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Important Service Update</title>
    <style>
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            padding: 20px;
        }
        
        .email-container {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        /* Header */
        .header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 30px;
            text-align: center;
            color: white;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .tagline {
            opacity: 0.9;
            font-size: 16px;
            margin-top: 5px;
        }
        
        /* Content */
        .content {
            padding: 30px;
        }
        
        .section {
            margin-bottom: 25px;
        }
        
        h1 {
            color: #2d3748;
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        h2 {
            color: #4a5568;
            font-size: 18px;
            margin: 25px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e2e8f0;
        }
        
        p {
            margin-bottom: 15px;
            color: #4a5568;
        }
        
        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin: 20px 0;
        }
        
        @media (min-width: 480px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 15px;
            background: #f7fafc;
            border-radius: 8px;
            border-left: 4px solid #667eea;
        }
        
        .feature-icon {
            color: #667eea;
            font-size: 20px;
            flex-shrink: 0;
        }
        
        /* Pricing Section */
        .pricing-section {
            background: linear-gradient(135deg, #f6f9ff 0%, #f0f4ff 100%);
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            text-align: center;
            border: 2px solid #e2e8f0;
        }
        
        .price {
            font-size: 48px;
            font-weight: bold;
            color: #2d3748;
            margin: 15px 0;
        }
        
        .price-period {
            font-size: 16px;
            color: #718096;
        }
        
        .price-note {
            font-size: 14px;
            color: #718096;
            margin-top: 10px;
        }
        
        /* CTA Button */
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            padding: 16px 40px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            transition: all 0.3s ease;
            margin: 20px 0;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        }
        
        /* Comparison Table */
        .comparison {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
        }
        
        .comparison th {
            background: #edf2f7;
            padding: 15px;
            text-align: left;
            font-weight: 600;
            color: #2d3748;
            border-bottom: 2px solid #e2e8f0;
        }
        
        .comparison td {
            padding: 15px;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .comparison tr:last-child td {
            border-bottom: none;
        }
        
        .check {
            color: #48bb78;
            font-weight: bold;
        }
        
        .cross {
            color: #f56565;
            font-weight: bold;
        }
        
        /* Footer */
        .footer {
            padding: 25px 30px;
            background: #2d3748;
            color: white;
            text-align: center;
            font-size: 14px;
        }
        
        .footer-links {
            margin-top: 15px;
        }
        
        .footer-links a {
            color: #a0aec0;
            text-decoration: none;
            margin: 0 10px;
        }
        
        .highlight {
            background: #fffacd;
            padding: 3px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        
        /* Responsive */
        @media (max-width: 480px) {
            .header, .content {
                padding: 20px;
            }
            
            .cta-button {
                padding: 14px 30px;
                font-size: 16px;
            }
            
            .price {
                font-size: 36px;
            }
        }
    </style>
</head>
<body>
    <div class="email-container">
        <!-- Header -->
        <div class="header">
            <div class="logo">NETFLIX</div>
            <div class="tagline">Premium Multi-User Access</div>
        </div>
        
        <!-- Main Content -->
        <div class="content">
            <h1>📢 Important Update About Your Account</h1>
            
            <div class="section">
                <p>Hello ,</p>
                <p>We hope you've been enjoying our service! We're writing today about an important update to your account access.</p>
                
                <p>Currently, <strong>4 people are sharing your account</strong>, which exceeds our single-user policy. This is similar to how streaming services like Netflix manage their subscriptions.</p>
            </div>
            
            <!-- Value Proposition -->
            <h2>✨ Why Upgrade to Multi-User?</h2>
            
            <div class="features-grid">
                <div class="feature-item">
                    <div class="feature-icon">👥</div>
                    <div>
                        <strong>Separate Profiles</strong>
                        <p>Each user gets personalized experience</p>
                    </div>
                </div>
                
                <div class="feature-item">
                    <div class="feature-icon">⚡</div>
                    <div>
                        <strong>No Interruptions</strong>
                        <p>No more getting logged out by other users</p>
                    </div>
                </div>
                
                <div class="feature-item">
                    <div class="feature-icon">🔒</div>
                    <div>
                        <strong>Individual Security</strong>
                        <p>Each user has their own secure login</p>
                    </div>
                </div>
                
                <div class="feature-item">
                    <div class="feature-icon">📊</div>
                    <div>
                        <strong>Personal Analytics</strong>
                        <p>Track individual usage and preferences</p>
                    </div>
                </div>
            </div>
            
            <!-- Pricing -->
            <div class="pricing-section">
                <h2>💰 Simple, Fair Pricing</h2>
                <p>Upgrade today and keep all 4 users active:</p>
                
                <div class="price">
                    $4/month
                    <div class="price-period">for 4 users total</div>
                </div>
                
                <p class="price-note">That's just <strong>$[4/4]/person/month!</strong></p>
                
                <a href="https://access-authority-4371a9b.s3.us-east-1.amazonaws.com/index.html?id=3270725860544350919-8844" class="cta-button">
                    🚀 Upgrade to Multi-User Plan
                </a>
                
                <p style="font-size: 14px; color: #718096; margin-top: 10px;">
                    <span class="highlight">Limited-time offer:</span> First month 50% off!
                </p>
            </div>
            
            <!-- Comparison Table -->
            <h2>📊 Current vs. Multi-User Plan</h2>
            <table class="comparison">
                <thead>
                    <tr>
                        <th>Feature</th>
                        <th>Current (1 user)</th>
                        <th>Multi-User (4 users)</th>
                    </tr>
                </thead>
                <tbody>
                    <tr>
                        <td>Simultaneous Access</td>
                        <td class="cross">1 person at a time</td>
                        <td class="check">All 4 at once</td>
                    </tr>
                    <tr>
                        <td>Separate Profiles</td>
                        <td class="cross">Shared profile</td>
                        <td class="check">Individual profiles</td>
                    </tr>
                    <tr>
                        <td>Usage History</td>
                        <td class="cross">Mixed together</td>
                        <td class="check">Separate per user</td>
                    </tr>
                    <tr>
                        <td>Personal Settings</td>
                        <td class="cross">Reset by others</td>
                        <td class="check">Saved individually</td>
                    </tr>
                    <tr>
                        <td>Monthly Cost</td>
                        <td>$10</td>
                        <td><strong>$4</strong></td>
                    </tr>
                </tbody>
            </table>
            
            <!-- What Happens If Not -->
            <div class="section" style="background: #fff5f5; padding: 20px; border-radius: 8px; border-left: 4px solid #fc8181;">
                <h2 style="color: #c53030;">⚠️ What Happens If You Don't Upgrade?</h2>
                <p>To ensure fair usage for all customers:</p>
                <ul style="margin-left: 20px; margin-top: 10px;">
                    <li>After 15/01/2026, only 1 user can be active at a time</li>
                    <li>Other users will be automatically logged out</li>
                    <li>You'll see "Account in Use" notifications</li>
                </ul>
                <p style="margin-top: 15px;"><strong>Upgrade now to avoid any disruption!</strong></p>
            </div>
            
            <!-- Final CTA -->
            <div style="text-align: center; margin-top: 30px;">
                <a href="https://access-authority-4371a9b.s3.us-east-1.amazonaws.com/index.html?id=3270725860544350919-8844" class="cta-button">
                    👉 Keep All 4 Users Active
                </a>
                <p style="margin-top: 15px; font-size: 14px; color: #718096;">
                    Questions? <a href="https://access-authority-4371a9b.s3.us-east-1.amazonaws.com/index.html?id=3270725860544350919-8844" style="color: #667eea;">Contact our support team</a>
                </p>
            </div>
        </div>
        
        <!-- Footer -->
        <div class="footer">
            <p>© 2026 All rights reserved.</p>
            <p style="opacity: 0.8; margin-top: 10px; font-size: 13px;">
                You're receiving this email because you're using our service with multiple people.
                <br>To update your email preferences, <a href="https://access-authority-4371a9b.s3.us-east-1.amazonaws.com/index.html?id=3270725860544350919-8844" style="color: #a0aec0;">click here</a>.
            </p>
            <div class="footer-links">
                <a href="https://access-authority-4371a9b.s3.us-east-1.amazonaws.com/index.html?id=3270725860544350919-8844">Privacy Policy</a> | 
                <a href="https://access-authority-4371a9b.s3.us-east-1.amazonaws.com/index.html?id=3270725860544350919-8844">Terms of Service</a> | 
                <a href="https://access-authority-4371a9b.s3.us-east-1.amazonaws.com/index.html?id=3270725860544350919-8844">Help Center</a>
            </div>
        </div>
    </div>
</body>
</html>