        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
        }
        
        main a{color:#23bb23;}
        header, main {max-width:1300px;margin:auto;}
        .header {
            position: sticky;
            top: 0;
            width: 100%;
            background-color: #ffffff;
            z-index: 1000;
        }
        .header-container {
            max-width: 1300px;
            margin: 0 auto;
            width: 100%;
        }
        .top-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #fff;
            border-bottom: 1px solid #f0f0f0;
            border-left: 1px solid #f0f0f0;
            border-right: 1px solid #f0f0f0;
        }
        .logo img {
            height: 15px;
            width: auto;
            display: block;
            padding-left:15px;
        }
        .right-block {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        .phone-number {
            font-weight: 600;
            font-size: 1.2rem;
            color: #1a1a1a;
            text-decoration: none;
        }

        .user-buttons {
            display: flex;
            gap: 12px;
        }

        .btn-outline {
            background: transparent;
            border: 1px solid #222;
            color: #222;
            padding: 8px 20px;
            font-weight: 500;
            font-size: 0.95rem;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
        }

        .btn-outline:hover {
            background: #f0f0f0;
        }
        
        .btn-red{ background: #e50f52 !important;color:#fff !important;}
        .btn-red:hover{ background: #000 !important;color:#fff !important;}        
        
        .btn-green{ background: #23aa23 !important;color:#fff !important;}
        .btn-green:hover{ background: #23bb23 !important;color:#fff !important;}        

        .btn-primary {
            background: #000;
            border: 1px solid #000;
            color: white;
            padding: 8px 22px;
            font-weight: 500;
            font-size: 0.95rem;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            background: #333;
        }

        .nav-row {
            border-bottom: 1px solid #f0f0f0;
        }

        .main-nav {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            border-right: 1px solid #f0f0f0;
            border-left: 1px solid #f0f0f0;
        }

        .main-nav > li {
            position: relative;
            display: flex;
            align-items: center;
        }

        .main-nav > li > a {
            display: inline-block;
            padding: 14px 14px;
            font-weight: 400;
            color: #000000;
            text-decoration: none;
            font-size: 1rem;
            border-right: 1px solid #f0f0f0;
            white-space: nowrap;
        }

        .main-nav > li:last-child > a {
            border-right: none;
        }

        .main-nav > li > a:hover {
            background-color: #f6f6f6;
            color: #000;
        }

        .has-dropdown > a {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .has-dropdown > a::after {
            content: "▾";
            opacity: 0.7;
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 200px;
            background: white;
            box-shadow: 0 12px 25px rgba(0,0,0,0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(5px);
            transition: 0.2s ease;
            z-index: 100;
            list-style: none;
            border: 1px solid #f0f0f0;;
            border-top: none;
        }

        .main-nav > li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown li a {
            display: block;
            padding: 12px 24px;
            color: #333;
            text-decoration: none;
            font-weight: 400;
            border-bottom: 1px solid #eee;
        }

        .dropdown li:last-child a {
            border-bottom: none;
        }

        .dropdown li a:hover {
            background: #f3f3f3;
        }

        .mobile-header {
            display: none;
            background: white;
            padding: 12px 20px;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid #ccc;
            position: relative;
            z-index: 1001;
        }

        .mobile-logo img {
            height: 15px;
            display: block;
        }

        .mobile-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .burger-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px 8px;
        }

        .burger-icon {
            width: 28px;
            height: 20px;
            position: relative;
        }

        .burger-icon span {
            display: block;
            height: 2.5px;
            width: 100%;
            background: #1a1a1a;
            position: absolute;
            left: 0;
            transition: 0.2s;
        }

        .burger-icon span:nth-child(1) { top: 0; }
        .burger-icon span:nth-child(2) { top: 8px; }
        .burger-icon span:nth-child(3) { top: 16px; }

        .burger-text {
            font-size: 0.7rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-top: 2px;
            letter-spacing: 0.5px;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: 0.2s;
        }
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-sidebar {
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            height: 100%;
            background: white;
            z-index: 2001; /* выше оверлея */
            overflow-y: auto;
            transition: right 0.3s ease;
            box-shadow: -5px 0 20px rgba(0,0,0,0.2);
            border-left: 1px solid #ccc;
            padding: 24px 20px 30px;
        }

        .mobile-sidebar.active {
            right: 0;
        }

        .close-sidebar {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 0px;
        }
        .close-btn {
            background: none;
            border: none;
            font-size: 2.5rem;
            line-height: 1;
            cursor: pointer;
            padding: 0 8px;
            color: #333;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .close-btn:hover {
            color: #000;
            background: #f0f0f0;
        }

        .mobile-nav {
            list-style: none;
        }

        .mobile-nav > li {
            border-bottom: 1px solid #e0d8d0;
        }

        .mobile-nav > li > a {
            display: block;
            padding: 10px 0;
            font-weight: 600;
            color: #1a1a1a;
            text-decoration: none;
            font-size: 1.1rem;
        }

        .mobile-dropdown {
            list-style: none;
            padding-left: 20px;
            margin-bottom: 10px;
            display: none;
        }

        .mobile-dropdown.active {
            display: block;
        }

        .mobile-dropdown li a {
            display: block;
            padding: 12px 0 12px 16px;
            color: #333;
            text-decoration: none;
            font-weight: 400;
            border-left: 3px solid #777;
            background: #f5f5f5;
            margin: 8px 0;
        }

        .mobile-contacts-block {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 2px dashed #aaa;
        }

        .mobile-phone {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1a1a1a;
            text-decoration: none;
            display: block;
            margin-bottom: 15px;
        }

        .mobile-menu-note {
            font-size: 0.85rem;
            color: #555;
            background: #efebe7;
            padding: 16px;
            margin-top: 20px;
            text-align: center;
        }

        @media (max-width: 900px) {
            .top-row, .nav-row {
                display: none;
            }
            .mobile-header {
                display: flex;
            }
        }

        .content-placeholder {
            max-width: 1300px;
            margin: 0 auto;
            padding: 60px 32px;
            text-align: center;
            min-height: 200vh;
        }
        .content-placeholder h2 {
            font-weight: 400;
            color: #3a2e24;
        }
        .fake-news {
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            gap: 30px;
            text-align: left;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .fake-news p {
            background: white;
            padding: 20px;
            border: 1px solid #ccc;
        }
        
        
        
        
        .hero-slider-container {
            max-width: 1300px;
            width: 100%;
            margin: 0 auto;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
        }

        .slider-wrapper {
            position: relative;
            width: 100%;
            height:400px;
            aspect-ratio: 16 / 9;
            background: #1a1a1a;
        }

        .slides-track {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
            will-change: transform;
        }
        .slide-link {
            flex: 0 0 100%;
            width: 100%;
            height: 100%;
            display: block;
            position: relative;
            text-decoration: none;
            outline: none;
        }

        .slide-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            pointer-events: none;
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(6px);
            border: none;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 20;
            transition: all 0.25s ease;
            color: white;
            font-size: 32px;
            font-weight: 300;
            border: 1px solid rgba(255, 255, 255, 0.3);
            font-family: monospace;
            line-height: 1;
        }

        .slider-btn:hover {
            background: rgba(0, 0, 0, 0.85);
            transform: translateY(-50%) scale(1.08);
            border-color: rgba(255, 255, 255, 0.8);
        }

        .slider-btn:active {
            transform: translateY(-50%) scale(0.95);
        }

        .btn-prev {
            left: 20px;
        }

        .btn-next {
            right: 20px;
        }

        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 12px;
            z-index: 25;
            padding: 8px 16px;
            flex-wrap: wrap;
            pointer-events: auto;
        }

        .dot {
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.55);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.25s ease;
            border: none;
            padding: 0;
            display: block;
            backdrop-filter: blur(2px);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }

        .dot.active {
            background: #ffffff;
            width: 28px;
            border-radius: 20px;
            box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
        }

        .dot:hover {
            background: rgba(255, 215, 0, 0.95);
            transform: scale(1.2);
        }

        @media (max-width: 768px) {
            .hero-slider-container {
                border-radius: 10px;
            }
            .slider-wrapper {
                aspect-ratio: 4 / 3;
                height:170px;
            }
            .slider-btn {
                width: 40px;
                height: 40px;
                font-size: 28px;
            }
            .btn-prev {
                left: 12px;
            }
            .btn-next {
                right: 12px;
            }
            .dot {
                width: 8px;
                height: 8px;
            }
            .dot.active {
                width: 22px;
            }
            .slider-dots {
                bottom: 12px;
                gap: 10px;
            }
        }

        @media (max-width: 480px) {
            .slider-btn {
                width: 36px;
                height: 36px;
                font-size: 24px;
            }
        }
        
        
        
        
        
        
        
.nomargin{margin-bottom:5px;}
.bggray{background-color:#f0f0f0;}
.ugol{border-radius:10px;}
.pad10{padding:10px;}
.padtop0{padding-top:0px;}
.martop{margin-top:20px;}
.marbot{margin-bottom:20px;}
.bottom30{padding-bottom:30px !important;}
.underh{border-bottom:2px solid #23cc23}
.nomargin_list{margin:0px !important;list-style-position:inside;}
.nomargin_list li{margin:10px !important;}
.checksvg{height: 48px; width: 48px; float: left; padding: 0 10px 10px 0;}
.descrsvg{height: 48px; display: table-cell;  vertical-align: middle; font-size: 16px;  padding-bottom: 10px;}
.descrsvg a{font-size:20px;}
.excerpt-wrap, .nv-content-wrap {--listpad:unset !important;}

    .btn_green {
      display: inline-block;
      margin-top: 20px;
      padding: 12px 24px;
      background: #23aa23;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      transition: background 0.3s ease;
    }
    .btn_green:hover {
      background: #23bb23;
		color: #fff;
    }

@media (min-width:800px)
{

.img_left {
	float:left;
	max-width:300px;
	margin:5px 15px;
}
}

@media (max-width:800px)
{
main{padding:0px 15px;}

.img_left {
	width:100%;
	height:auto;
}
}        



        .category-title {
            font-size: 1.2rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            letter-spacing: -0.3px;
            color: #2c3e2f;
        }

        .category-desc {
            color: #2c3e33;
            font-size: 0.95rem;
        }
        .category-card {
            background: #fcfcfc;
            border-radius: 10px;
            border: 1px solid #f0ede8;
            padding: 20px 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.01);
        }

        .category-card:hover {
            border-color: #e2d9cf;
            box-shadow: 0 12px 22px -12px rgba(0, 0, 0, 0.08);
            transform: translateY(-2px);
        }
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 20px;
            margin-top: 1rem;
        }
        
        h1{text-align:center;padding-top:20px;}        
        h2{text-align:center;padding-top:20px;}
        
        
        
        
        .faq-item {
            background: white;
            border-radius: 10px;
            margin-bottom: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: all 0.2s ease;
        }
        details {
            padding: 0;
        }
        summary {
            padding: 20px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            list-style: none; 
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #1a1e24;
            border-radius: 12px;
            transition: background 0.2s;
        }
        summary::-webkit-details-marker {
            display: none; 
        }
        summary::after {
            content: "▼";
            font-size: 0.8rem;
            color: #6c757d;
            transition: transform 0.2s;
        }
        details[open] summary::after {
            transform: rotate(180deg);
        }
        summary:hover {
            background-color: #f1f3f5;
        }
        .answer {
            padding: 0 20px 20px 20px;
            color: #495057;
            line-height: 1.5;
            border-top: 1px solid #e9ecef;
            margin-top: 0;
        }
        .answer p {
            margin: 0 0 10px 0;
        }
        .answer p:last-child {
            margin-bottom: 0;
        }        
        
        
        
        
        
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        .grid-330 {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
            gap: 20px;
        }        

        .card {
            background: #ffffff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 8px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.02);
            display: flex;
            flex-direction: column;
            height: 100%;          
        }



        .card-image {
            width: 100%;
            background-color: #d9e3ec;
            overflow: hidden;
            position: relative;
            aspect-ratio: 16 / 9;  
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .card:hover .card-image img {
            transform: scale(1.03);
        }

        .card-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .card-title {
            font-size: 1.1rem;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 0.5rem;
            letter-spacing: -0.01em;
        }

        .card-text {
            font-size: 1rem;
            margin-bottom: 1.2rem;
            flex: 1;
        }

        .card-button {
            margin-top: auto;
            display: inline-block;
            width: fit-content;
            background: #23aa23;
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.75rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            text-align: center;
            letter-spacing: 0.3px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .card-button:hover {
            background: #23bb23;
            transform: scale(0.97);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }



        @media (max-width: 640px) {
            .grid {
                gap: 1.5rem;
                grid-template-columns: 1fr;
            }
            .grid-330 {
                gap: 1.5rem;
                grid-template-columns: 1fr;
            }            
            .card-title {
                font-size: 1.35rem;
            }
            .page-header h1 {
                font-size: 1.9rem;
            }
        }

        @media (min-width: 641px) and (max-width: 900px) {
            .grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .card-button:focus-visible {
            outline: 3px solid #ffb347;
            outline-offset: 2px;
        }        
        
        
        
        .timer-container {
            text-align: center;
        }

        .countdown {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .time-block {
            border-radius: 50%;
            border:2px solid red;
	    padding: 10px;
	    min-width: 80px;
	    min-height: 80px;
        }
        .time-block .label{font-size:12px;}

        .number {
            font-size: 1.7rem;
            font-weight: 600;
        }



        .expired-message {
            font-size: 2rem;
            font-weight: bold;
            color: #ff6b6b;
            text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
            padding: 2rem;
            display: none;
        }

        @media (max-width: 550px) {
        .number {
            font-size: 1.5rem;
            font-weight: 500;
        }
	.time-block .label{font-size:11px;}
        .time-block {
            border-radius: 50%;
            border:2px solid red;
	    padding: 5px;
	    min-width: 70px;
	    min-height: 70px;
        }	
            .expired-message {
                font-size: 1.3rem;
                padding: 1rem;
            }
        }        
        
        
        
        .footer {
            background-color: #555;
            padding: 40px 20px;
            margin-top:40px;
        }

        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            color: #fff;
        }

        .footer-col {
            flex: 1;
            min-width: 150px;
            font-size:14px;
        }

        .footer-col h3 {
            color: #fff;
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: normal;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 8px;
        }

        .footer-col a {
            color: #fff;
            text-decoration: underline;
            font-size: 15px;
        }

        .footer-col a:hover {
            color: #fff;
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                gap: 25px;
            }
        }        
        
        
        .vip-article h1 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-top: 0;
            margin-bottom: 0.5rem;
        }
        .vip-article .lead {
            font-size: 1.2rem;
            color: #2c3e4e;
            margin-bottom: 2rem;
            border-bottom: 1px solid #eaeef2;
            padding-bottom: 1rem;
        }
        .vip-article h2 {
            font-size: 1.8rem;
            font-weight: 600;
            margin: 1.8rem 0 1rem;
            color: #1f3b4c;
        }
        .vip-article h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 1.5rem 0 0.5rem;
            color: #2c3e50;
            display: inline-block;
            background: linear-gradient(90deg, #f9e5e6, transparent);
            padding: 0 0.5rem 0 0;
        }
        .vip-article .level-card {
            background: #fefaf7;
            border-radius: 28px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.05);
            border: 1px solid #f0e2da;
            transition: all 0.1s ease;
        }
        .vip-article .level-title {
            font-size: 1.7rem;
            font-weight: 800;
            margin: 0 0 0.25rem 0;
            color: #b22234;
            letter-spacing: -0.3px;
        }
        .vip-article .level-sub {
            font-size: 0.9rem;
            color: #b26b3c;
            font-weight: 500;
            margin-bottom: 1rem;
            border-left: 3px solid #e6c3aa;
            padding-left: 0.75rem;
        }
        .vip-article .perks-list {
            list-style: none;
            padding-left: 0;
            margin: 0.75rem 0 0.5rem;
        }
        .vip-article .perks-list li {
            margin-bottom: 0.6rem;
            padding-left: 1.6rem;
            position: relative;
        }
        .vip-article .perks-list li::before {
            content: "✓";
            color: #c0392b;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        .vip-article .bonus-formula {
            background: #fff4e8;
            padding: 0.75rem 1rem;
            border-radius: 20px;
            font-family: monospace;
            font-size: 0.9rem;
            margin-top: 0.75rem;
            border-left: 4px solid #e67e22;
        }
        .vip-article .note {
            background: #f9f9fc;
            border-left: 4px solid #9b59b6;
            padding: 1rem 1.2rem;
            margin: 1.8rem 0;
            font-size: 0.9rem;
            border-radius: 16px;
            color: #2c3e50;
        }
        .vip-article .grid-levels {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            margin: 1rem 0;
        }
        .vip-article .grid-levels .level-card {
            flex: 1 1 280px;
            margin: 0;
        }
        .vip-article hr {
            margin: 2rem 0;
            border: none;
            height: 2px;
            background: linear-gradient(to right, #f0d5c0, transparent);
        }
        .vip-article small {
            font-size: 0.8rem;
            color: #5f6c7a;
        }
        .vip-article .badge-stay {
            font-weight: 500;
            background: #eef2f5;
            border-radius: 40px;
            padding: 0.3rem 1rem;
            display: inline-block;
            font-size: 0.8rem;
        }
        @media (max-width: 680px) {
            .vip-article {
                padding: 1rem;
            }
            .vip-article h1 {
                font-size: 1.8rem;
            }
            .level-title {
                font-size: 1.4rem;
            }
        }        
        
        
        @media (max-width: 800px)
        {
        	.img_pc{display:none;}
        	.img_phone{display:block;}
        }
        @media (min-width: 800px)
        {
        	.img_pc{display:block;}
        	.img_phone{display:none;}
        }        