/* --- Font Imports --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* --- Global Body Styling --- */
body {
    font-family: 'Inter', sans-serif; /* Using Inter for consistent app branding */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #0A0A0A; /* Deep black for the background */
    color: #E0E0E0; /* Off-white for general text */
    text-align: center;
    overflow: hidden; /* Prevent scroll on smaller screens if content slightly overflows */
}

/* --- Welcome Container --- */
.welcome-container {
    padding: 2.5rem 2rem; /* Slightly more padding */
    max-width: 420px; /* Slightly wider for better presentation */
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem; /* Increased space between elements for cleaner look */
    /* No background-color needed here, inherits from body */
}

/* --- App Logo --- */
.app-logo {
    background: linear-gradient(145deg, #1A1A1A, #111111); /* Subtle dark gradient for depth */
    border-radius: 30px; /* More rounded corners for a softer feel */
    width: 110px; /* Slightly larger logo background */
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem; /* More space below logo */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6); /* Deeper, more noticeable shadow */
    border: 1px solid #282828; /* Subtle border for definition */
}

.app-logo i {
    font-size: 4rem; /* Larger icon size */
    color: #2E8B57; /* Kinema+ Green for the icon */
    text-shadow: 0 0 15px rgba(46, 139, 87, 0.5); /* Soft glow for the icon */
}

/* If you are using an image for the logo */
.app-logo img {
    max-width: 85px; /* Adjust size for image logo */
    max-height: 85px;
    border-radius: 20px; /* Adapt to match the logo background's rounding */
    object-fit: contain; /* Ensures logo fits within the boundaries */
}

/* --- App Name --- */
.app-name {
    font-size: 2.5rem; /* Larger, more impactful title */
    font-weight: 700; /* Bolder */
    color: #ffffff; /* Pure white for the main title */
    margin-bottom: 0.8rem; /* Slightly more space */
    letter-spacing: -0.8px; /* Tighter letter spacing for modern feel */
}

/* --- App Description --- */
.app-description {
    font-size: 1.05rem; /* Slightly larger for readability */
    color: #A0A0A0; /* Soft gray for description */
    line-height: 1.6; /* Improved line height */
    margin-bottom: 2.5rem; /* More space before buttons */
    max-width: 350px; /* Ensure description doesn't get too wide on larger screens */
}

/* --- Buttons Container --- */
.buttons-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1.2rem; /* Increased space between buttons */
}

/* --- General Button Styles --- */
.btn {
    padding: 1.1rem 1.8rem; /* Increased padding for larger touch targets */
    border: none;
    border-radius: 15px; /* More rounded button edges */
    font-size: 1.15rem; /* Slightly larger text */
    font-weight: 600; /* Semi-bold */
    cursor: pointer;
    text-decoration: none; /* For <a> tags */
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    display: inline-flex; /* Use flex to center text horizontally */
    justify-content: center;
    align-items: center;
}

/* --- Primary Button --- */
.btn-primary {
    background-color: #2E8B57; /* Kinema+ Green for the primary action */
    color: #ffffff; /* White text */
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.4); /* Green shadow for primary button */
}

.btn-primary:hover {
    background-color: #246B44; /* Darker Kinema+ Green on hover */
    transform: translateY(-3px); /* More pronounced lift */
    box-shadow: 0 8px 20px rgba(46, 139, 87, 0.5); /* Enhanced shadow */
}
.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4) inset; /* Inset shadow on press */
}

/* --- Secondary Button --- */
.btn-secondary {
    background-color: transparent; /* Transparent background */
    color: #2E8B57; /* Kinema+ Green text */
    border: 2px solid #2E8B57; /* Kinema+ Green border */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Subtle dark shadow */
}

.btn-secondary:hover {
    background-color: rgba(46, 139, 87, 0.1); /* Light Kinema+ Green tint on hover */
    transform: translateY(-3px); /* More pronounced lift */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Enhanced shadow */
}
.btn-secondary:active {
    transform: translateY(0);
    background-color: rgba(46, 139, 87, 0.05); /* Slightly darker tint on press */
}

/* --- Terms & Policy Links --- */
.terms-policy {
    font-size: 0.9rem; /* Slightly larger for better readability */
    color: #888888; /* Consistent gray for policy text */
    margin-top: 2.5rem; /* More space above */
}

.terms-policy a {
    color: #2E8B57; /* Kinema+ Green for links */
    text-decoration: none;
    font-weight: 600; /* Semi-bold */
    transition: text-decoration 0.2s ease, color 0.2s ease;
}

.terms-policy a:hover {
    text-decoration: underline;
    color: #3CD070; /* Slightly brighter green on hover */
}

/* --- Responsive Adjustments --- */
@media (max-width: 480px) {
    .welcome-container {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .app-logo {
        width: 90px;
        height: 90px;
        border-radius: 25px;
        margin-bottom: 1rem;
    }

    .app-logo i {
        font-size: 3.5rem;
    }

    .app-name {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }

    .app-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .buttons-container {
        gap: 1rem;
    }

    .btn {
        padding: 1rem 1.2rem;
        font-size: 1.05rem;
        border-radius: 12px;
    }

    .terms-policy {
        font-size: 0.8rem;
        margin-top: 2rem;
    }
}