/*

Custom style

You can override the default class or style here

This file will not be overwritten by the updater

*/

/* Custom Navigation Bar Styles */
.custom-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(40, 48, 72, 0.95), rgba(28, 35, 58, 0.98));
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0 0 0; /* Remove bottom padding to accommodate rainbow line */
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

/* Rainbow Line Style */
.rainbow-line {
    height: 4px;
    width: 100%;
    background: linear-gradient(
        to right, 
        #ff0000, /* Red */
        #ff8000, /* Orange */
        #ffff00, /* Yellow */
        #00ff00, /* Green */
        #00ffff, /* Cyan */
        #0080ff, /* Blue */
        #8000ff, /* Indigo */
        #ff00ff, /* Violet */
        #ff0080, /* Pink */
        #ff0000  /* Back to Red */
    );
    background-size: 1000% 100%;
    animation: rainbow-animation 15s linear infinite;
}

@keyframes rainbow-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Scrolled state styles */
.custom-header.scrolled {
    background: linear-gradient(135deg, rgba(28, 35, 58, 0.98), rgba(20, 25, 45, 0.99));
    padding: 5px 0 0 0; /* Adjust padding to maintain rainbow line */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.custom-header.scrolled .site-logo {
    height: 35px;
}

.custom-header.scrolled .custom-nav-menu .nav-link {
    padding: 6px 12px;
}

/* Background Effect 1: Bubbles */
.custom-header.effect1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

@keyframes bubbles {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 
                    40px 40px 0 0 rgba(255, 255, 255, 0.07),
                    80px 10px 0 0 rgba(255, 255, 255, 0.06),
                    120px 35px 0 0 rgba(255, 255, 255, 0.08),
                    160px 8px 0 0 rgba(255, 255, 255, 0.07),
                    200px 20px 0 0 rgba(255, 255, 255, 0.09),
                    240px 40px 0 0 rgba(255, 255, 255, 0.05),
                    280px 35px 0 0 rgba(255, 255, 255, 0.1);
    }
    100% {
        box-shadow: 0 40px 0 0 rgba(255, 255, 255, 0.05), 
                    40px 10px 0 0 rgba(255, 255, 255, 0.04),
                    80px 35px 0 0 rgba(255, 255, 255, 0.09),
                    120px 8px 0 0 rgba(255, 255, 255, 0.07),
                    160px 25px 0 0 rgba(255, 255, 255, 0.06),
                    200px 0px 0 0 rgba(255, 255, 255, 0.07),
                    240px 15px 0 0 rgba(255, 255, 255, 0.09),
                    280px 30px 0 0 rgba(255, 255, 255, 0.1);
    }
}

.custom-header.effect1::before {
    animation: bubbles 15s ease-in-out infinite alternate;
}

/* Background Effect 2: Flowing Gradient */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.custom-header.effect2 {
    background: linear-gradient(270deg, 
                rgba(40, 48, 72, 0.95), 
                rgba(43, 65, 98, 0.95),
                rgba(28, 35, 58, 0.95),
                rgba(50, 45, 80, 0.95));
    background-size: 300% 300%;
    animation: gradientFlow 10s ease infinite;
}

/* Background Effect 3: Particle Dots */
@keyframes particleMove {
    0%, 100% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.custom-header.effect3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    animation: particleMove 20s linear infinite;
    opacity: 0.5;
    z-index: -1;
}

/* Background Effect 4: Nebula */
@keyframes nebula {
    0% {
        opacity: 0.3;
        transform: rotate(0deg) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        opacity: 0.3;
        transform: rotate(360deg) scale(1);
    }
}

.custom-header.effect4::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(ellipse at 30% 40%, rgba(103, 69, 186, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 70%, rgba(65, 105, 225, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(72, 61, 139, 0.2) 0%, transparent 40%);
    animation: nebula 30s ease infinite;
    z-index: -1;
}

/* Background Effect 5: Pulse Wave */
@keyframes pulseWave {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.custom-header.effect5 {
    overflow: hidden;
}

.custom-header.effect5::before,
.custom-header.effect5::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: -1;
}

.custom-header.effect5::before {
    animation: pulseWave 8s linear infinite;
}

.custom-header.effect5::after {
    animation: pulseWave 8s linear infinite 4s;
}

.custom-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    position: relative;
    margin-bottom: 10px; /* Add space before rainbow line */
}

