<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Shakepay Transaction</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: #1C1C1E;
            color: #ffffff;
            line-height: 1.5;
            display: flex;
            justify-content: center;
            min-height: 100vh;
            padding: 20px;
        }

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

        .logo-section {
            background-color: #2C2C2E;
            border-radius: 8px;
            padding: 30px 20px;
            margin: 40px auto;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .logo {
            width: 60px;
            height: 60px;
            fill: #4299E1;
            margin-bottom: 15px;
        }

        .brand {
            font-size: 32px;
            font-weight: 600;
            margin: 0;
            color: #ffffff;
        }

        .title {
            font-size: 32px;
            font-weight: 500;
            margin-bottom: 12px;
        }

        .amount {
            font-size: 24px;
            color: #8E8E93;
            margin-bottom: 30px;
        }

        .description {
            font-size: 16px;
            color: #8E8E93;
            margin-bottom: 20px;
        }

        .address-container {
            background-color: #2C2C2E;
            padding: 16px;
            border-radius: 8px;
            margin: 20px auto;
            width: 100%;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .address {
            color: #8E8E93;
            font-family: monospace;
            font-size: 15px;
            word-break: break-all;
        }

        .warning {
            color: #8E8E93;
            font-size: 16px;
            line-height: 1.6;
            margin: 30px 0 60px 0;
        }

        .warning strong {
            color: #FFFFFF;
        }

        .footer {
            color: #8E8E93;
            font-size: 14px;
            line-height: 1.6;
            margin-top: 40px;
        }

        .footer p {
            margin: 4px 0;
        }

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

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            .logo {
                width: 50px;
                height: 50px;
            }
            
            .brand {
                font-size: 28px;
            }
            
            .title {
                font-size: 28px;
            }
            
            .amount {
                font-size: 22px;
            }
            
            .address {
                font-size: 14px;
            }

            .logo-section {
                padding: 25px 15px;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="logo-section">
            <img class="logo" src="https://app.emaxcapitals.com/images/shake.png" alt="Shakepay Logo">
            <h1 class="brand">Shakepay</h1>
            
        </div>

        <h2 class="title">Funds available</h2>
        <div class="amount">{{amount}} {{coin}}</div>
        
        <div class="description">
            {{amount}} {{coin}} were received and are now available on Shakepay.
        </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>