/* Reset default styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Example font family */
}

/* Video background */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
}

/* Content area */
.content {
    position: relative;
    z-index: 1;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensure content takes at least full viewport height */
    flex-direction: column;
    padding-bottom: 60px; /* Space for the fixed footer */
    overflow-y: auto; /* Enable vertical scrolling for content if needed */
}

.bot-icon {
    width: 150px; /* Adjust size as needed */
    height: 150px; /* Ensure the height matches the width to maintain a perfect circle */
    border-radius: 50%; /* Creates a circular shape */
    margin-top: 20px;
    object-fit: cover; /* Ensures the image fills the circle without distortion */
}

.bot-title {
    font-size: 2.5em; /* Example font size */
    color: #76659d;
    margin-bottom: 15px;
    text-align: center; /* Center text horizontally */
}

.action-buttons {
    display: flex;
    justify-content: center;
}

.action-buttons a {
    display: inline-block;
    background-color: #4f4887;
    color: white;
    padding: 0.8em 1em;
    text-decoration: none;
    border-radius: 10px;
    margin: 10px 10px;
    transition: background-color 0.3s ease;
    border: 2px solid #40385e; /* Border color same as button color */
}

.action-buttons a:hover {
    background-color: #5f73a6; /* Darker shade for hover */
}

footer {
    text-align: center;
    padding: 1em 0;
    background-color: rgb(58, 43, 90);
    color: white;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999; /* Ensures footer is above other content */
}

/* Modal styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000; /* Ensure it overlays other elements */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5); /* Semi-transparent background */
    overflow-y: auto; /* Enable vertical scrolling for the modal */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-body {
    padding: 20px;
    overflow-y: auto; /* Enable scrolling within the modal body */
    max-height: calc(100vh - 180px); /* Adjust modal body height */
}

.modal-body h3 {
    margin-top: 0;
}

/* Customize scrollbar for modal body */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.modal-body::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
    .modal-content {
        width: 90%;
    }
}
