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

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #2d1b3d 0%, #4a2b5a 50%, #3d1f4a 100%);
    min-height: 100vh;
    position: relative;
    margin: 0;
    padding: 0;
}





/* Loader Overlay */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d1b3d 0%, #4a2b5a 50%, #3d1f4a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all 0.5s ease-in-out;
}

.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.lottie-container {
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Main Content */
.main-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-in-out;
}

.main-content.hidden {
    display: none;
}

/* Global Background */
.global-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2d1b3d 0%, #4a2b5a 50%, #3d1f4a 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    z-index: 1000;
    padding: 0.8rem 0;
    margin: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-text {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.logo-text:hover {
    color: #ff8c00;
    text-shadow: 0 0 15px rgba(255, 140, 0, 0.5);
}

.logo-image {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.3));
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 107, 157, 0.5));
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff8c00;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}


/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #ffd700;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .nav-right {
        display: none;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: linear-gradient(135deg, #2d1b3d 0%, #4a2b5a 50%, #3d1f4a 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        border-left: 1px solid rgba(255, 215, 0, 0.2);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links .nav-link {
        margin: 15px 0;
        font-size: 1.1rem;
        padding: 10px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
        width: 80%;
        text-align: left;
    }
    
    .nav-links .nav-link:hover {
        background: rgba(255, 215, 0, 0.1);
        transform: translateX(5px);
    }
    
    .nav-links .nav-link::after {
        display: none;
    }
    
    .nav-links .nav-link.partners-btn {
        display: flex !important;
        background: linear-gradient(145deg, #2d1b3d, #4a2b5a);
        border: 1px solid rgba(255, 215, 0, 0.1);
        border-radius: 12px;
        padding: 12px 20px;
        margin: 15px 0 8px 0;
        box-shadow: 
            6px 6px 12px rgba(0, 0, 0, 0.3),
            -6px -6px 12px rgba(255, 215, 0, 0.1);
        width: 90%;
        text-align: center;
        font-weight: 600;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .nav-links .nav-link.partners-btn:hover {
        background: linear-gradient(145deg, #4a2b5a, #2d1b3d);
        box-shadow: 
            8px 8px 16px rgba(0, 0, 0, 0.4),
            -8px -8px 16px rgba(255, 215, 0, 0.2);
        transform: translateX(5px);
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
    /* Add overlay when menu is open */
    .nav-links.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(45, 27, 61, 0.8);
        z-index: -1;
    }
    
    /* Ensure main content background is preserved */
    body.menu-open .main-content {
        background: linear-gradient(135deg, #2d1b3d 0%, #4a2b5a 50%, #3d1f4a 100%);
    }
    
    /* Ensure global background is preserved */
    body.menu-open .global-background {
        background: linear-gradient(135deg, #2d1b3d 0%, #4a2b5a 50%, #3d1f4a 100%);
        z-index: 1;
    }
    
    /* Add stronger overlay for better background preservation */
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #2d1b3d 0.9, #4a2b5a 0.9, #3d1f4a 0.9);
        z-index: 999;
        pointer-events: none;
    }
}

@media (max-width: 480px) {
    .nav-links {
        width: 220px;
    }
    
    .nav-links .nav-link {
        font-size: 1rem;
        padding: 8px 16px;
        margin: 12px 0;
    }
}

.hero-container {
    min-height: 100vh;
    position: relative;
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0;
    padding-top: 6rem;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    /* gap: 4rem; */
    position: relative;
    z-index: 2;
}

/* Left side - Text content */
.hero-left {
    flex: 0 0 40%;
    color: white;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .highlight {
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-description {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 500px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 0.8rem;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.download-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 0;
    height: 44px;
    box-sizing: border-box;
}

.download-btn.android {
    background: linear-gradient(45deg, #ff8c00, #ffd700);
    color: white;
    border: 3px solid #ffd700;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-btn.android:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.6);
    background: linear-gradient(45deg, #ffd700, #ff8c00);
}

.download-btn.coming-soon {
    
    
    cursor: not-allowed;
    
}

.download-btn.coming-soon:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(102, 102, 102, 0.3);
    background: linear-gradient(45deg, #666, #888);
    cursor: not-allowed;
}

.download-btn.coming-soon .play-icon i {
    color: #ff6b6b;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.download-btn.ios {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid #ffd700;
    backdrop-filter: blur(10px);
}

.download-btn.ios:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ff8c00;
}

.play-icon {
    font-size: 0.8rem;
}

.play-icon i {
    font-size: 0.9rem;
}

.apple-icon {
    font-size: 1.2rem;
}

.guide-button-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.extra-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.8rem;
    justify-content: center;
    width: 100%;
}

.download-btn.telegram-support {
    background: linear-gradient(45deg, #229ED9, #30c6ff);
    color: white;
    border: 3px solid #30c6ff;
    box-shadow: 0 8px 25px rgba(34, 158, 217, 0.4);
}

.download-btn.telegram-support:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(34, 158, 217, 0.6);
    background: linear-gradient(45deg, #30c6ff, #229ED9);
}

.download-btn.telegram-channel {
    background: linear-gradient(45deg, #7b1fa2, #ba68c8);
    color: white;
    border: 3px solid #ba68c8;
    box-shadow: 0 8px 25px rgba(186, 104, 200, 0.4);
}

.download-btn.telegram-channel:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(186, 104, 200, 0.6);
    background: linear-gradient(45deg, #ba68c8, #7b1fa2);
}

.download-btn.guide {
    background: linear-gradient(45deg, #9c27b0, #e91e63);
    color: white;
    border: 2px solid #e91e63;
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-btn.guide:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(156, 39, 176, 0.6);
    background: linear-gradient(45deg, #e91e63, #9c27b0);
}

.download-btn.guide .guide-icon i {
    color: white;
    transition: all 0.3s ease;
}

.guide-icon {
    font-size: 1rem;
}

.guide-icon i {
    font-size: 1.1rem;
}

.download-btn.guide.coming-soon {
    
    cursor: not-allowed;

}

.download-btn.guide.coming-soon:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(102, 102, 102, 0.3);
    background: linear-gradient(45deg, #666, #888);
    cursor: not-allowed;
}

.download-btn.guide.coming-soon .guide-icon i {
    color: #ff6b6b;
    animation: pulse 2s ease-in-out infinite;
}

/* Guide Navigation Button */
.download-btn.guide-nav {
    background: linear-gradient(45deg, #9c27b0, #e91e63);
    color: white;
    border: 3px solid #e91e63;
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-decoration: none;
}

.download-btn.guide-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(156, 39, 176, 0.6);
    background: linear-gradient(45deg, #e91e63, #9c27b0);
}

.download-btn.guide-nav .guide-icon i {
    color: white;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.download-btn.guide-nav .guide-icon {
    font-size: 1rem;
}

.download-btn.app-cloner {
    background: linear-gradient(45deg, #2196F3, #21CBF3);
    color: white;
    border: 3px solid #21CBF3;
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-btn.app-cloner:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(33, 150, 243, 0.6);
    background: linear-gradient(45deg, #21CBF3, #2196F3);
}

.download-btn.app-cloner .app-cloner-icon i {
    color: white;
    transition: all 0.3s ease;
}

.app-cloner-icon {
    font-size: 1rem;
}

.app-cloner-icon i {
    font-size: 1.1rem;
}

/* Right side - Hero Image */
.hero-right {
    flex: 0 0 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image {
    width: 120%;
    height: auto;
    max-height: 100vh;
    filter: drop-shadow(0 0 30px rgba(255, 140, 0, 0.6));
    animation: float 3s ease-in-out infinite;
    border-radius: 20px;
    object-fit: contain;
    transform: scale(1.1);
}

/* Background elements */
.background-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    animation: twinkle 2s ease-in-out infinite;
}

.dot:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.dot:nth-child(2) { top: 20%; left: 80%; animation-delay: 0.5s; }
.dot:nth-child(3) { top: 40%; left: 15%; animation-delay: 1s; }
.dot:nth-child(4) { top: 60%; left: 85%; animation-delay: 1.5s; }
.dot:nth-child(5) { top: 80%; left: 20%; animation-delay: 2s; }
.dot:nth-child(6) { top: 30%; left: 90%; animation-delay: 0.3s; }
.dot:nth-child(7) { top: 70%; left: 5%; animation-delay: 0.8s; }
.dot:nth-child(8) { top: 90%; left: 70%; animation-delay: 1.3s; }
.dot:nth-child(9) { top: 15%; left: 60%; animation-delay: 1.8s; }
.dot:nth-child(10) { top: 85%; left: 40%; animation-delay: 0.2s; }
.dot:nth-child(11) { top: 25%; left: 25%; animation-delay: 0.7s; }
.dot:nth-child(12) { top: 55%; left: 75%; animation-delay: 1.2s; }
.dot:nth-child(13) { top: 75%; left: 35%; animation-delay: 1.7s; }
.dot:nth-child(14) { top: 45%; left: 65%; animation-delay: 0.4s; }
.dot:nth-child(15) { top: 65%; left: 45%; animation-delay: 0.9s; }
.dot:nth-child(16) { top: 35%; left: 85%; animation-delay: 1.4s; }
.dot:nth-child(17) { top: 85%; left: 15%; animation-delay: 1.9s; }
.dot:nth-child(18) { top: 5%; left: 50%; animation-delay: 0.6s; }
.dot:nth-child(19) { top: 95%; left: 40%; animation-delay: 1.1s; }
.dot:nth-child(20) { top: 50%; left: 5%; animation-delay: 1.6s; }

.background-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.star-bg {
    position: absolute;
    color: #ffd700;
    font-size: 1.5rem;
    animation: twinkle 3s ease-in-out infinite;
}

.star-bg:nth-child(1) { top: 5%; left: 20%; animation-delay: 0s; }
.star-bg:nth-child(2) { top: 25%; left: 75%; animation-delay: 0.7s; }
.star-bg:nth-child(3) { top: 45%; left: 10%; animation-delay: 1.4s; }
.star-bg:nth-child(4) { top: 65%; left: 80%; animation-delay: 2.1s; }
.star-bg:nth-child(5) { top: 85%; left: 30%; animation-delay: 0.3s; }
.star-bg:nth-child(6) { top: 35%; left: 90%; animation-delay: 1s; }
.star-bg:nth-child(7) { top: 75%; left: 15%; animation-delay: 1.7s; }
.star-bg:nth-child(8) { top: 95%; left: 60%; animation-delay: 2.4s; }
.star-bg:nth-child(9) { top: 15%; left: 40%; animation-delay: 0.5s; }
.star-bg:nth-child(10) { top: 55%; left: 25%; animation-delay: 1.2s; }
.star-bg:nth-child(11) { top: 75%; left: 85%; animation-delay: 1.9s; }
.star-bg:nth-child(12) { top: 25%; left: 55%; animation-delay: 0.8s; }
.star-bg:nth-child(13) { top: 65%; left: 35%; animation-delay: 1.5s; }
.star-bg:nth-child(14) { top: 85%; left: 75%; animation-delay: 2.2s; }
.star-bg:nth-child(15) { top: 35%; left: 65%; animation-delay: 0.9s; }
.star-bg:nth-child(16) { top: 95%; left: 25%; animation-delay: 1.6s; }

/* Features Section */
.features-section {
    padding: 6rem 2rem;
    position: relative;
    min-height: 100vh;
    margin-top: -2px;
}

/* Partners Section */
.partners-section {
    padding: 6rem 2rem;
    position: relative;
    min-height: 80vh;
    margin-top: -2px;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    
    position: relative;
    z-index: 2;
}

.partners-header {
    text-align: center;
    margin-bottom: 4rem;
}

.partners-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.partners-subtitle {
    font-size: 1.2rem;
    color: #ffd700;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.partner-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
}

.partner-logo {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.partner-logo i {
    font-size: 3rem;
    color: #ffd700;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo i {
    color: #ff8c00;
    transform: scale(1.1);
}

.partner-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.partner-description {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.features-subtitle {
    font-size: 1.2rem;
    color: #ffd700;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.feature-icon i {
    font-size: 2.5rem;
    color: #ffd700;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: #ff8c00;
    transform: scale(1.1);
}

.feature-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.feature-card-description {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
}

/* Animations */
@keyframes glow {
    from {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    }
    to {
        text-shadow: 0 0 50px rgba(255, 215, 0, 0.8), 0 0 70px rgba(255, 215, 0, 0.3);
    }
}

@keyframes twinkle {
    from {
        opacity: 0.3;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Large desktop to tablet breakpoints */
@media (max-width: 1480px) and (min-width: 1025px) {
    .hero-content {
       
        padding: 0 2rem;
    }
    
    .hero-left {
        flex: 0 0 30%;
    }
    
    .hero-right {
        flex: 0 0 62%;
    }
    
    .hero-title {
        font-size: 4.2rem;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 1.15rem;
        max-width: 480px;
    }
    
    .hero-image {
        width: 105%;
        transform: scale(1.05);
        max-height: 95vh;
    }
}

@media (max-width: 1300px) and (min-width: 1025px) {
    .hero-content {
       
        padding: 0 1.8rem;
    }
    
    .hero-left {
        flex: 0 0 27%;
    }
    
    .hero-right {
        flex: 0 0 60%;
    }
    
    .hero-title {
        font-size: 3.8rem;
        line-height: 1.15;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 450px;
    }
    
    .hero-image {
        width: 95%;
        transform: scale(1);
        max-height: 90vh;
    }
}

@media (max-width: 1200px) and (min-width: 1025px) {
    .hero-content {
       
        padding: 0 1.5rem;
    }
    
    .hero-left {
        flex: 0 0 25%;
    }
    
    .hero-right {
        flex: 0 0 55%;
    }
    
    .hero-title {
        font-size: 3.5rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.05rem;
        max-width: 420px;
    }
    
    .hero-image {
        width: 85%;
        transform: scale(0.95);
        max-height: 85vh;
    }
}

@media (max-width: 1100px) and (min-width: 1025px) {
    .hero-content {
        
        padding: 0 1.3rem;
    }
    
    .hero-left {
        flex: 0 0 25%;
    }
    
    .hero-right {
        flex: 0 0 55%;
    }
    
    .hero-title {
        font-size: 3.2rem;
        line-height: 1.25;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 400px;
    }
    
    .hero-image {
        width: 80%;
        transform: scale(0.9);
        max-height: 80vh;
    }
}

@media (max-width: 1050px) and (min-width: 1025px) {
    .hero-content {
       
        padding: 0 1.2rem;
    }
    
    .hero-left {
        flex: 0 0 25%;
    }
    
    .hero-right {
        flex: 0 0 55%;
    }
    
    .hero-title {
        font-size: 3rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 0.95rem;
        max-width: 380px;
    }
    
    .hero-image {
        width: 80%;
        transform: scale(0.85);
        max-height: 75vh;
    }
}

/* Tablet breakpoint */
@media (max-width: 1024px) and (min-width: 769px) {
    .hamburger-menu {
        display: flex;
    }
    
    .nav-right {
        display: none;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: linear-gradient(135deg, #2d1b3d 0%, #4a2b5a 50%, #3d1f4a 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        border-left: 1px solid rgba(255, 215, 0, 0.2);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links .nav-link {
        margin: 15px 0;
        font-size: 1.1rem;
        padding: 10px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
        width: 80%;
        text-align: left;
    }
    
    .nav-links .nav-link:hover {
        background: rgba(255, 215, 0, 0.1);
        transform: translateX(5px);
    }
    
    .nav-links .nav-link::after {
        display: none;
    }
    
    /* Override the desktop rule for tablet */
    .nav-links .nav-link.partners-btn {
        display: flex !important;
        background: linear-gradient(145deg, #2d1b3d, #4a2b5a);
        border: 1px solid rgba(255, 215, 0, 0.1);
        border-radius: 12px;
        padding: 12px 20px;
        margin: 15px 0 8px 0;
        box-shadow: 
            6px 6px 12px rgba(0, 0, 0, 0.3),
            -6px -6px 12px rgba(255, 215, 0, 0.1);
        width: 90%;
        text-align: center;
        font-weight: 600;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .nav-links .nav-link.partners-btn:hover {
        background: linear-gradient(145deg, #4a2b5a, #2d1b3d);
        box-shadow: 
            8px 8px 16px rgba(0, 0, 0, 0.4),
            -8px -8px 16px rgba(255, 215, 0, 0.2);
        transform: translateX(5px);
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .hero-left {
        flex: 1;
        order: 1;
    }
    
    .hero-right {
        flex: 1;
        order: 2;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin: 0 auto 2rem auto;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-image {
        /* width: 80%;
        max-width: 400px;
        max-height: 60vh; */
        transform: scale(0.9);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .features-container {
        padding: 0 1rem;
    }
    
    .partners-section {
        padding: 4rem 1rem;
    }
    
    .partners-container {
        padding: 0 1rem;
    }
    
    .partners-title {
        font-size: 2.5rem;
    }
    
    .partners-subtitle {
        font-size: 1.1rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .partner-card {
        padding: 1.5rem;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .lottie-container {
        width: 150px;
        height: 150px;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    
    
    .hero-content {
        padding: 0 1rem;
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-left {
        flex: 1;
        order: 1;
    }
    
    .hero-right {
        flex: 1;
        order: 2;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin: 0 auto 2rem auto;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .guide-button-container {
        margin-top: 0.8rem;
    }
    
    .hero-image {
        width: 100%;
        max-height: 70vh;
        margin-bottom: 1rem;
    }
    
    .features-section {
        padding: 4rem 1rem;
    }
    
    .features-container {
        padding: 0 1rem;
    }
    
    .features-title {
        font-size: 2.5rem;
    }
    
    .features-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .partners-section {
        padding: 4rem 1rem;
    }
    
    .partners-container {
        padding: 0 1rem;
    }
    
    .partners-title {
        font-size: 2.5rem;
    }
    
    .partners-subtitle {
        font-size: 1.1rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .partner-card {
        padding: 1.5rem;
    }
    
    
    
    .download-container {
        padding: 0 1rem;
    }
    
    .download-title {
        font-size: 2.5rem;
    }
    
    .download-description {
        font-size: 1.1rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .download-btn-main {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        height: 40px;
    }
    
    .footer {
        padding: 3rem 1rem 2rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .lottie-container {
        width: 120px;
        height: 120px;
    }
    
    .nav-container {
        padding: 0 0.8rem;
    }
   
    .logo-image {
        height: 30px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .footer-logo-text {
        font-size: 1.1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .hero-content {
        padding: 0 0.8rem;
    }
    
    .hero-container {
        padding: 0.8rem;
        padding-top: 8rem;
    }
    
    .hero-left {
        order: 1;
    }
    
    .hero-right {
        order: 2;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .download-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        height: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
    }
    
    .guide-button-container {
        margin-top: 0.6rem;
    }
    
    .hero-image {
        width: 100%;
        max-height: 60vh;
    }
    
    .features-section {
        padding: 3rem 0.8rem;
    }
    
    .features-container {
        padding: 0 0.8rem;
    }
    
    .features-title {
        font-size: 2rem;
    }
    
    .features-subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .partners-section {
        padding: 3rem 0.8rem;
    }
    
    .partners-container {
        padding: 0 0.8rem;
    }
    
    .partners-title {
        font-size: 2rem;
    }
    
    .partners-subtitle {
        font-size: 1rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .partner-card {
        padding: 1.2rem;
    }
    
    .partner-logo {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .partner-logo i {
        font-size: 2.5rem;
    }
    
    .partner-name {
        font-size: 1.1rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-card-title {
        font-size: 1.1rem;
    }
    
   
    
    .download-container {
        padding: 0;
    }
    
    .download-title {
        font-size: 2rem;
    }
    
    .download-description {
        font-size: 1rem;
    }
    
    .download-btn-main {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        height: 40px;
    }
    
    .download-btn-main.coming-soon {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        height: 50px;
        min-width: 100%;
    }
    
    .footer {
        padding: 2rem 0.8rem 1.5rem;
    }
    
    .footer-container {
        padding: 0 0.8rem;
    }
    
    .footer-links {
        gap: 1rem;
        flex-direction: column;
    }
} 

 

/* Download Section */
.download-section {
    padding: 3rem 0rem;
    text-align: center;
    position: relative;
    margin-top: -2px;
}

.download-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.download-header {
    margin-bottom: 3rem;
}

.download-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.download-description {
    font-size: 1.3rem;
    color: white;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.download-btn-main {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 0;
    height: 44px;
    box-sizing: border-box;
}

.download-btn-main.android {
    background: linear-gradient(45deg, #ff8c00, #ffd700);
    color: white;
    border: 3px solid #ffd700;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-btn-main.android .play-icon i {
    color: white;
    transition: all 0.3s ease;
}

.download-btn-main.android:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.6);
    background: linear-gradient(45deg, #ffd700, #ff8c00);
}

.download-btn-main.coming-soon {
   
    cursor: not-allowed;
  
}

.download-btn-main.coming-soon:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(102, 102, 102, 0.3);
    background: linear-gradient(45deg, #666, #888);
    cursor: not-allowed;
}

.download-btn-main.coming-soon .play-icon i {
    color: #ff6b6b;
    animation: pulse 2s ease-in-out infinite;
}

.download-btn-main.app-cloner {
    background: linear-gradient(45deg, #2196F3, #21CBF3);
    color: white;
    border: 3px solid #21CBF3;
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-btn-main.app-cloner:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(33, 150, 243, 0.6);
    background: linear-gradient(45deg, #21CBF3, #2196F3);
}

.download-btn-main.app-cloner .app-cloner-icon i {
    color: white;
    transition: all 0.3s ease;
}

.download-btn-main .app-cloner-icon {
    font-size: 1rem;
}

.download-btn-main .app-cloner-icon i {
    font-size: 1.1rem;
}

.download-btn-main.ios {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid #ffd700;
    backdrop-filter: blur(10px);
}

.download-btn-main.ios:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ff8c00;
}

.download-disclaimer {
    font-size: 1rem;
    color: white;
    opacity: 0.8;
}

/* Contact Section */
.contact-section {
    padding: 3rem 2rem;
    position: relative;
    margin-top: -2px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #ffd700;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    text-decoration: none;
    color: inherit;
}

.contact-icon {
    font-size: 1.5rem;
    color: #ffd700;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.contact-details p {
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
}

.contact-details p a {
    color: #ffd700 !important;
    text-decoration: none !important;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.contact-details p a:hover {
    color: #ff8c00 !important;
    text-decoration: none !important;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

/* Allow text selection for contact links */
.contact-details p a {
    -webkit-touch-callout: default;
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #ffd700, #ff8c00);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.form-group label {
    position: absolute;
    top: -8px;
    left: 15px;
    background: linear-gradient(135deg, #2d1b3d 0%, #4a2b5a 50%, #3d1f4a 100%);
    color: #ffd700;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0 8px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.submit-btn {
    background: linear-gradient(45deg, #ff8c00, #ffd700);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.6);
    background: linear-gradient(45deg, #ffd700, #ff8c00);
}

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

.btn-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(3px);
}

/* Contact Section Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 2rem 1rem;
    }
    
    .contact-container {
        padding: 0 1rem;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-item {
        padding: 1.2rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 1.5rem 0.8rem;
    }
    
    .contact-container {
        padding: 0 0.8rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Fixed Admin Dashboard Button */
.fixed-admin-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    display: none;
}

.admin-dashboard-fixed {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    color: #2d1b3d;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.admin-dashboard-fixed:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.6);
    background: linear-gradient(45deg, #ff8c00, #ffd700);
    color: #2d1b3d;
    text-decoration: none;
}

.admin-dashboard-fixed i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.admin-dashboard-fixed:hover i {
    transform: rotate(10deg) scale(1.1);
}

/* Admin Links in Navbar */
.nav-link.admin-link {
    background: linear-gradient(145deg, #ffd700, #ff8c00);
    color: #2d1b3d !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 8px 16px;
    margin: 0 4px;
    box-shadow: 
        4px 4px 8px rgba(0, 0, 0, 0.2),
        -2px -2px 8px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    text-shadow: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link.admin-link:hover {
    background: linear-gradient(145deg, #ff8c00, #ffd700);
    box-shadow: 
        6px 6px 12px rgba(0, 0, 0, 0.3),
        -3px -3px 12px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
    color: #2d1b3d !important;
    text-shadow: none;
}

.nav-link.admin-link::after {
    display: none;
}

.nav-link.logout-link {
    background: linear-gradient(145deg, #ff6b6b, #ff8e8e);
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 8px 16px;
    margin: 0 4px;
    box-shadow: 
        4px 4px 8px rgba(0, 0, 0, 0.2),
        -2px -2px 8px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    text-shadow: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link.logout-link:hover {
    background: linear-gradient(145deg, #ff5252, #ff6b6b);
    box-shadow: 
        6px 6px 12px rgba(0, 0, 0, 0.3),
        -3px -3px 12px rgba(255, 107, 107, 0.4);
    transform: translateY(-2px);
    color: white !important;
    text-shadow: none;
}

.nav-link.logout-link::after {
    display: none;
}

/* Neomorphism Partners Button */
.nav-link.partners-btn {
    background: linear-gradient(145deg, #2d1b3d, #4a2b5a);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 8px 16px;
    margin: 0 0 0 0;
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.3),
        -8px -8px 16px rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: inherit;
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link.partners-btn:hover {
    background: linear-gradient(145deg, #4a2b5a, #2d1b3d);
    box-shadow: 
        12px 12px 24px rgba(0, 0, 0, 0.4),
        -12px -12px 24px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
    color: #ffd700;
}

.nav-link.partners-btn:active {
    box-shadow: 
        inset 4px 4px 8px rgba(0, 0, 0, 0.3),
        inset -4px -4px 8px rgba(255, 215, 0, 0.1);
    transform: translateY(0);
}


.nav-link.partners-btn::after {
    display: none;
}

/* Hide partners button in nav-links on desktop */
.nav-links .nav-link.partners-btn {
    display: none;
}

/* Mobile styles for admin links */
@media (max-width: 768px) {
    .fixed-admin-btn {
        bottom: 20px;
        left: 20px;
    }
    
    .admin-dashboard-fixed {
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
        gap: 0.6rem;
    }
    
    .admin-dashboard-fixed span {
        display: none;
    }
    
    .admin-dashboard-fixed i {
        font-size: 1.4rem;
    }
    
    .nav-links .nav-link.admin-link,
    .nav-links .nav-link.logout-link,
    .nav-links .nav-link.partners-btn {
        width: 90%;
        text-align: center;
        margin: 8px 0;
        padding: 12px 20px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .fixed-admin-btn {
        bottom: 15px;
        left: 15px;
    }
    
    .admin-dashboard-fixed {
        padding: 0.6rem;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
    }
    
    .admin-dashboard-fixed span {
        display: none;
    }
    
    .admin-dashboard-fixed i {
        font-size: 1.2rem;
    }
}

/* Footer */
.footer {
    padding: 3rem 2rem 2rem;
    position: relative;
    margin-top: -2px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-logo a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-logo a:hover {
    transform: scale(1.05);
}

.footer-logo-text {
    color: #ffd700;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.footer-logo-text:hover {
    color: #ff8c00;
    text-shadow: 0 0 15px rgba(255, 140, 0, 0.5);
}

.footer-logo-image {
    height: 35px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 107, 157, 0.3));
    transition: all 0.3s ease;
}

.footer-logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(255, 107, 157, 0.5));
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff8c00;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
}

.footer-copyright p {
    color: white;
    font-size: 0.9rem;
    opacity: 0.8;
}

    /* Ensure main content background is preserved */
    body.menu-open .main-content {
        background: linear-gradient(135deg, #2d1b3d 0%, #4a2b5a 50%, #3d1f4a 100%);
    }
    
    /* Ensure global background is preserved */
    body.menu-open .global-background {
        background: linear-gradient(135deg, #2d1b3d 0%, #4a2b5a 50%, #3d1f4a 100%);
        z-index: 1;
    }
    
    /* Add stronger overlay for better background preservation */
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #2d1b3d 0.9, #4a2b5a 0.9, #3d1f4a 0.9);
        z-index: 999;
        pointer-events: none;
    } 

 