@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');
/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styling body and html */
body, html {
    height: 100%;
    font-family: 'Arial', sans-serif; /* Fallback font */
}

/* Container for centering the main box */
.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #800040 0%, #000000 75%); /* Neon pink to black faster */
    background-size: cover;
    overflow: hidden;
}

/* Main Box Styling */
.main-box {
    text-align: center;
    background: rgba(0, 0, 0, 0.7); /* Translucent black */
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px); /* Glass effect */
    animation: fadeIn 1s ease-out; /* Fade-in animation */
    max-width: 600px;
    width: 90%; /* Reduce width on small screens */
}

.main-cover {
    background-image: url('cover.webp');
    background-size: cover; /* Zooms in to cover the container */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    opacity: 0.7; /* Fades the entire element */
    background-blend-mode: overlay; /* Blends image with background */
}

/* Main Icon */
.main-icon {
    width: 100px;
    margin-bottom: 60px;
    display: flex;
	border-radius: 50%; /* Makes the element circular */
	box-shadow: 0 0 10px #ff007f, 0 0 20px #ff007f, 0 0 30px #ff007f; /* Circular neon glow */
}

.logo-icon {
    width: 60px;
    margin-top: 20px;
}

.bounce {
    animation: bounce 1.5s infinite;
}

/* Title Styling */
.main-title {
    font-family: 'Russo One', sans-serif; /* Ultra street-style font */
    font-size: 42px;
    font-weight: 400; /* Russo One is bold by default, 10000 is invalid */
    color: #ffffff; /* Bright neon pink */
    margin-bottom: 20px;
    letter-spacing: 1.5px; /* Tighter spacing for that stencil look */
    text-transform: uppercase; /* Enhances the street vibe */
    text-shadow: 0 0 10px #ff007f, 0 0 20px #ff007f, 0 0 30px #ff007f; /* Neon glow */
}

/* Message Styling */
.main-message {
    font-family: 'Russo One', sans-serif; /* Consistent street edge */
    font-size: 20px;
    font-weight: 400; /* Adjusted from invalid 10000 */
    color: #ffffff; /* Bright neon pink */
    margin-top: 5px;
    margin-bottom: 5px;
    line-height: 1.4; /* Adjusted for Russo One's chunkiness */
    letter-spacing: 1px;
    text-transform: uppercase; /* Matches the gritty aesthetic */
    text-shadow: 0 0 8px #ff007f, 0 0 15px #ff007f; /* Subtle neon glow */
}

.bottom-message {
    font-family: 'Russo One', sans-serif; /* Consistent street edge */
    font-size: 14px;
    font-weight: 400; /* Adjusted from invalid 10000 */
    color: #ffffff; /* Bright neon pink */
    margin-top: 5px;
    margin-bottom: 5px;
    line-height: 1.4; /* Adjusted for Russo One's chunkiness */
    letter-spacing: 1px;
    text-transform: uppercase; /* Matches the gritty aesthetic */
    text-shadow: 0 0 8px #ff007f, 0 0 15px #ff007f; /* Subtle neon glow */
}

/* Button Styling */
.proceed-btn {
    font-family: 'Russo One', sans-serif; /* Street-style button */
    background: linear-gradient(135deg, #ff512f, #f09819); /* Gradient button */
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase; /* Reinforces the urban feel */
}

/* Button Hover Effect */
.proceed-btn:hover {
    background: linear-gradient(135deg, #ff7851, #fcb045);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Animations */

/* Icon bounce animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 0.7;
        transform: scale(1);
    }
}

/* Responsive Design: Mobile Adjustments */
@media (max-width: 600px) {
    .main-box {
        padding: 30px 20px;
    }

    .main-icon {
        width: 90px;
    }

    .main-title {
        font-size: 24px;
    }

    .main-message {
        font-size: 16px;
    }

    .proceed-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}