/* Newsletter Styles */
.newsletter-signup {
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.7) 0%, rgba(60, 30, 90, 0.7) 100%);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    border: 1px solid rgba(156, 39, 176, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.newsletter-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><path d="M20,100 Q50,50 100,100 T180,100" fill="none" stroke="%239c27b0" stroke-width="1" opacity="0.2"/><circle cx="100" cy="100" r="50" fill="none" stroke="%239c27b0" stroke-width="1" opacity="0.1"/><path d="M50,50 L150,150 M50,150 L150,50" stroke="%239c27b0" stroke-width="1" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: -1;
}

.newsletter-signup h3 {
    color: #9c27b0;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(156, 39, 176, 0.5);
    animation: glow-text 3s ease-in-out infinite alternate;
}

@keyframes glow-text {
    0% { text-shadow: 0 0 5px rgba(156, 39, 176, 0.3); }
    100% { text-shadow: 0 0 15px rgba(156, 39, 176, 0.8); }
}

.newsletter-signup p {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 14px;
    border: none;
    border-bottom: 2px solid rgba(156, 39, 176, 0.6);
    border-radius: 8px;
    background-color: rgba(30, 30, 50, 0.4);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-input-group input:focus {
    outline: none;
    border-bottom: 2px solid #ba68c8;
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.2);
    background-color: rgba(30, 30, 50, 0.6);
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.btn-newsletter {
    padding: 14px 25px;
    background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-newsletter:hover {
    background: linear-gradient(135deg, #ab47bc 0%, #ce93d8 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.5);
}

/* Newsletter Feedback Styles */
.newsletter-feedback {
    margin-top: 15px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    text-align: center;
    animation: fade-in 0.5s ease-in-out;
    position: relative;
}

@keyframes fade-in {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.newsletter-feedback.fade-out {
    animation: fade-out 0.5s ease-in-out;
}

@keyframes fade-out {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}

.newsletter-feedback.success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(105, 240, 174, 0.2) 100%);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: #4CAF50;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.3);
}

.newsletter-feedback.error {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.2) 0%, rgba(255, 138, 128, 0.2) 100%);
    border: 1px solid rgba(244, 67, 54, 0.4);
    color: #F44336;
    box-shadow: 0 0 15px rgba(244, 67, 54, 0.3);
}

.newsletter-feedback.loading {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2) 0%, rgba(186, 104, 200, 0.2) 100%);
    border: 1px solid rgba(156, 39, 176, 0.4);
    color: #9c27b0;
    box-shadow: 0 0 15px rgba(156, 39, 176, 0.3);
    padding: 20px;
}

/* Spiritual Loader */
.spiritual-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.loader-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #9c27b0;
    animation: loader-pulse 1.5s ease-in-out infinite;
}

.loader-circle:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-circle:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loader-pulse {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Hot Link Styling */
.hot-link {
    color: #ff4081;
    text-decoration: none;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 64, 129, 0.5);
    transition: all 0.3s ease;
    animation: hot-pulse 2s infinite alternate;
    display: inline-block;
}

.hot-link:hover {
    color: #ff80ab;
    text-shadow: 0 0 15px rgba(255, 64, 129, 0.8);
}

@keyframes hot-pulse {
    0% { text-shadow: 0 0 5px rgba(255, 64, 129, 0.3); }
    100% { text-shadow: 0 0 15px rgba(255, 64, 129, 0.8); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .btn-newsletter {
        width: 100%;
    }
}
