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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background-color: #fafafa;
    color: #333;
    line-height: 1.6;
    padding: 40px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 120px;
}

.logo {
    font-family: 'Libertinus Serif', serif;
    font-size: 32px;
    font-weight: 700;
    color: #000;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.location-time {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
}

.location {
    font-weight: 700;
    color: #000;
}

.time {
    font-weight: 700;
    color: #000;
}

.time-separator {
    width: 4px;
    height: 4px;
    background-color: #000;
    border-radius: 50%;
}

.location-time:hover::after {
    content: "Currently processing french companies only";
    position: absolute;
    top: 25px;
    right: 0;
    background-color: #000;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
}

.profile-menu:hover {
    border-color: #333;
}

.main-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-section {
    margin-bottom: 60px;
    max-width: 800px;
    text-align: center;
}

.title {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #000;
}

.description {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
}

.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

.search-input {
    padding: 16px 20px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 13px;
    outline: none;
    background-color: #fff;
    width: 400px;
}

.search-input:focus {
    border-color: #999;
}

.search-button {
    padding: 16px 24px;
    background-color: #000;
    color: white;
    border: 1px solid #000;
    border-radius: 13px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

.search-button:hover {
    background-color: #333;
}

@media (max-width: 768px) {
    body {
        padding: 20px;
    }
    
    .title {
        font-size: 36px;
    }
    
    .description {
        font-size: 16px;
    }
    
    .search-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-input {
        width: 100%;
        max-width: 400px;
    }
    
    .location-time {
        display: none;
    }
    
    .header-right {
        gap: 15px;
    }
    
    .logo {
        font-size: 28px;
    }
}

.candle-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(250, 250, 250, 0.9);
    border-top: 1px solid #ddd;
    overflow: hidden;
    z-index: 100;
}

.candle-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.candle {
    position: absolute;
    bottom: 10px;
    width: 12px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.candle-wick {
    width: 2px;
    background-color: #333;
    margin: 0 auto;
}

.candle-body {
    width: 12px;
    margin-top: 2px;
    border-radius: 4px;
}

.candle.green .candle-body {
    background-color: #10b981;
    border: 1px solid #059669;
}

.candle.red .candle-body {
    background-color: #ef4444;
    border: 1px solid #dc2626;
}

.candle.green .candle-wick {
    background-color: #059669;
}

.candle.red .candle-wick {
    background-color: #dc2626;
}

.video-container {
    max-width: 800px; /* Adjust max-width as needed */
    margin: 2rem auto; /* Center the container */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    border-radius: 15px; /* Rounded edges */
    overflow: hidden; /* Ensure content respects border radius */
}

.ratio-16x9 video {
    border-radius: 15px; /* Apply rounded edges to the video */
    width: 100%; /* Ensure video fills container */
    height: 100%; /* Ensure video fills container */
}

.btn-x-login {
    background-color: #000000 !important;; 
    border-color: #000000 !important;;
    color: rgb(255, 255, 255) !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.2s ease;
    min-width: 140px;
}

.btn-x-login:hover {
    background-color: #1a1a1a !important;
    border-color: #1a1a1a !important;
    color: rgb(255, 255, 255) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-x-login:focus,
.btn-x-login:active {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: rgb(255, 255, 255) !important;
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
}

.btn-x-login:active {
    transform: translateY(0);
}

.x-logo {
    width: 20px;
    height: 20px;
    fill: rgb(255, 255, 255) !important;
    flex-shrink: 0;
}