:root {
    --primary-color: #d4a017;
    /* Gold/Amber accent from potential logo colors */
    --text-color: #ffffff;
    --glass-bg: rgba(112, 111, 110, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

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

body,
html {
    height: 100%;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/main-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    filter: brightness(0.6);
    /* Darken background for better readability */
}

.main-content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 900px;
    box-shadow: var(--glass-shadow);
    animation: fadeIn 1s ease-out;
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    max-height: 120px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.content-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.text-content {
    flex: 2;
    min-width: 300px;
    text-align: center;
    order: 2;
    /* Ensure text is in the middle on desktop */
}

h1 {
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.status-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sub-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    /* Gold gradient */
    color: #1a1a1a;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.5);
    background: linear-gradient(135deg, #ffe033 0%, #d4a017 100%);
}

.product-highlight {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-highlight.left {
    order: 1;
}

.product-highlight.right {
    order: 3;
}

.product-card {
    position: relative;
    border-radius: 16px;
    overflow: visible;
    /* Allow tooltip to overflow */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease;
    max-width: 250px;
    cursor: pointer;
}

.product-card:hover {
    transform: scale(1.05);
    z-index: 10;
}

.product-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.product-tooltip {
    position: absolute;
    bottom: -50px;
    /* Position below the image */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(20, 20, 20, 0.95);
    color: var(--primary-color);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 20;
}

.product-card:hover .product-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .product-highlight.left {
        order: 2;
    }

    .text-content {
        order: 1;
        margin-bottom: 20px;
    }

    .product-highlight.right {
        order: 3;
    }
}