:root {
            --primary-color: #4169e1;
            --secondary-color: #3a5fcd;
            --accent-color: #FFD700;
            --text-color: #fff;
            --light-text: #f5f5f5;
            --background: #000;
			--role-color: #1a94ff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
			background-color: var(--background);
			background-image: url('/PWA/images/bg1.webp');
			background-size: cover;
			background-position: center;
			background-attachment: fixed;
			color: var(--text-color);
			position: relative; 
		}

		body::before {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background-image: url('pattern7.png');
			background-repeat: repeat;
			opacity: 0.8; 
			pointer-events: none; 
			z-index: -1; 
		}

        .logo-container {
            text-align: center;
            padding: 0.5rem;
        }

        .logo-container img {
            height: 70px;
            max-width: 80%;
        }
		
		.logo-container img:hover {
		  filter: drop-shadow(12px 12px 12px rgba(255,255,255,0.5));
		  cursor:pointer;
		}

        header {
            color: var(--light-text);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .menu-toggle {
			color: var(--light-text);
			background-color: var(--secondary-color);
            border: none;
			border-radius: 0 10px 10px 0;
            font-size: 0.9rem;
            cursor: pointer;
            padding: 0.5rem;
			margin-top:5px;
			width:5vh;
        }
		
		.menu-toggle:hover, .menu-toggle:focus {
		  outline: 1px solid #ffffff;
		}
		
		.menu-ouvintes {
			color: var(--light-text);
            background-color: var(--secondary-color);
            border: none;
			border-radius: 10px 0 0 10px;
            font-size: 0.9rem;
            cursor: pointer;
            padding: 0.5rem;
			margin-top:5px;
        }
		
		.menu-ouvintes:hover, .menu-ouvintes:focus {
		  outline: 1px solid #ffffff;
		}

        .menu-ouvintes i {
            margin-right: 5px;
            color: var(--accent-color);
        }
		
		.sidebarOuvintes {
			position: fixed;
			top: 0;
			right: -250px;
			width: 250px;
			height: 24vh;
			background-color: var(--secondary-color);
			color: var(--light-text);
			transition: right 0.3s ease;
			z-index: 999;
			padding-top: 10px;
			padding-left: 10px;
			overflow-y: none;
			border-radius: 10px 0 0 10px;
			display: flex;
			flex-direction: column;
		}

        .sidebarOuvintes.open {
            right: 0;
        }

        .sidebar {
			position: fixed;
			top: 0;
			left: -200px;
			width: 200px;
			height: 100vh;
			background-color: var(--secondary-color);
			color: var(--light-text);
			transition: left 0.3s ease;
			z-index: 999;
			padding-top: 70px;
			overflow-y: auto;
			border-radius: 0 10px 10px 0;
			display: flex;
			flex-direction: column;
		}

        .sidebar.open {
            left: 0;
        }

		.sidebar-content {
			flex-grow: 1;
			overflow-y: auto;
			padding-bottom: 80px;
		}
		
		.sidebar-footer {
			padding: 15px;
			border-top: 1px solid rgba(255, 255, 255, 0.2);
			background-color: rgba(0, 0, 0, 0.1);
			flex-shrink: 0;
			position: sticky;
			bottom: 0;
			left: 0;
			right: 0;
		}

		.social-icons {
			display: flex;
			justify-content: center;
			gap: 15px;
			margin-bottom: 10px;
		}

		.social-icons a {
			color: var(--light-text);
			font-size: 1.5rem;
			transition: color 0.3s;
		}

		.social-icons a:hover {
			transform: scale(1.1);
		}
		
		.social-icons a .fa-facebook:hover {
			color: #1877f2;
			text-shadow: 0 0 10px rgba(24, 119, 242, 0.5);
		}

		.social-icons a .fa-instagram:hover {
			color: transparent;
			background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
			-webkit-background-clip: text;
			background-clip: text;
			text-shadow: 0 0 10px rgba(214, 36, 159, 0.3);
		}

		.social-icons a .fa-twitter:hover {
			color: #1da1f2;
			text-shadow: 0 0 10px rgba(29, 161, 242, 0.5);
		}

		.social-icons a .fa-youtube:hover {
			color: #ff0000;
			text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
		}

		.credits {
			text-align: center;
			font-size: 0.7rem;
			color: rgba(255, 255, 255, 0.6);
			line-height: 1.4;
		}

        .sidebar ul {
            list-style: none;
        }

        .sidebar li {
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .sidebar a {
            color: var(--light-text);
            text-decoration: none;
            display: block;
        }

        .sidebar li:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
		
		.team-container {
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			gap: 20px;
			padding: 20px;
			border-radius: 10px;
			margin: 20px auto;
			max-width: 800px;
		}

		.team-member {
			display: flex;
			flex-direction: column;
			align-items: center;
			gap: 10px;
			width: 150px; 
		}
		
		.team-member:hover {
			transform: scale(1.1);
			cursor:pointer;
		}

		.member-photo {
			width: 100px;
			height: 100px;
			border-radius: 15%;
			object-fit: cover;
			border: 2px solid var(--primary-color);
		}

		.member-info {
			text-align: center;
		}

		.member-name {
			color: var(--light-text);
			font-size: 1rem;
		}

		.member-role {
			color: var(--role-color);
			font-size: 0.8rem;
			font-weight: bold;
		}

        .main-content {
            margin-top: 5px;
            padding: 0;
            display: flex;
            flex-direction: column;
            height: calc(100vh - 100px);
        }

        .player-container {
			overflow: hidden;
			display: flex;
			justify-content: center;
			align-items: center;
			width: 100%;
			margin: 0 auto;
			padding: 0 1%;
		}

		.player-section {
			width: 96%;
			height: 110px;
			border: none;
			display: block;
			margin: 0 auto;
		}

		.chat-container {
			flex-grow: 1;
			display: flex;
			flex-direction: column;
			align-items: center;
			width: 100%;
			padding: 0 1%; 
			
		}

		.chat-iframe {
			width: 96%; 
			height:auto;
			flex-grow: 1;
			border: none;
			margin: 0 auto; 
			border-radius:5px;
		}

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 998;
            display: none;
        }

        .overlay.show {
            display: block;
        }

        .modal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: rgba(0, 0, 0, 0.8);
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
            z-index: 1001;
            width: 90%;
            max-width: 800px;
			max-height:90vh;
			overflow: none;
        }

        .modal.show {
            display: block;
        }

        .modal h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            text-align: center;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.7rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 0.9rem;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 80px;
        }

        .form-submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            transition: background-color 0.3s;
        }

        .form-submit-btn:hover {
            background-color: var(--secondary-color);
        }

        .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #ff9980;
        }
		
		.close-btn:hover {
			color: #ff471a;
		 }
		 
		 .share-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        
        .share-content {
            padding: 25px;
            border-radius: 10px;
            max-width: 90%;
            width: 400px;
            background-color: rgba(0, 0, 0, 0.8);
			box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
            text-align: center;
        }
        
        .share-options {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 20px 0;
            flex-wrap: wrap;
        }
        
        .share-option {
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            text-decoration: none;
            transition: transform 0.3s;
        }
        
        .share-option:hover {
            transform: scale(1.1);
        }
        
        .facebook { background-color: #3b5998; }
        .X { background-color: #1da1f2; }
        .whatsapp { background-color: #25d366; }
        .email { background-color: #666666; }
        .link { background-color: #2ecc71; }
        
        .closeshare-btn {
            background: #ff9980;
            border: none;
            padding: 8px 20px;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 15px;
            font-size: 14px;
        }
        
        .closeshare-btn:hover {
            background: #ff471a;
        }
        
        .share-title {
            margin: 0 0 15px 0;
            color: var(--primary-color);
            margin-bottom: 1rem;
            text-align: center;
        }
		
		.toast-notification {
			position: fixed;
			bottom: 20px;
			left: 50%;
			transform: translateX(-50%);
			background-color: #4CAF50;
			color: white;
			padding: 12px 24px;
			border-radius: 4px;
			box-shadow: 0 4px 8px rgba(0,0,0,0.1);
			z-index: 1001;
			animation: fadeInOut 3s ease-in-out;
			opacity: 0;
			display: flex;
			align-items: center;
			gap: 10px;
		}

		.toast-notification.error {
			background-color: #f44336;
		}
		
		.fa-spinner {
            margin-right: 8px;
        }
        
        .form-submit-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

		@keyframes fadeInOut {
			0% { opacity: 0; bottom: 0; }
			10% { opacity: 1; bottom: 20px; }
			90% { opacity: 1; bottom: 20px; }
			100% { opacity: 0; bottom: 0; }
		}

		.toast-icon {
			font-size: 18px;
		}
		
		.offline-message {
              background: #ffebee;
              padding: 15px;
              border-radius: 5px;
              text-align: center;
              margin: 20px 0;
        }
            
        .offline-message button {
              background: #4169e1;
              color: white;
              border: none;
              padding: 8px 15px;
              border-radius: 4px;
              cursor: pointer;
              margin-top: 10px;
        }
		
		@media (max-width: 600px) {
			.team-container {
				flex-direction: column;
				align-items: center;
			}
			.team-member {
				width: 100%;
				max-width: 250px;
			}
			.sidebarOuvintes {
			right: -80vh;
			width: 40vh;
			height: auto;
			padding-top: 10px;
			padding-right: 16%;
			flex-direction: column;
			align-items: center;
		}
		.menu-toggle {
            cursor: pointer;
            font-size: 1.2rem;
            width: 5vh;
            padding: 0.5rem;
			margin-top:15px;
        }
        
        .menu-ouvintes {
			font-size: 1.2rem;
			padding: 0.5rem;
			margin-top:15px;
        }
        
        .chat-iframe {
			max-height:60vh;
		}
        
		}

        @media (min-width: 768px) {
            .logo-container img {
                height: 70px;
            }
            
            .modal {
                width: 80%;
            }
        }