/* 1. RESET & FONT FAMILY (Outfit) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body, html {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

/* 2. BACKGROUND VIDEO & CONTAINER */
.background-container {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    z-index: -1;
    overflow: hidden; 
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover; 
    transform: translateX(-50%) translateY(-50%);
    z-index: -2; 
}

.overlay {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: radial-gradient(circle, rgba(61, 63, 77, 0.9) 0%, rgba(61, 63, 72, 0.9) 100%);
    z-index: -1; 
}

/* 3. LAYOUT */
.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    color: white;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
    position: relative; 
    z-index: 10;
}

.logo {
    width: 280px; 
    max-height: 80px; 
    height: auto;
    object-fit: cover; 
    object-position: center; 
    margin-bottom: 30px; 
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* 4. STATEMENT */
.statement {
    font-size: 2.5rem; 
    font-weight: 500;
    line-height: 1.4;
    max-width: 1100px;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3), 
                 0 8px 16px rgba(0,0,0,0.3);
}

/* 5. SUB TEXT */
.sub-text {
    font-size: 1.2rem;
    font-weight: 300;           
    color: #ffffff;             
    opacity: 0.9;               
    letter-spacing: 6px;        
    text-transform: uppercase;
    margin-bottom: 50px;
}

/* 6. BUTTONS */
.buttons-wrapper {
    display: flex;
    flex-direction: row;
    gap: 50px;
    /* Pushes the Disclaimer Boxes down on Desktop */
    margin-bottom: 50px; 
}

.store-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px 30px;
    border-radius: 12px;
    min-width: 200px;
    transition: all 0.3s ease;
}

.store-btn:hover {
    background: white;
    color: black;
    transform: translateY(-5px);
}

.store-btn:hover .icon {
    fill: black;
}

.icon {
    width: 28px;
    height: 28px;
    margin-right: 15px;
    fill: white;
    transition: fill 0.3s ease;
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.small-txt { font-size: 0.65rem; opacity: 0.9; text-transform: uppercase; }
.big-txt { font-size: 1.1rem; font-weight: 700; }


/* 7. DISCLAIMER BOXES */
.disclaimer-grid {
    display: flex;
    flex-direction: row;
    gap: 25px;
    margin-bottom: 30px; 
    max-width: 900px;
    width: 100%;
    justify-content: center;
}

.disclaimer-box {
    flex: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 22px 25px;
    border-radius: 14px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

/* Warning (Red) */
.box-warning {
    background: linear-gradient(145deg, rgba(220, 20, 60, 0.85), rgba(160, 10, 10, 0.85));
    border: 1px solid rgba(255, 100, 100, 0.4);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.box-warning:hover {
    background: linear-gradient(145deg, rgba(255, 40, 80, 0.9), rgba(200, 20, 20, 0.9));
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 50, 90, 0.6);
}

/* Positive (Green) */
.box-positive {
    background: linear-gradient(145deg, rgba(46, 204, 113, 0.85), rgba(39, 174, 96, 0.85));
    border: 1px solid rgba(100, 255, 150, 0.4);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.box-positive:hover {
    background: linear-gradient(145deg, rgba(88, 214, 141, 0.9), rgba(30, 132, 73, 0.9));
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(88, 214, 141, 0.6);
}

.box-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    fill: #ffffff;
    margin-top: 2px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.box-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.box-content p {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
}

/* 8. FOOTER HELP */
.footer-help {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6); 
    line-height: 1.6; 
}

.footer-help p:last-child {
    color: #ffffff; 
    font-weight: 400;
}

/* --- MOBILE SPECIFIC CHANGES --- */
@media (max-width: 768px) {
    .container {
        justify-content: flex-start; 
        padding-top: 40px; /* Reduced slightly to fit boxes */
        padding-bottom: 40px;
        overflow-y: auto; 
    }

    /* KEY CHANGE: ORDERING
       This moves the Disclaimer Grid to the TOP (-1)
       Everything else defaults to 0
    */
    .disclaimer-grid {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-bottom: 30px; /* Space between boxes and Logo */
        
    }
    
    .logo {
        width: 180px; 
        height: auto;
        margin-bottom: 20px;
        /* No order needed, it naturally falls after -1 */
    }

    .statement { 
        font-size: 1.6rem; 
        margin-bottom: 20px; 
    }
    
    .sub-text {
        margin-bottom: 30px;
        font-size: 1rem;
    }

    .buttons-wrapper { 
        flex-direction: column; 
        gap: 20px; 
        margin-bottom: 30px;
    }

    .disclaimer-box {
        padding: 15px 20px; /* Slightly tighter padding for mobile */
    }

    .footer-help { 
        margin-top: 10px; 
    }
}