
#close_in, #header_menu, .cmn-toggle-switch {
    display: none;
}
a {
    color: #ec008c;
    text-decoration: none;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    outline: none;
}
.main-menu {
    position: relative;
    z-index: 9;
    width: auto;
    float: right;
    margin: 0;
    padding: 0;
}
.main-menu a {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.main-menu ul, .main-menu ul li, .main-menu ul li a {
    position: relative;
    margin: 0;
    padding: 0;
}
.main-menu ul li a {
    display: block;
    padding: 10px;
}
.main-menu a {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.main-menu > ul > li > a {
    color: #125c96;
    padding: 2px 8px 15px 10px;
    /*font-size: 18px;*/
    font-size: 16px;
    margin: 0;
    font-weight: bold;
}
.guest_link{
    padding-bottom: 5px !important; color: white !important; cursor: pointer;
}
.guest_li{
    background-color: #ce1a1a;border-radius: 10px;
}
.register_li{
    background-color: #ce1a1a;border-radius: 10px;
}

.register_link{
    padding-bottom: 5px !important;
    color: white !important;
    cursor: pointer;
}
@media only screen and (min-width: 992px) {
    .main-menu {
        width: auto;
    }
    .main-menu a {
        white-space: nowrap;
    }
    .main-menu ul li {
        display: inline-block;
    }
}


/* Custom Modal Styles */
#mobileAppModal .modal-dialog {
    max-width: 500px;
}

#mobileAppModal .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

#mobileAppModal .modal-header {
    border: none;
    padding: 20px;
    background: linear-gradient(135deg, #ce1a1a 0%, #e74545 100%);
}

#mobileAppModal .close {
    color: white;
    opacity: 0.8;
    font-size: 1.5rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

#mobileAppModal .close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

#mobileAppModal .modal-body {
    padding: 40px 30px;
    background: #ffffff;
}

.app-benefits {
    display: flex;
    justify-content: space-around;
    margin: 25px 0;
    gap: 20px;
}

.benefit-item {
    text-align: center;
    flex: 1;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #fff0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: #ce1a1a;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(206, 26, 26, 0.2);
}

.benefit-text {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.modal-title-custom {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 400;
}

.highlight-text {
    color: #ce1a1a;
    font-weight: 700;
}

#mobileAppModal .modal-footer {
    border: none;
    padding: 0 30px 30px;
    background: #ffffff;
    flex-direction: column;
    gap: 12px;
}

.btn-download {
    background: linear-gradient(135deg, #ce1a1a 0%, #e74545 100%);
    border: none;
    color: white !important;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(206, 26, 26, 0.3);
    background: linear-gradient(135deg, #b01616 0%, #ce1a1a 100%);
}

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

.btn-later {
    background: transparent;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-later:hover {
    border-color: #ce1a1a;
    color: #ce1a1a;
    background: #fff5f5;
}

.pulse-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

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

.discount-badge {
    background: #4CAF50;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    #mobileAppModal .modal-dialog {
        margin: 0.5rem;
    }

    .modal-title-custom {
        font-size: 1.5rem;
    }

    .app-benefits {
        gap: 10px;
    }

    .benefit-text {
        font-size: 0.75rem;
    }
}
