body {
    font-family: Arial, sans-serif;
    background: #222;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 10px;
}

.card {
    position: relative;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

video {
    width: 100%;
    height: auto;
    display: block;
}

.overlay {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: flex-start;
    padding: 8px;
}

.overlay img {
    width: 40px;
    height: 40px;
    margin-top: 5px;
}

.geo-text {
    margin-left: 10px;
    font-size: 0.9rem;
    line-height: 1.2rem;
    max-width: calc(100% - 50px);
    word-wrap: break-word;
}

.buttons {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 8px;
    background: rgba(0,0,0,0.3);
}

button {
    padding: 10px 14px;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    background: #ff9800;
    color: white;
    cursor: pointer;
}

button:hover {
    background: #e68900;
}
