*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#bdcard {
    height: 100%;
    font-family: VN_BMWTypeNext Latin, Arial, sans-serif;
    overflow: hidden;
}

#wishes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.active {
    opacity: 1;
    z-index: 2;
}

h1 {
    margin-bottom: 20px;
    padding: 10px 20px;
      font-size: 32px;
}

p {
    margin-bottom: 20px;
    padding: 10px 20px;
    font-size: 25px;
    font-weight: 300;
}

button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #ff6347;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #ff4c30;
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: white;
    cursor: pointer;
    z-index: 3;
}

#left-arrow {
    left: 10px;
}

#right-arrow {
    right: 10px;
}

.nav-arrow:hover {
    color: #ff6347;
}

.hide-arrow {
    display: none;
}

.slide h1, .slide p {
    max-width: 80%;
}

#cta-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #101720;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 999; /* Above all */
}

#cta-screen button {
    font-size: 20px;
    padding: 10px 20px;
    background-color: #28a745;
    font-family: VN_BMWTypeNext Latin, Arial, sans-serif;
    font-weight:300;
    color: white;
    border: none;
    cursor: pointer;
}

#cta-screen button:hover {
    background-color: #218838;
}