.open-modalz {
    cursor: pointer;
    border-radius: 5px;
    background-color: #101010;
    color: white;
    padding: 5px 20px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.open-modalz:hover {
    background-color: #3f2d2d;
}
		
		.qwerty9876 {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .qwerty9876.zxcvbn123 {
            opacity: 1;
            visibility: visible;
        }

        .asdfgh456 {
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 450px;
            width: 90%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            opacity: 0;
            transform: translateY(-20px);
            transition: all 0.3s ease;
            position: relative;
            text-align: center;
        }

        .qwerty9876.zxcvbn123 .asdfgh456 {
            opacity: 1;
            transform: translateY(0);
        }

        .mnbvcx789 {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 28px;
            color: #999;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .mnbvcx789:hover {
            background: #f5f5f5;
            color: #333;
            transform: scale(1.1);
        }

        .poiuyt147 {
            color: #000;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .lkjhgf852 {
            color: #000;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .wertyui963 {
            background: #101010;
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 25px;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(16, 16, 16, 0.3);
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            width: 100%;
            max-width: 280px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin: 0 auto;
        }

        .wertyui963:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(16, 16, 16, 0.4);
            background: #333;
        }

        .wertyui963:active {
            transform: translateY(0);
        }

        .hjklzx654 {
            width: 22px;
            height: 22px;
            fill: currentColor;
            flex-shrink: 0;
        }



        @media (max-width: 480px) {
            .asdfgh456 {
                padding: 30px 25px;
                margin: 20px;
            }
            
            .poiuyt147 {
                font-size: 24px;
            }
            
            .lkjhgf852 {
                font-size: 15px;
            }
        }
		
@media (max-width: 767px) {
  .mobile-hiddenz {
    display: none !important;
  }
}
