html, body { margin: 0; padding: 0; overflow-x: hidden; overflow-y: auto; } body { color: #e0e0e0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin: 0; padding: 0; background-color: #1d1d1d; } .header { background: #000; padding: 25px 0; text-align: center; border-bottom: 1px solid #333; } .header h1 { max-height: 10px; margin-top: -5px; transition: color 0.3s ease; color: #58a6ff; } .container { max-width: 800px; margin-left: auto; margin-right: auto; border-radius: 10px; padding: 30px 25px; margin-top: 22px; margin-bottom: 22px; background: #000; border: 1px solid #333; } .title-box h3 { margin-top: -5px; font-size: 28px; color: #58a6ff; text-align: center; } .title-box p { font-size: 16px; color: #ccc; text-align: start; line-height: 1.6; } .cta-button { display: block; margin: 20px auto; padding: 15px 35px; font-size: 18px; color: white; background-color: #223941; border: 1px solid #2e5f6e; border-radius: 10px; transition: 0.3s; text-align: center; text-decoration: none; color: #58a6ff; font-weight: 600; } .cta-button:hover { cursor: pointer; background-color:#2e5f6e; border: 1px solid #00acc1; transform: scale(1.03); } .notice { color: #fff; padding: 14px 20px; border-radius: 6px; margin: 30px 0; font-size: 16px; text-align: start; background-color: #223941; border: 1px solid #2e5f6e; } .notice strong { color: #58a6ff; } .stream-box { background-color: #223941; border: 1px solid #2e5f6e; padding: 12px 18px; margin-bottom: 10px; border-radius: 8px; display: flex; justify-content: space-between; align-items: center; transition: 0.2s ease; height: 30px; } .stream-box:hover { cursor: pointer; background-color:#2e5f6e; border: 1px solid #00acc1; } .stream-name { font-size: 17px; font-weight: 600; display: flex; align-items: center; gap: 10px; } .svg-icon { width: 18px; height: 18px; fill: white; } .live-badge { color: #58a6ff; font-size: 20px; font-weight: 600; display: flex; align-items: center; gap: 6px; } .live-badge svg { width: 24px; height: 24px; } .live-svg { width: 45px; height: 25px; margin-top: -20px; margin-right: -5px; } .live-dot { position: relative; width: 10px; height: 10px; background-color: red; border-radius: 50%; display: inline-block; margin-top: 4px; margin-left: -3px; margin-right: -5px; box-shadow: 0 0 8px rgba(255, 0, 0, 0.8); animation: glow-pulse 1s ease-in-out infinite; } .live-dot::after { content: ''; position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; background-color: rgba(255, 0, 0, 0.4); border-radius: 50%; transform: translate(-50%, -50%); animation: ripple 1s infinite ease-out; z-index: -1; } /* Shadow glow pulse */ @keyframes glow-pulse { 0% { box-shadow: 0 0 4px rgba(255, 0, 0, 0.6); } 50% { box-shadow: 0 0 10px rgba(255, 0, 0, 1); } 100% { box-shadow: 0 0 4px rgba(255, 0, 0, 0.6); } } /* Ripple bubble effect */ @keyframes ripple { 0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; } 50% { transform: translate(-50%, -50%) scale(2.2); opacity: 0.2; } 100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; } } .alert-box { padding: 20px; background-color: #223941; border: 1px solid #2e5f6e; border-radius: 10px; margin-top: 30px; } .alert-box h2 { color: #58a6ff; margin-bottom: 10px; font-size: 20px; text-align: start; } .alert-box p { font-size: 15px; color: #ccc; line-height: 1.7; text-align: start; } .features { margin-top: -15px; padding-top: 10px; margin-left: 1px; } .features strong { color: #58a6ff; } .features h2 { color: #58a6ff; } a { color: inherit; text-decoration: none; } .footer { width: 100%; color: white; text-align: center; padding: 20px 0; font-size: 16px; background: #000; border-top: 1px solid #333; font-weight: 600; } h1 { font-size: 44px; color: #00ffe1; text-align: center; margin-bottom: 40px; } h2 { font-size: 30px; color: #ffffff; position: relative; padding-left: 18px; margin-top: 60px; } h2::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); height: 24px; width: 6px; background-color: #58a6ff; border-radius: 4px; } h3 { color: #58a6ff; font-size: 22px; margin-top: 20px; } .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 25px; } .card { padding: 20px; border-radius: 10px; transition: 0.3s ease; background-color: #223941; border: 1px solid #2e5f6e; cursor: pointer; } .card:hover { background-color:#2e5f6e; border: 1px solid #00acc1; cursor: pointer; } ul { padding-left: 25px; } li { margin-bottom: 10px; } .highlight { padding: 20px; margin-top: 50px; border-radius: 12px; background-color: #223941; border: 1px solid #2e5f6e; } .highlight:hover { background-color:#2e5f6e; border: 1px solid #00acc1; cursor: pointer; } footer { text-align: center; padding: 50px 0 30px; color: #888; } a { text-decoration: none; }
