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

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    color: white;
    position: relative;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#bgVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    padding-bottom: 3rem; /* Increased bottom padding to move content higher */
}

/* Privacy Policy specific styles */
.privacy-policy-content {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem;
    color: black; /* Ensure text color is visible */
    background-color: white; /* Ensure background color is visible */
}

.bottom-content {
    text-align: center;
    width: 100%;
    max-width: 500px;
    margin-bottom: 3rem; /* Increased margin-bottom to move content higher */
}

.beta-store-group {
    margin-bottom: 1rem;
}

.beta-label {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.store-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.store-button img {
    width: 200px;
    height: auto; /* Maintain aspect ratio */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.2s ease;
    border-radius: 10px; /* Added border-radius */
}

.store-button:hover img {
    transform: translateY(-2px);
}

.discord-button {
    display: inline-block;
    transition: all 0.2s ease;
}

.discord-logo {
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.discord-button:hover {
    transform: translateY(-2px);
}

.legal-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px; /* Reduced margin to move higher */
}

.legal-link {
    margin: 5px 0;
    color: white;
    text-decoration: underline;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.legal-link:hover {
    opacity: 1;
}

@media (min-width: 600px) {
    .legal-links {
        flex-direction: row;
        justify-content: center;
    }
    .legal-link {
        margin: 0 10px;
    }
}

@media (max-width: 600px) {
    .legal-links {
        flex-direction: column;
        align-items: center;
    }
    .legal-link {
        margin: 5px 0;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .content {
        padding: 0 1.5rem;
        padding-bottom: 2rem;
    }

    .beta-label {
        font-size: 1.5rem;
    }

    .store-buttons {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .store-button img {
        width: 160px;
        height: auto; /* Maintain aspect ratio */
        border-radius: 8px; /* Adjusted border-radius for mobile */
    }

    .discord-logo {
        height: 32px;
    }

    .legal-link {
        margin: 0 0.5rem;
        font-size: 0.8rem;
    }
}

.hidden-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('assets/videos/landing_bg_video.mp4') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    text-align: center;
}

.hidden-page .request-button {
    margin-top: 15rem; /* Added margin to move the button down */
    padding: 1rem 2rem;
    font-size: 1.2rem;
    color: #fff;
    background-color: #ff0000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hidden-page .request-button:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}