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

body {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: 'Barlow Semi Condensed', sans-serif;
}

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button {
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Barlow Semi Condensed', sans-serif;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.button-icon {
    width: 24px;
    height: 24px;
}

.cta-button:hover {
    background-color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16), 0 8px 24px rgba(0, 0, 0, 0.12);
}

.cta-button:active {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

