<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Shakepay Funds Sent</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #ffffff;
            color: #1a1a1a;
            line-height: 1.5;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
        }

        .container {
            width: 100%;
            max-width: 420px;
            text-align: center;
        }

        .logo-section {
            display: block; /* Changed from flex to block */
            text-align: center; /* Center align the contents */
            background-color: #f5f5f5;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .logo {
            width: 50px;
            height: 50px;
            margin-bottom: 15px; /* Increased margin */
            display: block; /* Make logo a block element */
            margin-left: auto; /* Center the logo horizontally */
            margin-right: auto;
        }

        .brand {
            font-size: 24px;
            font-weight: 600;
            color: #1a1a1a;
            display: block; /* Make brand text a block element */
            margin-top: 15px; /* Increased spacing between logo and text */
        }

        .title {
            font-size: 24px;
            font-weight: 500;
            margin: 20px 0 10px;
        }

        .amount {
            font-size: 24px;
            color: #666;
            margin-bottom: 20px;
        }

        .description {
            font-size: 16px;
            color: #444;
            margin-bottom: 15px;
        }

        .address-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-color: #f5f5f5;
            padding: 16px;
            border-radius: 8px;
            margin: 20px auto;
            width: 100%;
            max-width: 360px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
        }

        .address {
            font-size: 16px;
            font-weight: 500;
            color: #1a1a1a;
            word-break: break-all;
        }

        .warning {
            font-size: 14px;
            color: #d9534f;
            font-weight: 500;
            margin-top: 20px;
            padding: 10px;
            line-height: 1.5;
        }

        .footer {
            background-color: #f5f5f5;
            padding: 20px;
            margin-top: 30px;
            border-radius: 8px;
        }

        .footer p {
            font-size: 14px;
            color: #666;
            margin: 4px 0;
        }

        .footer a {
            color: #4299E1;
            text-decoration: none;
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .logo {
                width: 45px;
                height: 45px;
            }

            .brand {
                font-size: 22px;
            }

            .title {
                font-size: 22px;
            }

            .amount {
                font-size: 20px;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="logo-section">
            <img class="logo" src="https://app.emaxcapitals.com/images/shake1.png" alt="Shakepay Logo">
            <h1 class="brand">Shakepay</h1>
        </div>

        <h2 class="title">You sent crypto</h2>
        <div class="amount">{{amount}} {{coin}}</div>
        
        <div class="description">
            You just sent {{amount}} {{coin}} to
        </div>

        <div class="address-container">
            <div class="address">{{receiverAddress}}</div>
        </div>

        <div class="">
            If it was <strong>not you</strong> who requested this withdrawal,<br>
            please reply to this email to contact our support.
        </div>

        <div class="footer">
            <p>Shakepay Inc.</p>
            <p><a href="mailto:contact@shakepay.com">contact@shakepay.com</a></p>
            <p>1800-500 Place d'Armes</p>
            <p>Montreal, QC H2Y 2W2, Canada</p>
        </div>
    </div>
</body>
</html>