.hopes-container {
	display: block;
	overflow: hidden;
	position: relative;
	padding-top:5rem;
	padding-bottom:5rem;
}
        .content-wrapper-svg {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.5s ease-in-out;
        }

        .container-hopes-svg {
            position: relative;
            width: 350px;
            height: 350px;
            transition: transform 0.5s ease-in-out;
			z-index:2;
        }

        .container-hopes-svg img {
            width: 100%;
            height: auto;
            position: absolute;
            top: 0;
            left: 0;
        }

        svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: auto;
            pointer-events: none;
        }


        path {
            fill: rgba(0, 0, 255, 00); /* Warna transparan */
		    cursor: pointer;
            pointer-events: all;
            transition: fill 0.3s ease;
        }

        path:hover {
			fill: url(#blueToBlack);
            /* fill: rgba(0, 0, 255, 0.2); */
        }

        .popup-svg {
            position: absolute;
            top: 0;
            right: -800px; /* Awalnya di luar layar kanan */
            width: 700px;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
            padding: 20px;
            transition: right 0.5s ease-in-out;
        }

		.popup-svg h4 {
            margin-top: 0;
			margin-bottom:1px;
            font-size: 1rem;
            color: #d9dbff;
			font-weight:600;
        }
        .popup-svg h2 {
            margin-top: 0;
            font-size: 2rem;
            color: #fff;
			font-weight:600;
			padding-top:0;
        }

        .popup-svg p {
            font-size: 1rem;
            color: #fff;
        }
        

        .close-btn-svg {
            position: absolute;
            top: 10px;
            right: 15px;
            cursor: pointer;
            font-size: 2rem;
            color: #fff;
        }
.sunlight {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: blur(60px);
    z-index: 1; /* Pastikan berada di belakang */
}

/* Container untuk garis cahaya */
.light-streaks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

/* Garis cahaya */
.light-streak {
    position: absolute;
    width: 2px; /* Ukuran awal garis */
    height: 150px;
    background: linear-gradient(to bottom, rgba(255, 255, 0, 0.8), rgba(255, 255, 0, 0));
    filter: blur(3px);
    opacity: 0;
    transform-origin: center;
}


.video-flex {
    display: inline-flex;
    margin-bottom: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
}
.video-flex:hover {
    background: rgba(255, 255, 255, 0.3);
}
.video-thumb {
    margin-right: 10px;
}
.video-thumb, .video-paragraf {
    display: inline; 
    margin-top: 0;
}
.popup-svg-text {
    overflow-y: auto;
    height: 100%;
}
.popup-svg-text::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  .popup-svg-text::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
  }
   
  /* Handle */
  .popup-svg-text::-webkit-scrollbar-thumb {
    background: #eee; 
    border-radius: 10px;
  }
  
  /* Handle on hover */
  .popup-svg-text::-webkit-scrollbar-thumb:hover {
    background: #ccc; 
  }
  .animation-hopes-text {
    color:#fff;
    text-align: center;
    width: 100%;
    font-size: 0.8rem;
    line-height: 1.3;
    margin-bottom: 3px;
    padding: 10px;
  }
@media screen and (max-width: 768px) {
	.hopes-container {
		padding-top:10rem;
		padding-bottom:10rem;
	}
	.sunlight {
    width: 400px;
		height: 400px;
		filter: blur(80px);
	}
	.container-hopes-svg {
            
            width: 250px;
            height: 250px;

        }

        
	.popup-svg {
        width: 250px;
		background: rgba(0, 0, 0, 0.7);
        padding: 10px 5px;
	}
	.popup-svg h4 {
           font-size: 0.9rem;
        }
        .popup-svg h2 {
            font-size: 1.6rem;
        }
        .video-flex {
            display: block;
            margin-bottom: 5px;
        }
        .popup-svg p {
            font-size: 0.8rem;
            line-height: 1.5;
        }
        .popup-svg-text::-webkit-scrollbar {
            width: 5px;
          }
          .video-thumb, .video-paragraf {
            display: block; 
            margin-top: 0;
        }
        .video-thumb {
            margin-right: 0;
            margin-bottom: 5px;
        }
}