<!DOCTYPE html>
<html lang="he" dir="rtl">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>ערוץ 770 מבשר טוב - תחנת רדיו</title>
    
    <!-- Google tag (gtag.js) -->
    <script async src="https://www.googletagmanager.com/gtag/js?id=G-C45LVFLL4D"></script>
    <script>
        window.dataLayer = window.dataLayer || [];
        function gtag(){dataLayer.push(arguments);}
        gtag('js', new Date());
        gtag('config', 'G-C45LVFLL4D');
    </script>
    
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(to bottom right, #e0f7fa, #bbdefb);
            color: #333;
            min-height: 100vh;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px;
            text-align: center;
        }
        
        header {
            margin-bottom: 40px;
            padding: 20px;
            background-color: rgba(255, 255, 255, 0.7);
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .logo-container {
            background: linear-gradient(135deg, #7373e6, #b967ff);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 20px;
            position: relative;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        .logo-text {
            font-size: 42px;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            margin-bottom: 5px;
        }
        
        .soundwave {
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
        }
        
        .wave-bar {
            background-color: #ffd700;
            width: 3px;
            height: 15px;
            margin: 0 2px;
            border-radius: 2px;
            animation: soundwave 1.5s infinite ease-in-out;
        }
        
        .wave-bar:nth-child(1) { animation-delay: 0.1s; }
        .wave-bar:nth-child(2) { animation-delay: 0.2s; height: 20px; }
        .wave-bar:nth-child(3) { animation-delay: 0.3s; height: 25px; }
        .wave-bar:nth-child(4) { animation-delay: 0.4s; height: 18px; }
        .wave-bar:nth-child(5) { animation-delay: 0.5s; height: 22px; }
        .wave-bar:nth-child(6) { animation-delay: 0.6s; height: 28px; }
        .wave-bar:nth-child(7) { animation-delay: 0.7s; height: 15px; }
        .wave-bar:nth-child(8) { animation-delay: 0.8s; height: 20px; }
        .wave-bar:nth-child(9) { animation-delay: 0.9s; height: 25px; }
        .wave-bar:nth-child(10) { animation-delay: 1.0s; height: 17px; }
        
        @keyframes soundwave {
            0%, 100% { transform: scaleY(0.6); }
            50% { transform: scaleY(1); }
        }
        
        .logo-subtitle {
            font-size: 20px;
            color: white;
            font-weight: bold;
        }
        
        .tagline {
            font-size: 22px;
            color: #0288d1;
            margin-bottom: 20px;
        }
        
        .main-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-bottom: 40px;
        }
        
        .player-container {
            background-color: rgba(255, 255, 255, 0.7);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 500px;
        }
        
        .player-title {
            font-size: 24px;
            margin-bottom: 20px;
            color: #01579b;
        }
        
        .live-button {
            display: inline-block;
            background-color: #0277bd;
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            font-size: 1.3em;
            font-weight: bold;
            text-decoration: none;
            margin: 20px 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .live-button:hover {
            background-color: #01579b;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }

        .live-indicator {
            display: inline-block;
            width: 12px;
            height: 12px;
            background-color: white;
            border-radius: 50%;
            margin-right: 10px;
            animation: blink 1.5s infinite;
        }

        .audio-player {
            margin-top: 30px;
            text-align: center;
        }
        
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        .action-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
            margin-bottom: 20px;
        }
        
        .contact-button, .donate-button, .hitat-button, .rambam-button, .igrot-button {
            padding: 15px 30px;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            text-decoration: none;
            display: inline-block;
            border-radius: 30px;
            font-weight: bold;
        }
        
        .contact-button {
            background-color: #4caf50;
            color: white;
            border: none;
        }
        
        .contact-button:hover {
            background-color: #388e3c;
            transform: translateY(-2px);
        }
        
        .donate-button {
            background-color: #ffd700;
            color: #333;
            border: none;
            animation: pulse 2s infinite;
        }
        
        .donate-button:hover {
            background-color: #ffcc00;
            transform: translateY(-2px);
            animation: none;
        }
        
        .hitat-button {
            background-color: #9c27b0;
            color: white;
            border: none;
        }
        
        .hitat-button:hover {
            background-color: #7b1fa2;
            transform: translateY(-2px);
        }
        
        .rambam-button {
            background-color: #ff5722;
            color: white;
            border: none;
        }
        
        .rambam-button:hover {
            background-color: #f4511e;
            transform: translateY(-2px);
        }
        
        .igrot-button {
            background-color: #00bcd4;
            color: white;
            border: none;
        }
        
        .igrot-button:hover {
            background-color: #00acc1;
            transform: translateY(-2px);
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            }
        }
        
        .donation-info {
            margin-top: 10px;
            font-size: 16px;
            color: #01579b;
            text-align: center;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        footer {
            margin-top: 60px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            color: #01579b;
            background-color: rgba(255, 255, 255, 0.7);
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }
            
            h1 {
                font-size: 28px;
            }
            
            .tagline {
                font-size: 18px;
            }
            
            .player-container {
                padding: 20px;
            }
            
            .action-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .contact-button, .donate-button, .hitat-button, .rambam-button, .igrot-button {
                width: 100%;
                text-align: center;
            }
            
            .logo-text {
                font-size: 36px;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <header>
            <div class="logo-container">
                <div class="soundwave">
                    <div class="wave-bar"></div>
                    <div class="wave-bar"></div>
                    <div class="wave-bar"></div>
                    <div class="wave-bar"></div>
                    <div class="wave-bar"></div>
                    <div class="wave-bar"></div>
                    <div class="wave-bar"></div>
                    <div class="wave-bar"></div>
                    <div class="wave-bar"></div>
                    <div class="wave-bar"></div>
                </div>
                <div class="logo-text">ערוץ 770</div>
                <div class="logo-subtitle">מבשר טוב</div>
            </div>
            <p class="tagline">קול השמחה והאמונה - שידורים חיים לאורך כל היום</p>
        </header>
        
        <main class="main-content">
            <div class="player-container">
                <h2 class="player-title">האזנה לשידור חי</h2>
                
                <div style="text-align: center;">
                    <a href="https://liveradio.co.il:7777/nsv" class="live-button" target="_blank">
                        <span class="live-indicator"></span>
                        שידור חי
                    </a>
                </div>
                
                <div class="audio-player">
                    <h3>נגן ישיר</h3>
                    <audio controls>
                        <source src="https://liveradio.co.il:7777/nsv" type="audio/mp3">
                        הדפדפן שלך אינו תומך בנגן האודיו.
                    </audio>
                </div>
            </div>
            
            <div class="action-buttons">
                <a href="https://wa.me/0547703330" class="contact-button" id="contactButton">
                    צור קשר
                </a>
                
                <a href="https://www.matara.pro/nedarimplus/online/?mosad=7001813" class="donate-button" id="donateButton" target="_blank">
                    תרומה לערוץ 770
                </a>
                
                <a href="http://www.770tv.org/hitat.mp3" class="hitat-button" id="hitatchatButton" target="_blank">
                    לימוד חת"ת יומי
                </a>
                
                <a href="https://www.chabad.fm/157/" class="rambam-button" id="rambamButton" target="_blank">
                    לימוד 3 פרקים לרמב"ם
                </a>
                
                <a href="https://www.770tv.org/igrotsite.html" class="igrot-button" id="igrotButton" target="_blank">
                    לקבלת ברכה באגרות הקדש
                </a>
            </div>
            
            <div class="donation-info">
                <p>תרומתך מאפשרת לנו להמשיך ולהפיץ תוכן איכותי ומשמעותי. כל תרומה, קטנה כגדולה, מסייעת לנו להגיע לעוד יהודים ולהפיץ את בשורת הגאולה.</p>
            </div>
        </main>
        
        <footer>
            <p>יחי אדוננו מורנו ורבנו מלך המשיח לעולם ועד</p>
        </footer>
    </div>
</body>
</html>