body {
    font-family: 'Nunito', sans-serif;
    background-color: #222;
    color: #333;
    margin: 0;
    padding: 0;
	max-width: 100vw;
    overflow-x: hidden;
    background-image: url('/images/quvawiwi2.svg');
    background-repeat: repeat;
    background-size: auto;
    background-position: top left;
	background-size: 80px 80px;
	opacity: 0;
    transition: opacity 0.3s ease;
}
body.loaded {
  opacity: 1;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
h1, h2, h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
}
h1 {
    font-size: 22px;
    margin-top: 6px;
    margin-bottom: 6px;
}
h2 {
    font-size: 24px;
    margin-top: 0px;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
    padding-bottom: 1px;
}
h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background-color: red;
    border-radius: 4px;
    position: absolute;
    bottom: -4px;
    left: 0;
}
h3 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 8px;
}
@font-face {
    font-family: 'Nunito';
    src: url('/fonts/Nunito-Regular.woff2') format('woff2'),
         url('/fonts/Nunito-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nunito';
    src: url('/fonts/Nunito-Bold.woff2') format('woff2'),
         url('/fonts/Nunito-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
nav {
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
nav a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    margin: 0 15px;
    transition: color 0.3s ease;
}
nav a:hover {
    color: #d4af37;
}
.tova7 {
    background-color: white;
    padding: 2px 2px;
    margin: 0;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}
.yace5 {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    background: white;
    padding: 20px;
    border-radius: 0px;
    max-width: 100%;
    margin: 0 auto;
}
.custom-select {
    position: relative;
    width: 200px;
    border-radius: 6px;
    cursor: pointer;
    background: #fff;
    border: 1px solid #ccc;
    text-align: center;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.custom-select:hover {
    border-color: #d4af37;
    background: #f9f9f9;
}
.options-container {
    position: absolute;
    top: 100%;
    left: -2px;
    width: 101%;
    max-height: 250px;
    overflow-y: auto;
    background: white;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}
.option {
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.option:last-child {
    border-bottom: none;
}
.option:hover {
    background: #ffdddd;
    color: #d40000;
    font-weight: bold;
}
@media (max-width: 768px) {
    .yace5 {
        flex-direction: column;
        max-width: 100%;
        padding: 18px 6px 18px 6px;
    }
    .custom-select {
        width: 100%;
        font-size: 16px;
        padding: 10px;
    }
    .option {
        font-size: 14px;
    }
}
.model-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    padding: 0px 6px 6px 6px;
}
.model-card {
    position: relative;
    flex: 1 1 calc(25% - 10px);
    max-width: 280px;
    aspect-ratio: 3 / 4;
    text-align: center;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.model-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.model-card .xuyu5 {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    padding: 12px;
    text-align: left;
    color: white;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-shadow: 1px 1px 1px rgba(71, 71, 71, 0.7);
}
.model-card .rohojo6 {
    font-weight: bold;
    font-size: 19px;
    margin: 0;
}
.model-card .beru5 {
    font-size: 16px;
    margin: 0px 0 0;
    opacity: 0.8;
}
.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
    .model-card {
        flex: 1 1 calc(50% - 10px);
    }
}
@media (min-width: 769px) and (max-width: 1200px) {
    .model-card {
        flex: 1 1 calc(33.33% - 10px);
    }
}
@media (min-width: 1201px) {
    .model-card {
        flex: 1 1 calc(25% - 10px);
    }
}
.bohame7 {
    max-width: 90%;
    margin: 40px auto;
    text-align: left;
    background: white;
    padding: 20px 24px;
    border-radius: 6px;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(2px);
    line-height: 1.3;
}

.bohame7 h2, .bohame7 h3 {
    margin-top: 0em;
    margin-bottom: 0.1em;
    font-size: 1.5rem;
    color: #111;
}

.bohame7 p, .bohame7 ul {
    margin-bottom: 1em;
    font-size: 1rem;
    color: #222;
}

.bohame7 ul {
    padding-left: 1.3em;
}

.bohame7 li {
    margin-bottom: 0em;
}

li {
  margin-bottom: 8px;
  line-height: 1.5;
}

ol {
  margin-left: 10px;
  padding-left: 12px;
  list-style-type: decimal;
}

.vudi6 {
    text-align: center;
    margin: 0 auto;
    max-width: 430px;
    padding: 0px 0px 18px 0px;
    background: rgba(0, 0, 0, 0);
    border-radius: 10px;
}
.vudi6 img {
    width: 100%;
    height: auto;
    border-radius: 0px;
    margin-bottom: -2px;
}
.vudi6 p {
    font-size: 18px;
    color: #555;
}
.waxuxa8 {
    display: inline-block;
    text-decoration: none;
    background: #4CAF50;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 15px;
    font-size: 16px;
    transition: background 0.3s ease;
}
.waxuxa8:hover {
    background: #b5902f;
}
@media (max-width: 1024px) {
    .model-card {
        width: calc(50% - 20px);
    }
}
@media (max-width: 600px) {
    .model-card {
        width: 100%;
        max-width: none;
    }
}
.kocato2 {
    max-width: 400px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.kocato2 label {
    font-weight: bold;
    font-size: 16px;
}
.kocato2 input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
.kocato2 button {
    padding: 10px;
    background: #d4af37;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.kocato2 button:hover {
    background: #b5902f;
}
.ligeti3 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}
.ligeti3 label {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}
.ligeti3 label:hover {
    background: #f0f0f0;
}
.profile-photos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}
.profile-photo {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.waxuxa8 {
    display: inline-block;
    margin-top: 0px;
    padding: 10px 15px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease-in-out;
}
.waxuxa8:hover {
    background: #b5902f;
}
@media (max-width: 768px) {
    .model-card {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .model-card:nth-child(-n+8) {
        opacity: 8;
        transform: translateY(0);
    }
    .model-card.visible {
        opacity: 8;
        transform: translateY(0);
    }
}
.xinowape5 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #28a745;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}
.error-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #dc3545;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}
.xinowape5.hide,
.error-message.hide {
    opacity: 0;
}
.raye1 {
    position: relative;
    width: 100%;
    max-width: 430px;
    margin: 0px auto;
    overflow: hidden;
    border-radius: 0px;
}
.bilega1 {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 1;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    width: max-content;
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(255, 255, 255, 200);
    text-shadow: 1px 1px 0 rgba(100, 100, 100, 0.5);
}
.ricuzi8 {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 250px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    background: transparent;
    border: 1px solid white;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 15;
    opacity: 1;
	text-decoration: none;
}
.ricuzi8:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}
.zota8 {
    display: flex;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
    cursor: grab;
}
.kini5 {
    min-width: 100%;
}
.kini5 img {
    width: 100%;
    height: auto;
    display: block;
}
.wuja1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 7px 10px;
    height: 41px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 10%;
    transition: background 0.3s ease;
	z-index: 9999;
	opacity: 1;
    touch-action: manipulation;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.geri2 {
    left: 10px;
}
.heyajako3 {
    right: 10px;
}
@media (min-width: 768px) {
    .wuja1 {
        display: block;
    }
}
.sulo4 {
	max-width: 92%;
	margin: 20px auto;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0 0 0 / 20%);
	border: 1px solid #ddd;
    margin-top: 20px;
    text-align: left;
	background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 6px;
    backdrop-filter: blur(2px);
}
.sulo4 h2 {
    margin-bottom: 24px;
    font-size: 24px;
}
.nahode2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 10px;
}
.muga3 {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 5px;
    background: #ffe6e6;
    color: red;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}
.muga3:hover {
    background: #ffcccc;
}
.quco9 {
    width: 100%;
    max-width: 500px;
    margin: 0px auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #fff;
    border-radius: 0px 0px 0px 0px;
    box-shadow: 0 6px 14px rgba(0 0 0 / 20%);
    border: 1px solid #ddd;
    padding: 12px 15px;
    box-sizing: border-box;
}
.yada5 {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    text-align: left;
    padding-left: 5px;
}
.logakiko8 {
    width: 1px;
    height: 40px;
    background: #ddd;
}
.kedabefi2 {
    width: 25px;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
}
.zoguya9 {
    background-image: url('/icons/mezu9.png');
}
.divubuga8 {
    background-image: url('/icons/noqu2.png');
}
.yada5:last-child {
    margin-left: 15px;
}
.doxa9 {
    display: flex;
    flex-direction: column;
}
.yote5 {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
}
.pawu2 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}
@media (max-width: 600px) {
    .quco9 {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }
    .logakiko8 {
        height: 30px;
        width: 1px;
    }
    .yada5 {
        justify-content: flex-start;
        padding-left: 5px;
    }
}
.qigo4 {
    background: #222;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}
.nayikupu5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.dejotiqu2 a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: 0.3s;
}
.dejotiqu2 a:hover {
    color: #ffcc00;
}
.fowanamo6 {
    margin-top: 15px;
    font-size: 12px;
    opacity: 0.7;
}
@media (max-width: 768px) {
    .nayikupu5 {
        flex-direction: column;
        text-align: center;
    }
    .dejotiqu2 {
        margin-bottom: 15px;
    }
}
.fenahote2 {
    background: #222;
    color: white;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.kipumuyu3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.rezasuzi8 img {
    width: 28px;
    height: 24px;
    transition: 0.3s;
}
.rezasuzi8 img:hover {
    transform: scale(1.1);
}
.wobeki3 img {
    width: 190px;
}
.qawaza9 img {
    width: 22px;
    height: 22px;
    cursor: pointer;
    transition: 0.3s;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0;
    display: block;
}
.qawaza9 {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tafe7 {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}
.qawaza9 img:hover {
    transform: scale(1.1);
}
.ceyapu4 {
    position: fixed;
    top: 0;
    right: 100%;
    width: 210px;
    height: 100%;
    background: #222;
    color: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease-in-out;
    padding-top: 60px;
    overflow-y: auto;
}
.ceyapu4.open {
    right: 0;
}
.ceyapu4 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ceyapu4 ul li {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.ceyapu4 ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    display: block;
    transition: 0.3s;
}
.ceyapu4 ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
}
.tafe7 {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.tafe7:hover {
    color: #ffcc00;
}
.ceyapu4.active {
    right: 0;
}
@media (max-width: 768px) {
    .kipumuyu3 {
        padding: 0 15px;
    }
    .wobeki3 img {
        width: 190px;
    }
}
.site-title-link {
  display: inline-block;
  text-decoration: none !important;
  color: inherit !important;
}
.wobeki3 .site-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  margin: 0;
  line-height: 0.3;
  padding: 0.5em 0;
  text-decoration: none;
  color: inherit;
  font-size: clamp(1.5rem, 6vw, 3rem);
}
.wobeki3 .site-title .first-word {
  color: #dbdb00;
}
.wobeki3 .site-title .second-word {
  color: #fcfcf8;
}
.kipumuyu3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wobeki3 {
  flex: 1;
  text-align: center;
}
@media (max-width: 480px) {
  .wobeki3 .site-title {
    font-size: clamp(1.25rem, 5.3vw, 2.5rem);
  }
}
@media (min-width: 1024px) {
  .wobeki3 .site-title {
    font-size: clamp(1rem, 1.7vw, 5rem);
  }
}
.siwiri2 {
    max-width: 92%;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0 0 0 / 20%);
    text-align: left;
    margin: 20px auto;
	border: 1px solid #ddd;
    line-height: 1.6;
	background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 6px;
    backdrop-filter: blur(2px);
}
.siwiri2 h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}
.siwiri2 p {
    font-size: 16px;
    color: #555;
}
.rixu8 {
    max-width: 92%;
    margin: 20px auto;
	text-align: left;
    background: white;
    padding: 20px;
    border-radius: 6px;
	border: 1px solid #ddd;
	box-shadow: 0px 4px 10px rgba(0 0 0 / 20%);
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
}
.bio-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}
.bio-label {
    font-weight: bold;
    color: #555;
}
.bio-value {
    text-align: right;
    color: #222;
}
.ganipaxi6 {
    color: #2f5da7;
    font-weight: bold;
}
.ganipaxi6:hover {
    text-decoration: underline;
    color: #e60000;
}
.dopu7 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 5px;
}
.taxeji4 {
    display: inline-block;
    padding: 8px 40px;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    background: linear-gradient(45deg, #e54898, #e67db3);
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.taxeji4:hover {
    background: linear-gradient(45deg, #cc0000, #990000);
    box-shadow: 0 6px 14px rgba(255, 0, 0, 0.5);
    transform: scale(1.05);
}
.guzeciyu4 {
	max-width: 92%;
    margin: 20px auto;
    background: #fff;
    padding: 20px 20px 10px 20px;
    margin-top: 20px;
    border-radius: 6px;
    text-align: left;
	border: 1px solid #ddd;
    box-shadow: 0px 4px 10px rgba(0 0 0 / 20%);
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
}
.noro6 {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.noro6 .nigelile2,
.noro6 #openPhone {
    margin-top: 6px;
}
.ciwusa9 {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
	transform: translateY(2px);
}
.qexa9 {
    background-image: url('/icons/phone.png');
}
.yibi1 {
    background-image: url('/icons/rivoku6.png');
}
.nigelile2 {
    font-weight: bold;
    color: #333;
    margin-right: 5px;
}
.contact-phone {
    color: #e91e63;
    font-weight: bold;
    text-decoration: none;
}
.contact-phone:hover {
    text-decoration: underline;
}
.yeli7 {
    background: #4CAF50;
    color: white;
    padding: 4px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.yeli7:hover {
    background: #388E3C;
}
#openPhone {
    color: #e54898;
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
    padding: 5px 0;
}
#openPhone:hover {
    color: #e67db3;
}
.sedajuxi9 {
	max-width: 92%;
	margin: 20px auto;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #ddd;
    margin-top: 20px;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 6px;
    backdrop-filter: blur(2px);
}
.kekacezu3 {
    padding: 12px;
}
.kekacezu3 .xuyu5 .rohojo6,
.kekacezu3 .xuyu5 .beru5 {
    color: #fff !important;
}
.sedajuxi9 h2 {
    margin-bottom: 24px;
    font-size: 24px;
}
.xovubivo2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 10px;
}
.jevonebu4 {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 5px;
    background: #e6f7ff;
    color: #0077cc;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}
.jevonebu4:hover {
    background: #cceeff;
}
.lemodaya8 {
    max-width: 800px;
    margin: 34px auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.jitu8 {
    font-size: 18px;
    margin-bottom: 20px;
}
.jitu8 p {
    margin: 10px 0;
}
.jitu8 a {
    color: #e91e63;
    text-decoration: none;
    font-weight: bold;
}
.jitu8 a:hover {
    text-decoration: underline;
}
.suyeriqu5 {
    font-size: 14px;
    margin-bottom: 20px;
}
.suyeriqu5 p {
    margin: 4px 0;
}
.suyeriqu5 a {
    color: #e91e63;
    text-decoration: none;
    font-weight: bold;
}
.suyeriqu5 a:hover {
    text-decoration: underline;
}
.yejebo7 {
    width: 100%;
    max-width: 1000px;
    margin: 0px auto;
}

.yejebo7 iframe {
    display: block;
    width: 100%;
    height: 480px;
    border: 0;
}
.beqi2 {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.teku8 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.teku8 input,
.teku8 textarea {
    width: 100%;
    padding: 14px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 16px;
}
.teku8 textarea {
    height: 120px;
    resize: none;
}
.teku8 button {
    background: #e91e63;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}
.teku8 button:hover {
    background: #d81b60;
}
.xinowape5 {
    color: green;
    font-weight: bold;
}
#biqediwe5 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px 20px;
    display: none;
    text-align: center;
    font-size: 14px;
    z-index: 1000;
}
#biqediwe5 .siba4 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#biqediwe5 p {
    flex: 1;
    margin: 0;
    padding-right: 15px;
    text-align: left;
}
#biqediwe5 a {
    color: #d4af37;
    text-decoration: underline;
}
#biqediwe5 button {
    background: #d4af37;
    color: black;
    border: none;
    padding: 10px 15px;
    font-size: 12px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease;
}
#biqediwe5 button:hover {
    background: #b9972e;
}
#biqediwe5 #pubufe3 {
    background: #666;
    color: #fff;
}
#biqediwe5 #pubufe3:hover {
    background: #555;
}
@media (min-width: 769px) {
    #biqediwe5 #pubufe3 {
        margin-left: 10px;
    }
}
@media (max-width: 768px) {
    #biqediwe5 .siba4 {
        display: block;
        text-align: center; 
    }
    #biqediwe5 p {
        padding-right: 0;
        padding-bottom: 10px;
        text-align: center; 
    }
    #biqediwe5 button {
        width: 100%; 
        margin-top: 10px;
    }
}
.ribbon {
    position: absolute;
    top: 77px;
    left: -32px;
    width: 158px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    padding: 5px 0;
    transform: rotate(-45deg);
    transform-origin: left top;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.ribbon-diamond {
    background: #1e2734;
    color: #9bcaf2;
}
.ribbon-gold {
    background: #1e2734;
    color: #cbae11;
}
.ribbon-silver {
    background: #1e2734;
    color: #a3d5ff;
}
.model-card {
    position: relative;
    overflow: hidden;
}
.tariff-badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 20px;
    color: white;
    text-align: center;
    min-width: 80px;
}
.tariff-icon {
    width: 16px !important;
    height: 16px !important;
    display: inline-block;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 3px;
	transform: translateY(-3px);
}
.tariff-diamond {
    background: #4f46e1;
}
.tariff-silver {
    background: #3f85f7;
}
.tariff-gold {
    background: #121212;
    color: #cbae11;
}
.new-ribbon {
    position: absolute;
    top: 44px;
    left: -48px;
    width: 130px;
    background: #ba2870;
    color: white;
    text-transform: uppercase;
    font-size: 9px;
    font-weight: bold;
    text-align: center;
    padding: 20px 4px 4px 4px;
    transform: rotate(-45deg);
    transform-origin: left top;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.model-card .duwisogo7 {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 45%);
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 3px;
    border: 1px solid rgba(100, 100, 100, 60%);
}
.model-card .duwisogo7::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #00cc00;
    border-radius: 50%;
    display: inline-block;
}
.vudi6 .duwisogo7 {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 45%);
    border: 1px solid rgba(100, 100, 100, 60%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    z-index: 10;
	gap: 3px;
}
.vudi6 .duwisogo7 .medecuwo3 {
    width: 10px;
    height: 10px;
    background-color: #00cc00;
    border-radius: 50%;
    margin-right: 3px;
}
.wocavote9 {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-top: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.wocavote9 input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 10px;
}
.wocavote9 button {
    background-color: #4f46e1;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.wocavote9 button:hover {
    background-color: #3b37c1;
}
.load-more-btn {
    display: inline-block;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(45deg, #e54898, #e67db3);
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.load-more-btn:hover {
    background: linear-gradient(45deg, #e54898, #e67db3);
    box-shadow: 0 6px 14px rgba(255, 0, 0, 0.5);
    transform: scale(1.05);
}
.conuse6 {
    max-width: 60%;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0 0 0 / 20%);
    text-align: left;
    margin: 8px auto;
	border: 1px solid #ddd;
    line-height: 1.6;
	background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(2px);
    }
.conuse6 h1, .conuse6 h2 {
    margin-top: 20px;
    }
.conuse6 ul {
    margin-left: 20px;
    }
    @media (max-width: 768px) {
.conuse6 {
    padding: 14px;
    }
}
@media (min-width: 1024px) {
  .vudi6 .kekacezu3 {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 16px 20px;
  }
}