html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
}

.top-half, .bottom-half {
    flex: 1;
    height: 50vh;
    overflow: hidden;
}

.match-card {
    height: 100%;
    margin: 0;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #000;
}

.video-container {
    flex: 1;
    position: relative;
    width: 100%;
    height: 100%;
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-title {
    text-align: center;
    padding: 10px;
    font-size: 1.25rem;
    font-weight: bold;
    background-color: #1e1e1e;
}

.no-match-fallback {
    text-align: center;
    padding: 20px;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.page-title {
  text-align: center;
}