.nav-logo {
    z-index: 2;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.site-logo {
    height: 40px;
    max-width: 140px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.site-logo:hover {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.nav-menu-container {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
    align-items: center;
}

.custom-navbar-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.custom-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.custom-nav-menu .nav-item {
    position: relative;
}

.custom-nav-menu .nav-link {
    display: block;
    padding: 8px 15px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 4px;
    overflow: hidden;
    z-index: 1;
}

.custom-nav-menu .nav-link:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: -1;
}

.custom-nav-menu .nav-link:hover {
    color: #ffffff;
}

.custom-nav-menu .nav-link:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.custom-nav-menu .nav-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f0f0f0, transparent);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.custom-nav-menu .nav-link:hover:after {
    width: 80%;
}

.login-link {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.login-link:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.search-container {
    position: relative;
    width: 220px;
}

.search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 5px 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-form:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.search-input {
    background: transparent;
    border: none;
    color: #fff;
    flex-grow: 1;
    padding: 5px;
    outline: none;
    font-size: 14px;
    width: 100%;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-button {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    color: #fff;
    transform: scale(1.1);
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1000;
}

.mobile-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Body class when menu is open on mobile */
body.menu-open {
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 991px) {
    .custom-navbar-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .custom-nav-menu {
        flex-direction: column;
        width: 100%;
    }
    
    .search-container {
        width: 100%;
        margin-top: 10px;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu-container {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(40, 48, 72, 0.98), rgba(28, 35, 58, 0.99));
        backdrop-filter: blur(15px);
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        overflow-y: auto;
        flex-direction: column;
        align-items: flex-start;
        z-index: 999;
    }
    
    .nav-menu-container.active {
        right: 0;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 576px) {
    .nav-menu-container {
        width: 100%;
        right: -100%;
    }
    
    .site-logo {
        height: 35px;
        max-width: 120px;
    }
}

/* Premium Footer Styles */
.premium-footer {
    position: relative;
    background-color: #0c0e1a;
    background-image: linear-gradient(135deg, #0c0e1a 0%, #1a1e35 100%);
    color: #f5f5f5;
    overflow: hidden;
    padding: 0;
    margin-top: 3rem;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Enhanced Background Animation */
.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.particle {
    position: absolute;
    background: linear-gradient(135deg, var(--color-start, rgba(148, 0, 211, 0.4)), var(--color-end, rgba(0, 178, 255, 0.2)));
    border-radius: 50%;
    transform-origin: center;
    will-change: transform, opacity;
    opacity: 0;
    z-index: 1;
}

.particle1 {
    --color-start: rgba(255, 107, 107, 0.4);
    --color-end: rgba(255, 107, 107, 0.1);
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation: floatParticle 12s ease-in-out infinite, fadeInOut 12s ease-in-out infinite;
}

.particle2 {
    --color-start: rgba(124, 77, 255, 0.4);
    --color-end: rgba(124, 77, 255, 0.1);
    width: 150px;
    height: 150px;
    top: 60%;
    left: 20%;
    animation: floatParticle 15s ease-in-out infinite alternate, fadeInOut 15s ease-in-out infinite;
}

.particle3 {
    --color-start: rgba(0, 178, 255, 0.4);
    --color-end: rgba(0, 178, 255, 0.1);
    width: 100px;
    height: 100px;
    top: 30%;
    left: 50%;
    animation: floatParticle 18s ease-in-out infinite, fadeInOut 18s ease-in-out infinite;
}

.particle4 {
    --color-start: rgba(0, 255, 191, 0.4);
    --color-end: rgba(0, 255, 191, 0.1);
    width: 180px;
    height: 180px;
    top: 70%;
    left: 70%;
    animation: floatParticle 20s ease-in-out infinite alternate, fadeInOut 20s ease-in-out infinite;
}

.particle5 {
    --color-start: rgba(255, 123, 0, 0.4);
    --color-end: rgba(255, 123, 0, 0.1);
    width: 90px;
    height: 90px;
    top: 15%;
    left: 80%;
    animation: floatParticle 15s ease-in-out infinite, fadeInOut 15s ease-in-out infinite;
}

.particle6 {
    --color-start: rgba(148, 0, 211, 0.4);
    --color-end: rgba(148, 0, 211, 0.1);
    width: 130px;
    height: 130px;
    top: 40%;
    left: 30%;
    animation: floatParticle 18s ease-in-out infinite alternate, fadeInOut 18s ease-in-out infinite;
}

.particle7 {
    --color-start: rgba(255, 0, 128, 0.4);
    --color-end: rgba(255, 0, 128, 0.1);
    width: 110px;
    height: 110px;
    top: 50%;
    left: 85%;
    animation: floatParticle 14s ease-in-out infinite, fadeInOut 14s ease-in-out infinite;
}

.particle8 {
    --color-start: rgba(0, 255, 127, 0.4);
    --color-end: rgba(0, 255, 127, 0.1);
    width: 140px;
    height: 140px;
    top: 80%;
    left: 40%;
    animation: floatParticle 16s ease-in-out infinite alternate, fadeInOut 16s ease-in-out infinite;
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0) rotate(0);
    }
    25% {
        transform: translate(10px, -15px) rotate(5deg);
    }
    50% {
        transform: translate(-5px, 10px) rotate(-5deg);
    }
    75% {
        transform: translate(-15px, -10px) rotate(2deg);
    }
    100% {
        transform: translate(0, 0) rotate(0);
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.5;
    }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom, transparent 0%, #0c0e1a 90%);
    z-index: 2;
}

/* Footer Content */
.footer-content {
    position: relative;
    z-index: 5;
    padding: 4rem 0 2rem;
}

.footer-branding {
    margin-bottom: 3.5rem;
    position: relative;
}

.site-logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo {
    max-width: 180px;
    max-height: 100px;
    position: relative;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.site-logo-container:hover .footer-logo {
    transform: scale(1.08) translateY(-5px);
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.4) 0%, rgba(124, 77, 255, 0) 70%);
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.site-logo-container:hover .logo-glow {
    opacity: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.site-description p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Footer Sections */
.footer-sections {
    padding-bottom: 2rem;
}

.footer-section {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.footer-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-inner {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.section-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
}

.section-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-section {
    border-top: 3px solid rgba(124, 77, 255, 0.8);
}

.footer-heading {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    position: relative;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 50px;
    background: linear-gradient(90deg, #ff6b6b, #7c4dff);
    transition: width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(124, 77, 255, 0.5);
}

.section-inner:hover .footer-heading::after {
    width: 80px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 5px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.link-icon {
    margin-right: 8px;
    font-size: 1.2rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.footer-link:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #ff6b6b, #7c4dff);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.footer-link.hover-active {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-link.hover-active .link-icon {
    transform: scale(1.2) rotate(5deg);
}

.footer-link.hover-active:before {
    width: 100%;
}

/* Social Links Section */
.social-links-section {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 5;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #ff6b6b, #7c4dff);
    box-shadow: 0 10px 20px rgba(124, 77, 255, 0.4);
    color: #fff;
}

.social-link:hover:before {
    opacity: 1;
}

.social-link i {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

/* Newsletter Form */
.newsletter-form {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-form p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.input-wrapper {
    position: relative;
    margin-bottom: 1.2rem;
}

.newsletter-input {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.newsletter-input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(124, 77, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.25);
}

.input-focus-effect {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle at center, rgba(124, 77, 255, 0.2) 0%, rgba(124, 77, 255, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 12px;
}

.newsletter-input:focus + .input-focus-effect {
    opacity: 1;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-subscribe {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #ff6b6b, #7a54ff);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-subscribe .btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.btn-subscribe:hover .btn-shine {
    opacity: 1;
    transform: rotate(30deg) translate(10%, 10%);
}

.btn-subscribe.loading {
    background: linear-gradient(90deg, #cc5a5a, #6347cc);
}

#newsletter-response {
    margin-top: 1rem;
}

.alert {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    animation: fadeIn 0.5s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.alert i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.alert-success {
    background: linear-gradient(145deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.25));
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.alert-danger {
    background: linear-gradient(145deg, rgba(244, 67, 54, 0.15), rgba(244, 67, 54, 0.25));
    color: #F44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.alert-info {
    background: linear-gradient(145deg, rgba(33, 150, 243, 0.15), rgba(33, 150, 243, 0.25));
    color: #2196F3;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

/* Newsletter Form Animation */
.newsletter-input:focus + .input-focus-effect {
    width: 100%;
}

.newsletter-input {
    transition: all 0.3s ease;
}

/* Copyright Section */
.copyright-section {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 1.5rem 0;
    position: relative;
    z-index: 10;
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.copyright-text {
    max-width: 80%;
}

.dsb-panel a {
    color: #7c4dff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 3px 8px;
    border-radius: 4px;
    background-color: rgba(124, 77, 255, 0.1);
}

.dsb-panel a:hover {
    color: #fff;
    background-color: rgba(124, 77, 255, 0.3);
    box-shadow: 0 5px 15px rgba(124, 77, 255, 0.4);
}

/* Responsive Adjustments for Premium Footer */
@media (max-width: 1199px) {
    .footer-content {
        padding: 3.5rem 0 2rem;
    }
    
    .footer-branding {
        margin-bottom: 3rem;
    }
    
    .footer-heading {
        font-size: 1.3rem;
    }
    
    .social-links {
        gap: 1.2rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 991px) {
    .footer-content {
        padding: 3rem 0 1.5rem;
    }
    
    .site-description p {
        font-size: 1rem;
        max-width: 90%;
    }
    
    .footer-heading {
        font-size: 1.25rem;
    }
    
    .footer-section {
        transition-delay: calc(var(--index, 0) * 0.1s);
    }
    
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .particle {
        opacity: 0.5;
    }
    
    .footer-branding {
        margin-bottom: 2rem;
    }
    
    .site-description p {
        font-size: 0.95rem;
    }
    
    .section-inner {
        padding: 1.25rem;
    }
    
    .footer-heading {
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-link.hover-active {
        transform: translateY(-3px);
    }
    
    .copyright-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .copyright-text {
        max-width: 100%;
    }
    
    .dsb-panel {
        margin-top: 0.5rem;
    }
}

@media (max-width: 575px) {
    .premium-footer {
        margin-top: 2rem;
    }
    
    .footer-content {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-logo {
        max-width: 150px;
    }
    
    .site-description p {
        font-size: 0.9rem;
    }
    
    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-link {
        font-size: 0.95rem;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
    
    .newsletter-form {
        padding: 1.25rem;
    }
    
    .newsletter-input {
        padding: 0.75rem;
    }
    
    .btn-subscribe {
        padding: 0.75rem;
    }
    
    .copyright-section {
        padding: 1.25rem 0;
    }
    
    .copyright-content {
        font-size: 0.85rem;
    }
}