 /* Fonts */
 @font-face {
 font-family: BFGoodrich;
 src: url("stampts.ttf") format(truetype);
 }
 @font-face {
 font-family: Runtti;
 src: url('RunttiSP-Bold.otf') format(opentype);
 }
 @font-face {
 font-family: Alantal;
 src: url("Alantal.otf") format(opentype);
 }
 @font-face {
 font-family: DejaVuSans-Bold;
 src: url("DejaVuSans-Bold.ttf") format(truetype);
 }
 @font-face {
 font-family: DejaVu-Sans;
 src: url("DejaVuSans.ttf") format(truetype);
 }
 /* Visual Styles */
 body {
  background-color: black;
  }
  .headpage {
  background-color: #49423D;
  }
  .headpage td {
  width: 350px;
  }
  .menubr li {
  display: inline-block;
  list-style-type: none;
  margin-right: 5%;
  }
  .menubr a {
  text-decoration: none;
  color: orange;
  font-family: Alantal;
  }
  .menubr a:hover {
  color: red;
  }
  }
  #logo h1 {
  color: white;
  }
 .radio {
 background: url('../visual-styles/figbackground.png');	
	background-size: 100% 100%;
	text-align: center;
	width: 250px;
	height: 250px;
	border-radius: 4%;
	transition: transform 0.3s ease;
	}
	.radio:hover {
	 transform: scale(1.2);
	 }
	.radio:hover figcaption {
	color: red;
	transition: color 0.3s ease; /* Плавный переход цвета */
	}
	.radio img {
	margin-top: 5%;
	cursor: pointer;
	border-radius: 4%;
	}
	.radio figcaption {
	color: white;
	font-family: BFGoodrich;
	cursor: pointer;
	}
 /* Audio Player Styles */
        .audio-player {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            padding: 15px 20px;
            display: flex;
            align-items: center;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
            z-index: 1000;
        }
        
        .player-controls {
            display: flex;
            align-items: center;
            gap: 15px;
            flex: 1;
        }
        
        .control-btn {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .control-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .play-pause {
            background: #fdbb2d;
            color: #000;
        }
        
        .play-pause:hover {
            background: #ffcc44;
            transform: scale(1.05);
        }
        
        .track-info-player {
            flex: 2;
            padding: 0 20px;
        }
        
        .track-title-player {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .track-artist-player {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .progress-container {
            flex: 3;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .progress-bar {
            flex: 1;
            height: 6px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 3px;
            cursor: pointer;
            position: relative;
        }
        
        .progress {
            height: 100%;
            background: #fdbb2d;
            border-radius: 3px;
            width: 0%;
            transition: width 0.1s linear;
        }
        
        .time {
            font-size: 0.9rem;
            opacity: 0.8;
            min-width: 40px;
        }
        
        .volume-control {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
        }
        .track-title-player {
        color: white;
        }
        .track-artist-player {
        color: white;
        }
        .volume-bar {
            width: 80px;
            height: 6px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 3px;
            cursor: pointer;
            position: relative;
        }
        
        .time {
        color: white;
        }
        
        .volume-level {
            height: 100%;
            background: #fdbb2d;
            border-radius: 3px;
            width: 70%;
        }
        
        @media (max-width: 768px) {
            .content {
                grid-template-columns: 1fr;
            }
            
            .audio-player {
                flex-wrap: wrap;
                padding: 10px;
            }
            
            .player-controls, .track-info-player, .progress-container, .volume-control {
                flex: 100%;
                margin-bottom: 10px;
            }
            
            .progress-container {
                order: 3;
            }
            
            .volume-control {
                order: 4;
            }
        }
 /* Unavailable Popup */
.popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .popup {
            background: linear-gradient(135deg, #1a1a3a, #0c0c2e);
            border: 2px solid #4a4a8a;
            border-radius: 15px;
            width: 90%;
            max-width: 500px;
            padding: 30px;
            box-shadow: 0 0 30px rgba(80, 120, 255, 0.3);
            position: relative;
            overflow: hidden;
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }
        
        .popup-overlay.active .popup {
            transform: scale(1);
        }
        
        .popup::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #ff4d4d, #ff9999);
        }
        
        .popup-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .popup-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff4d4d, #ff9999);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 15px;
            font-size: 1.5rem;
            color: #0c0c2e;
        }
        
        .popup-title {
            font-size: 1.8rem;
            color: #ff9999;
            text-shadow: 0 0 10px rgba(255, 100, 100, 0.5);
        }
        
        .popup-content {
            margin-bottom: 25px;
            text-align: left;
            line-height: 1.6;
        }
        
        .popup-message {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
        
        .popup-details {
            color: #a0a0ff;
            font-size: 0.9rem;
        }
        
        .popup-buttons {
            display: flex;
            justify-content: flex-end;
            gap: 15px;
        }
        
        .popup-button {
            background: linear-gradient(135deg, #2a2a5a, #1a1a3a);
            border: 1px solid #4a4a8a;
            border-radius: 8px;
            padding: 10px 20px;
            color: #e0e0ff;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .popup-button:hover {
            background: linear-gradient(135deg, #3a3a6a, #2a2a5a);
        }
        
        .popup-button.primary {
            background: linear-gradient(135deg, #4a4a8a, #3a3a6a);
        }
        
        .popup-button.primary:hover {
            background: linear-gradient(135deg, #5a5a9a, #4a4a8a);
        }
/* About.html */
.About h1 {
font-family: DejaVu-Sans;
color: red;
}
.About p {
font-family: DejaVu-Sans;
color: white;
}
.About a {
font-family: DejaVu-Sans;
text-decoration: none;
color: orange;
}
.About a:hover {
font-family: DejaVu-Sans;
color: yellow;
}
.About li {
font-family: DejaVu-Sans;
margin-bottom: 2%;
color: white;
}
/* Download page */
.download h1 {
font-family: DejaVu-Sans;
margin-bottom: 4%;
color: orange;
}
.download h2 {
font-family: DejaVu-Sans;
color: white;
}
.download a {
font-family: DejaVu-Sans;
text-decoration: none;
color: red;
}
.download a:hover {
color: white;
}
