
    html, body {
        margin: 0;
        padding: 0;
        background: #0a0a1a;
        color: #ffffff;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        line-height: 1.5;
        overflow-x: hidden;
    }
    .label{color:#333!important;}
	.store_product{background:rgba(20, 20, 40, 0.5);padding:5px;border-radius:5px;}
    #login_wrap {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        position: relative;
    }
    
    #intro_top {
        width: 100%;
        position: relative;
        padding: 80px 20px;
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                    url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
        text-align: center;
        overflow: hidden;
        min-height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #intro_inside {
        max-width: 680px;
        margin: 0 auto;
        padding: 30px;
        position: relative;
        z-index: 2;
    }
    
    .logo_sparkle {
        width: 60px;
        height: 60px;
        margin: 0 auto 25px;
        background: linear-gradient(135deg, #ff00cc, #3333ff);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: float 3s ease-in-out infinite;
    }
    
    .logo_sparkle i {
        width: 30px;
        height: 30px;
        color: white;
        stroke-width: 2.5;
    }
    
    .text_jumbo {
        font-size: 2.8rem;
        font-weight: 800;
        background: linear-gradient(90deg, #ffffff, #a5b4fc);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 12px;
        line-height: 1.1;
    }
    
    .text_xmed {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 30px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
        font-weight: 300;
    }
    
    #intro_control {
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 25px;
    }
    
    .intro_btn {
        padding: 12px 28px;
        border-radius: 10px;
        border: none;
        font-weight: 600;
        font-size: 0.95rem;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.2s ease;
        min-width: 140px;
    }
    
    .theme_btn {
        background: linear-gradient(135deg, #ff00cc, #3333ff);
        color: white;
    }
    
    .theme_btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(51, 51, 255, 0.4);
    }
    
    .ok_btn {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .ok_btn:hover {
        background: rgba(255, 255, 255, 0.15);
    }
    
    .page_container {
        flex: 1;
        padding: 50px 20px;
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
    }
    
    .content_section {
        margin-bottom: 60px;
    }
    
    .alt_bg {
        background: rgba(20, 20, 40, 0.5);
        padding: 60px 20px;
        border-radius: 20px;
        margin: 60px 0;
        position: relative;
        overflow: hidden;
    }
    
    .floating_tech {
        position: absolute;
        top: 20px;
        right: 20px;
        display: flex;
        gap: 15px;
        opacity: 0.1;
    }
    
    .floating_tech i {
        width: 24px;
        height: 24px;
        color: #00ffff;
    }
    
    .section_header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 40px;
    }
    
    .icon_circle {
        width: 70px;
        height: 70px;
        margin: 0 auto 25px;
        background: linear-gradient(135deg, #ff00cc, #3333ff);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .icon_circle.pulse {
        animation: pulse 2s infinite;
    }
    
    .icon_circle i {
        width: 32px;
        height: 32px;
        color: white;
        stroke-width: 2.5;
    }
    
    .section_header h2 {
        font-size: 2.2rem;
        font-weight: 800;
        background: linear-gradient(90deg, #ffffff, #a5b4fc);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 15px;
    }
    
    .section_subtitle {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.8);
        max-width: 600px;
        margin: 0 auto;
        font-weight: 300;
    }
    
    .services_grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }
    
    .service_card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        padding: 30px 25px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: all 0.3s ease;
        text-align: center;
        position: relative;
    }
    
    .service_card:hover {
        transform: translateY(-5px);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .service_icon_wrap {
        width: 70px;
        height: 70px;
        margin: 0 auto 20px;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid;
    }
    
    .neon_blue { border-color: #00ffff; }
    .neon_purple { border-color: #ff00ff; }
    .neon_green { border-color: #00ff88; }
    .neon_orange { border-color: #ff8800; }
    
    .service_icon_wrap i {
        width: 30px;
        height: 30px;
        color: white;
        stroke-width: 2;
    }
    
    .service_card h3 {
        font-size: 1.3rem;
        color: #ffffff;
        margin-bottom: 12px;
        font-weight: 700;
    }
    
    .service_card p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .service_badge {
        display: inline-block;
        padding: 4px 12px;
        background: linear-gradient(135deg, #ff00cc, #3333ff);
        color: white;
        border-radius: 12px;
        font-size: 0.75rem;
        font-weight: 600;
        position: absolute;
        top: 15px;
        right: 15px;
    }
    
    .values_grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }
    
    .value_item {
        padding: 25px 20px;
        border-radius: 16px;
        transition: all 0.3s ease;
        text-align: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .value_item:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-3px);
    }
    
    .value_icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 15px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid;
    }
    
    .value_icon i {
        width: 24px;
        height: 24px;
        color: white;
        stroke-width: 2.5;
    }
    
    .value_item h4 {
        font-size: 1.2rem;
        color: #ffffff;
        margin-bottom: 10px;
        font-weight: 700;
    }
    
    .value_item p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .products_wrap {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }
    
    .rating_summary {
        max-width: 800px;
        margin: 0 auto 50px;
    }
    
    .rating_overview {
        display: grid;
        grid-template-columns: 200px 1fr;
        gap: 40px;
        background: rgba(255, 255, 255, 0.05);
        padding: 30px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .overview_score {
        text-align: center;
    }
    
    .big_rating {
        font-size: 4rem;
        font-weight: 800;
        background: linear-gradient(90deg, #ffcc00, #ffaa00);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1;
        margin-bottom: 10px;
    }
    
    .rating_stars_large {
        margin-bottom: 10px;
    }
    
    .rating_stars_large .star {
        font-size: 28px;
        margin: 0 3px;
        display: inline-block;
    }
    
    .rating_total {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .rating_grade {
        font-size: 1.2rem;
        font-weight: 700;
        letter-spacing: 1px;
    }
    
    .rating_bars {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .rating_bar_row {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .star_label {
        width: 50px;
        color: #ffcc00;
        font-weight: 600;
    }
    
    .rating_bar_bg {
        flex: 1;
        height: 8px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        overflow: hidden;
    }
    
    .rating_bar_fill {
        height: 100%;
        background: linear-gradient(90deg, #ffcc00, #ffaa00);
        border-radius: 4px;
        transition: width 1s ease;
    }
    
    .rating_count {
        width: 40px;
        text-align: right;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
    }
    
    .reviews_carousel_wrap {
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
        overflow: hidden;
    }
    
    .reviews_carousel {
        display: flex;
        gap: 20px;
        transition: transform 0.5s ease;
        padding: 10px 0;
    }
    
    .review_card {
        flex: 0 0 calc(33.333% - 14px);
        background: rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        padding: 25px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        margin-right: 20px;
    }
    
    .review_card:hover {
        transform: translateY(-5px);
        border-color: rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.08);
    }
    
    .review_header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .review_avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
    }
    
    .review_user {
        flex: 1;
    }
    
    .review_name {
        font-weight: 600;
        margin-bottom: 5px;
    }
    
    .review_stars_small {
        display: flex;
        gap: 2px;
    }
    
    .review_stars_small span {
        font-size: 14px;
    }
    
    .review_stars_small .filled {
        color: #ffcc00;
    }
    
    .review_stars_small .empty {
        color: #ccc;
    }
    
    .review_content {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .carousel_nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
        border: none;
    }
    
    .carousel_nav:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-50%) scale(1.1);
    }
    
    .carousel_nav.prev {
        left: 10px;
    }
    
    .carousel_nav.next {
        right: 10px;
    }
    
    .carousel_nav i {
        width: 24px;
        height: 24px;
    }
    
    .cta_section {
        background: linear-gradient(135deg, rgba(106, 17, 203, 0.9), rgba(37, 117, 252, 0.9));
        padding: 50px 30px;
        border-radius: 20px;
        text-align: center;
        margin-top: 60px;
    }
    
    .cta_content h3 {
        font-size: 2rem;
        color: white;
        margin-bottom: 10px;
        font-weight: 800;
    }
    
    .cta_content p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 25px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta_btn {
        padding: 14px 32px;
        background: white;
        color: #3333ff;
        border: none;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }
    
    .cta_btn:hover {
        transform: translateY(-3px);
        color: #ff00cc;
    }
    
    .cookie_wrap {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(20, 20, 40, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 15px 25px;
        display: flex;
        align-items: center;
        gap: 20px;
        max-width: 90%;
        width: 500px;
        z-index: 1000;
    }
    
    .cookie_text {
        flex: 1;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.9rem;
    }
    
    .cookie_text .link_like {
        color: #00ffff;
        cursor: pointer;
        text-decoration: underline;
        font-weight: 600;
    }
    
    .reg_button {
        padding: 8px 20px;
        border-radius: 8px;
        white-space: nowrap;
        background: linear-gradient(135deg, #ff00cc, #3333ff);
        color: white;
        border: none;
        font-weight: 600;
    }
    
    .dmca_footer {
        text-align: center;
        padding: 25px 20px;
        margin-top: 50px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }
    
    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }
    
    @media (max-width: 768px) {
        .text_jumbo {
            font-size: 2.2rem;
        }
        
        .rating_overview {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .big_rating {
            font-size: 3rem;
        }
        
        .review_card {
            flex: 0 0 calc(100% - 20px);
        }
        
        #intro_control {
            flex-direction: column;
            align-items: center;
        }
        
        .intro_btn {
            width: 100%;
            max-width: 250px;
        }
        
        .services_grid,
        .values_grid {
            grid-template-columns: 1fr;
        }
        
        .cookie_wrap {
            flex-direction: column;
            text-align: center;
            gap: 15px;
            width: 90%;
            padding: 15px;
        }
        
        .content_section {
            margin-bottom: 50px;
        }
        
        .section_header h2 {
            font-size: 1.8rem;
        }
        
        .cta_content h3 {
            font-size: 1.6rem;
        }
        
        .logo_sparkle {
            width: 50px;
            height: 50px;
        }
        
        .icon_circle {
            width: 60px;
            height: 60px;
        }
    }
    
    @media (max-width: 480px) {
        #intro_inside {
            padding: 20px 15px;
        }
        
        .text_jumbo {
            font-size: 1.8rem;
        }
        
        .service_icon_wrap {
            width: 60px;
            height: 60px;
        }
        
        .cta_section {
            padding: 40px 20px;
        }
        
        .page_container {
            padding: 40px 15px;
        }
    }
