      /* @font-face {
       font-family: 'written-regular';
       src: url('font/written-regular.ttf') format('truetype');
       font-weight: normal;
       font-style: normal;
                        }
       body {
        font-family: 'written-regular', Arial, sans-serif;
              }
          h1 {
          font-family: 'written-regular', Arial, sans-serif;
          font-weight: bold;
              }*/
      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
           /*font-family: 'written-regular',arial,sans-serif;*/
        }  
        
        

        /*body {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);  
            backgroundimage: url('img/bg1.jpg');
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background-attachment: fixed;
            background-size: cover;
        }
        
          body {
           backgroundimage: url('img/bg1.jpg');
           backgroundrepeat: norepeat;
           backgroundsize: cover;
        }*/
        
        body {
            background: url('https://s21.ax1x.com/2025/11/23/pZkagjf.jpg') center/cover no-repeat fixed;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .glass-container {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            margin: 40px auto;
            padding: 30px;
            max-width: 600px;
            width: 90%;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .home-btn, .music-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .home-btn:hover, .music-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }
        
                .home-btn i, .music-btn i {
            font-size: 20px;
            color: white;
        }

        .content {
            text-align: center;
            margin-bottom: 30px;
        }

        .content-text {
            color: white;
            font-size: 24px;
            font-weight: 600;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            line-height: 1.4;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .countdown-container {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .countdown-title {
            color: white;
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 500;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
                    }

        .countdown {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .time-unit {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            padding: 15px 10px;
            min-width: 70px;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.25);
        }

        .time-value {
            color: white;
            font-size: 28px;
            font-weight: 700;
            display: block;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .time-label {
            color: rgba(255, 255, 255, 0.8);
            font-size: 12px;
            margin-top: 5px;
        }

        footer {
            background: linear-gradient(45deg, #ff69b4, #ff1493);
            color: white;
            text-align: center;
            padding: 15px;
            margin-top: auto;
            font-size: 14px;
            font-weight: 500;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 600px) {
            .glass-container {
                margin: 20px 15px;
                padding: 20px;
            }
            
            .header {
                margin-bottom: 20px;
            }
            
            .content-text {
                font-size: 18px;
            }
            
            .time-unit {
                min-width: 50px;
                padding: 12px 8px;
            }
            
            .time-value {
                font-size: 20px;
            }
        }

        @media (max-width: 400px) {
            .countdown {
                gap: 8px;
            }
            
            .time-unit {
                min-width: 40px;
                padding: 10px 6px;
            }
            
            .time-value {
                font-size: 16px;
            }
            
            .time-label {
                font-size: 10px;
            }
        }
        
  
        
