/* Base styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background: black;
    overflow: hidden;
}

/* Video container styles */
.video-container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.animation-video {
    width: auto;
    height: 100vh;
    max-width: 100vw;
    object-fit: contain;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease-in-out;
    will-change: opacity;
}

.video-hidden {
    opacity: 0;
}

.video-visible {
    opacity: 1;
}

/* Terms dialog styles */
.terms-dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

.dialog-content {
    background: #1a1a1a;
    width: 90%;
    max-width: 400px;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid #333;
}

.dialog-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 16px 0;
    text-align: center;
}

.dialog-message {
    color: #a0a0a0;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 32px 0;
    text-align: center;
}

.dialog-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dialog-button {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.button-yes {
    background: #2563eb;
    color: white;
}

.button-yes:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.button-no {
    background: #2a2a2a;
    color: #ffffff;
    border: 1px solid #404040;
}

.button-no:hover {
    background: #333333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
