body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    position: sticky;
    top: 0;
    background: #333;
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header img {
    height: 50px;
    margin-right: 10px;
}

.filters {
    margin: 15px;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    width: 90%;
    margin: 10px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

.filter-container {
    position: sticky;
    top: 0;
    background: #fff;
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    z-index: 1000;
    border-bottom: 2px solid #ddd;
}

.filter-container label {
    font-weight: bold;
    color: #444;
}

.filter-container select {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #aaa;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-container select:focus {
    border-color: #ff7b00;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 123, 0, 0.5);
}


#reviewOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 95%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

#overlayContent {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#closeOverlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
}

#reviewIframe {
    width: 97%;
    height: 550px;
    border: none;
}

div {
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
}

iframe, video, embed, object {
    max-width: 100%;
    height: auto;
}


.responsive-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.responsive-video iframe,
.responsive-video object,
.responsive-video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



.btn {
    display: inline-block;
    padding: 10px 15px;
    margin: 5px 0;
    background-color: #007bff;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}
