
  


:root {
            --primary-bg: #141414;
            --secondary-bg:#1F1F1F;
            --text-primary: #FFFFFF;
            --text-secondary: #AAAAAA;
            --accent-color: #E50914;
        }
        body {
            background-color: var(--primary-bg);
            color: var(--text-primary);
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            margin: 0;
            padding: 0px 0 0px 0; /* Header height increased */
        }      
  
     a:link { color:#fff;
  text-decoration: none; 
} 
a:visited { 
  text-decoration: none; 
} 
a:hover { 
  text-decoration: none; 
} 
a:active { 
  text-decoration: none;} 
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: #000;
            color: #fff;
            font-family: 'Arial', sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
        }

        .header {
            font-size: 2rem;
            margin: 20px;
            color: #8B0000; /* Changed to dark red */
        }

        .poster img {
            width: 99%;
            max-width: 500px;
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(139, 0, 0, 0.4); /* Changed to dark red */
        }

        .buttons {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 10px 0;
            flex-wrap: wrap;
        }

        .btn {
            padding: 8px 15px;
            font-size: 1rem;
            border: 1px solid #fff;
            border-radius: 8px;
            background-color: #000;
            color: #fff;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn.active,
        .btn:hover {
            background-color: #8B0000; /* Changed to dark red */
            border-color: #8B0000; /* Changed to dark red */
            color: #fff;
        }



        .player {
            
            width: 99%;height:300px;
            max-width: 100%;
            aspect-ratio: 16/9;
            border-radius: 10px;
            overflow: hidden;
            border: 0px solid #8B0000; /* Changed to dark red */
            box-shadow: 0 0 15px rgba(139, 0, 0, 0.3); /* Changed to dark red */
        }

        iframe {position:relative;
            width: 100%;
            height: 300px;
            border: none;
        }

        .buttons {
            margin-top: 30px;
        }
        
       

.telegram-btn {position: fixed;
            background-color: gold;
            border:3px solid gold; 
            padding: 2px 2px;
            
            text-decoration: none;
            
            transition: all 0.2s ease;
            
            align-items: center;
            justify-content: center;
            gap: 15px;
            white-space: nowrap;
            width: 100%;
            flex-shrink: 0;top:0px
        }

.telegram-btn1 {
            background-color:red;
            color: white;
            padding: 2px 2px;
            border-radius: 0px;
            text-decoration: none;
            font-weight: 900;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            white-space: nowrap;
            
            flex-shrink: 0;
        }


.telegram-btn2 {
            background-color: green;
            color:white;
            padding: 2px 2px;
            border-radius: 0px;
            text-decoration: none;
            font-weight: 900;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            white-space: nowrap;
            
            flex-shrink: 0;
        }
   
   
   
   
   
   
   



