 /* --- Colors and Base Styles --- */
        :root {
            --color-red: #b42026;      /* Primary Red */
            --color-blue: #024f7c;     /* Primary Blue */
            --color-white: #ffffff;
            --color-dark-bg: #222222;  /* Slightly Lighter Dark Background */
            --color-card-bg: #333333;  /* Card Background */
            --color-text: #e0e0e0;
        }
		
		
        body {
			background-image: url('../images/liveradiobkg.jpg');
			background-size: cover;
			background-position: center;
			margin: 0; /* Remove default body margin */
			padding: 0; /* Remove default body padding */
			
            text-align: center;

			position: relative; /* For positioning the overlay */
            font-family: 'Montserrat', sans-serif;
            color: var(--color-text);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;

        }

        /* --- Player Container --- */
        .player-container {
            width: 100%;
            max-width: 300px;
            padding: 30px 30px;
            background-color: rgba(0, 0, 0, 0.6);
            border-radius: 25px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* --- Logo and Visualizer Area --- */
        .logo-visualizer-area {
            position: relative;
            width: 200px;
            height: 200px;
            margin: 0 auto 30px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Logo Spin Animation (Active only when playing) */
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .logo-wrapper {
            position: absolute;
            z-index: 10; /* Keep logo on top of waves */
            width: 150px;
            height: 150px;
            border: 4px solid var(--color-white);
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(0, 123, 255, 0.4);
            transition: box-shadow 0.3s;
        }
        
        /* Class added by JS when playing */
        .logo-wrapper.spinning {
            animation: spin 20s linear infinite; /* Faster spin when active */
            box-shadow: 0 0 30px var(--color-red);
        }

        .logo-wrapper img {
            height: 100%;
            display: block;
        }

        /* --- Circular Visualizer Bars --- */
        .visualizer {
            position: absolute;
            width: 100%;
            height: 100%;
            /* Optional: Add a subtle glow filter to the visualizer */
            filter: drop-shadow(0 0 2px rgba(220, 53, 69, 0.5));
        }

        .bar {
            position: absolute;
            width: 5px; /* Thickness of the bar */
            height: 3px; /* Base visible part of the bar */
            bottom: 50%; /* Start at the center */
            left: 50%; /* Start at the center */
            margin-left: -2px; /* Center the bar */
            background: var(--color-red);
            transform-origin: 50% 100%; /* Anchor rotation at the center of the area */
            border-radius: 2px 2px 0 0;
            transition: transform 0.1s ease-out; 
            
            /* Default subtle animation (Idle) */
            animation: subtle-pulse 1.5s ease-in-out infinite alternate;
        }
        
        /* Subtle animation for idle state */
        @keyframes subtle-pulse {
            0% { transform: scaleY(1) }
            20% { transform: scaleY(1.3) }
        }

        /* --- Text and Live Indicator --- */
        h1 {
            color: var(--color-white);
            font-size: 1.6em;
            margin-bottom: 10px;
        }

        .subtitle {
            font-size: 1em;
            color: var(--color-text);
            font-weight: 400;
            margin-bottom: 30px;
            align-items: center;
        }

        /* Live Indicator Dot */
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
            100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
        }

        .live-dot {
            width: 10px;
            height: 10px;
            background-color: var(--color-red);
            border-radius: 50%;
            animation: pulse 1.5s infinite;
			display: inline;
        }

        /* --- Controls Section --- */
        .controls {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Play/Pause Button */
        .play-pause-btn {
            width: 50px;
            height: 50px;
            background-color: var(--color-red);
            border-radius: 25%;
            border: none;
            color: var(--color-white);
            font-size: 30px;
            cursor: pointer;
            outline: none;
            transition: transform 0.2s, background-color 0.2s, box-shadow 0.3s;
            box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
            margin-bottom: 30px;
        }

        .play-pause-btn:hover {
            background-color: #c82333;
            transform: scale(1.05);
        }

        /* Volume Slider */
        .volume-control {
            display: flex;
            align-items: center;
            width: 100%;
            max-width: 300px;
            margin-top: 15px;
        }

        .volume-control i {
            font-size: 1.2em;
            color: var(--color-blue);
            margin: 0 10px;
        }

        input[type="range"] {
            -webkit-appearance: none;
            width: 100%;
            height: 6px;
            background: #555;
            border-radius: 5px;
            outline: none;
            transition: opacity .2s;
        }

        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 18px;
            height: 18px;
            background: var(--color-blue);
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 0 5px var(--color-blue);
        }
		
		
		
		
		
		.event-box {
		background-color: rgba(0, 0, 0, 0.4);
		border-radius: 25px;
		box-shadow: 0 4px 20px rgba(0,0,0,0.1);
		padding: 10px 10px;
		width: 90%;
		max-width: 400px;
		margin: 10px;
		transition: all 0.3s ease;
	  }
	  h2 {
		margin-top: 0;
		font-size: 1em;
		color: #b42026;
	  }
	  .event-time {
		font-weight: bold;
		color: #dadada;
	  }
	  .event-title {
		margin: 1px 0;
		font-size: 1.1em;
	  }
	  .updated {
		margin-top: 1px;
		font-size: 0.9em;
		color: #c8c8c8;
	  }