/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
/* Cursor Session Starts  */
.cursor-dot{
    width: 15px;
    height:15px;
    background-color: #68b9ee;
  }
  .cursor-outline{
    width:30px;
    height:30px;
    border:2px solid #68b9ee;
  }
  .cursor-dot,.cursor-outline{
    position:fixed;
    top:0;
    left:0;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    z-index:1;
    pointer-events: none;
  }
  /* Cursor Session Ends */
body {
    background: #c9d6ff;;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
}

.container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab-btn {
    background: #0072ff;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 5px;
}

.tab-btn.active {
    background: #0056d2;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

iframe {
    width: 100%;
    height: 200px;
    border-radius: 5px;
}

.live-link {
    display: inline-block;
    background: #e63946;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

@media (max-width: 600px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}
