body {
    margin: 0;
    padding: 0;
    font-family: Tahoma, sans-serif;
    background: linear-gradient(135deg, #667eea, #764ba2);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background: #fff;
    padding: 25px;
    width: 480px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    text-align: center;
}

h1 {
    margin-bottom: 15px;
    color: #333;
}

video {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.links {
    display: flex;
    justify-content: space-between;
}

.link-btn {
    width: 48%;
    text-decoration: none;
    background: #667eea;
    color: #fff;
    padding: 10px 0;
    border-radius: 8px;
    transition: 0.3s;
}

.link-btn:hover {
    background: #764ba2;
    transform: translateY(-2px);
}
