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

body {
    font-family: "Inter", sans-serif;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: url("./bg.png") no-repeat center center fixed;
    object-fit: cover;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.container:hover .logo {
    text-shadow: 0px 6px 10px rgba(223, 223, 223, 0.3);
    translate: 0 -1px;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

.subscription-form {
    margin-bottom: 30px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.message {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    animation: slideIn 0.5s ease;
}

.message.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.message.error {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.message.warning {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.feature.green {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.3);
    box-shadow: 0px 0px 10px rgba(76, 175, 80, 0.5);
}
.feature.green:hover {
    background: rgba(76, 175, 79, 0.4);
    border: 1px solid rgba(76, 175, 80, 0.4);
    box-shadow: 0px 0px 10px rgba(76, 175, 80, 0.8);
}

.feature.orange {
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid rgba(255, 193, 7, 0.3);
    box-shadow: 0px 0px 10px rgba(255, 193, 7, 0.5);
}
.feature.orange:hover {
    background: rgba(255, 193, 7, 0.4);
    border: 1px solid rgba(255, 193, 7, 0.4);
    box-shadow: 0px 0px 10px rgba(255, 193, 7, 0.8);
}

.feature.blue {
    background: rgba(33, 150, 243, 0.2);
    border: 1px solid rgba(33, 150, 243, 0.3);
    box-shadow: 0px 0px 10px rgba(33, 150, 243, 0.5);
}
.feature.blue:hover {
    background: rgba(33, 150, 243, 0.4);
    border: 1px solid rgba(33, 150, 243, 0.4);
    box-shadow: 0px 0px 10px rgba(33, 150, 243, 0.8);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.feature-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
    }

    .logo {
        font-size: 2rem;
    }

    .features {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .feature {
        padding: 10px;
    }
}


#loading-screen {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgb(13, 16, 34);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    font-size: 2rem;
    font-weight: bold;
    transition: opacity 1s ease, visibility 1s ease;
    text-align: center;
}

#loading-screen h1, #loading-screen h3 {
    animation: 1s slideUp ease;
}
.tagline {
    padding-top: .3rem;
    padding-bottom: 0rem !important;
    font-style: italic;
    font-weight: normal; /* optional: removes bold if you want true italic look */
    color: white;  
}
.taglinex {
    color: white;  
    margin-bottom: 1rem;
    font-size: 1.1rem;
}


.padder-top {
    
}
.mb-1 {
    margin-bottom: 1rem;
}
.baseline {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.12);
    transition: transform 0.2s cubic-bezier(.4,2,.3,1), text-shadow 0.2s;
    border-radius: 8px;
    padding-bottom: 3rem;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.foot {
    text-align: right;
    color: white;
    opacity: 0.9;
    width: 100%;
    margin-top: 1rem;
    font-style: italic;
}
