.LargeScreenIssue {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.LargeScreenIssue > div:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.LargeScreenIssue > div:first-child video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.LargeScreenIssue > div:last-child {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 20px;
}

.LargeScreenIssue h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.LargeScreenIssue span {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 32px;
}

.LargeScreenIssue button {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 32px;
    font-size: 1rem;
    margin: 0 12px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.LargeScreenIssue button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}