/* Base Styles */
/* Base Styles */
body {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('images/Background.png') no-repeat center center fixed;
    background-size: cover;
    color: #000000;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.2; }
}

@keyframes pulse-bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03) translateY(-5px);
    }
}

@keyframes wobble {
    0%, 100% {
        transform: scale(1.02) rotate(0deg);
    }
    25% {
        transform: scale(1.02) rotate(-3deg);
    }
    75% {
        transform: scale(1.02) rotate(3deg);
    }
}

@keyframes double-bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03) translateY(-10px);
    }
}

/* Layout */
.container-fluid {
    padding: 0;
}

.landing-page {
    min-height: auto;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
    position: relative;
}

.content-wrapper {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.5rem;
    position: relative;
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 0.5rem;
}

.logo-image {
    width: 220px;
    height:132px;
}

/* Main Image Section */
.main-image-section {
    width: 100%;
    max-width: 1000px;
    text-align: center;
    margin: 1rem 0;
    position: relative;
    margin-top: -80px;
}

.jili-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    animation: pulse-bounce 3s infinite ease-in-out;
    transition: all 0.3s ease;
}

.jili-image:hover {
    animation: wobble 0.6s infinite ease-in-out;
}

/* Text Content */
.text-content {
    text-align: center;
    width: 100%;
    margin-top: -50px;
    margin-bottom: 0.5rem;
}

.text-content 

h1 {
    font-size: 3rem !important;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #f89c2f;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #fefefe;
    font-weight: bold;
}

h3 {
    font-size: 1.4rem;
    color: #ffffff;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    width: 100%;
    text-align: center;
    margin-top: 0rem;
    margin-bottom: 1rem;
}

.signup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 206, 1, 0.3);
}

.signup-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 206, 1, 0.2);
}
.button-container {
    margin-bottom: 0;
    z-index: 100;
}

/* Spin Button */
.cta-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2rem 0;
    margin: 2rem 0;
}

.cta-image {
    position: absolute;
    width: 200px;
    height: 200px;
    z-index: 1;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.cta-image.left {
    left: 50px;
    transform: translateX(-50%);
}

.cta-image.right {
    right: 50px;
    transform: translateX(50%);
}

.cta-decoration {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.2);
}

.cta-decoration.social-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.signup-button {
    background: #f89c2f;
    color: #47286e;
    border: 2px solid #f89c2f;
    padding: 10px 60px;
    border-radius: 50px;
    font-weight: bolder;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px #f89c2f;
    margin: 0;
    position: relative;
    z-index: 10;
    font-family: 'Montserrat', sans-serif;
    animation: double-bounce 2s infinite ease-in-out;
}

.signup-button:hover {
    animation: wobble 0.6s infinite ease-in-out;
}

/* Features Container */
.features-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
    max-width: 300px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    width: 100%;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
    border: 1px solid rgba(255, 0, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.4);
    border-color: rgba(255, 0, 255, 0.5);
}

.feature-icon {
    font-size: 2rem;
    min-width: 40px;
    text-align: center;
}

.feature-text {
    color: black;
    flex: 1;
    min-width: 0;
}

.feature-text h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.feature-text p {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    color: #cccccc;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Social Media */
.social-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
}

.social-footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

/* Responsive Design - Mobile */
@media (max-width: 800px) and (min-width: 451px) {
    .features-container {
        display: none;
    }

    .container-fluid {
        padding: 0;
        overflow-x: hidden;
    }

    .logo-image {
        width: 90vw;
        max-width: 320px;
    }

    .wheel-container {
        width: 300vw;
        height: 300vw;
        max-width: 400px;
        max-height: 400px;
    }

    .wheel-pointer {
        width: 30px;
    }

    .lead {
        font-size: 1rem;
    }

    .text-content {
        bottom: 100px; /* Keep the same fixed distance */
    }
}