/* Reset and base styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-y: auto !important;
    overflow-x: hidden;
    height: 100%;
    width: 100%;
    font-family: 'Arial', sans-serif;
}

body {
    overflow-y: auto !important;
    overflow-x: hidden;
    min-height: 100%;
    width: 100%;
    position: relative;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Video Background Styling */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #333; /* Fallback background color */
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay to make text more visible */
    z-index: 1;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Content Styling */
.content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background-color: #1dc410 !important; /* Updated green color with !important */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #19a80e !important; /* Darker shade for hover with !important */
}

/* Specifically targeting meme button with increased specificity and !important */
.button-group .meme-btn,
a.cta-button.meme-btn,
.content .meme-btn {
    background-color: #0fd5ff !important; /* Updated blue color with !important */
}

.button-group .meme-btn:hover,
a.cta-button.meme-btn:hover,
.content .meme-btn:hover {
    background-color: #0cb8db !important; /* Darker shade for hover with !important */
}

/* Override any other styles that might be affecting the meme button */
.meme-btn {
    background-color: #0fd5ff !important; /* Blue color with !important */
}

.meme-btn:hover {
    background-color: #0cb8db !important; /* Darker blue for hover */
}

/* Additional scrolling reset */
#root, main, [role="main"] {
    overflow: auto !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }
}