@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.menu-items a,
.menu-items {
    color: black;
    text-decoration: none;
}

.header-text {
    text-align: center;
    margin: 20px 0;
}

.menu {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 0px 0px 10px 10px;
    padding-bottom: 15px;
}

.menu__item {
    text-align: center;
}

.peopleSwiper {
    width: 600px;
    margin: 0 !important;
}

.card-information {
    padding: 25px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.95);
}

.card-information img {
    width: 100%;
    max-height: 350px;
    object-fit: contain;
    border-radius: 30px;
    background-color: gainsboro;
}

.card-information button {
    border: 0;
    background-color: transparent;
    width: 100%;
    cursor: unset;
}

.icon-like {
    transition: .5s;
    cursor: pointer;
}
.icon-like:hover {
    color: red;
}

body {
    background: #667eea;
}

.dating-form-container {
    background: #667eea;
    min-height: 100vh;
    padding: 40px 0;
}
.dating-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.form-header {
    text-align: center;
    margin-bottom: 30px;
}
.form-header h2 {
    color: #000;
    font-weight: 700;
    margin-bottom: 10px;
}
.form-header p {
    color: #666;
    font-size: 1.1rem;
}
.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}
.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}
.form-control:focus, .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}
.photo-upload-area {
    border: 2px dashed #667eea;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(102, 126, 234, 0.05);
}
.photo-upload-area:hover {
    border-color: #764ba2;
    background: rgba(102, 126, 234, 0.1);
}
.photo-upload-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 15px;
}
.gender-selection {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.gender-option {
    flex: 1;
    text-align: center;
}
.gender-input {
    display: none;
}
.gender-label {
    display: block;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}
.gender-input:checked + .gender-label {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}
.gender-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
}
.looking-for-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}
.tag-option {
    flex: 1;
    min-width: calc(50% - 10px);
}
.tag-input {
    display: none;
}
.tag-label {
    display: block;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: white;
}
.tag-input:checked + .tag-label {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}
.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 20px;
}
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}
.character-count {
    text-align: right;
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}
.preview-image {
    max-width: 200px;
    max-height: 200px;
    border-radius: 12px;
    margin: 15px auto;
    display: none;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev,
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    position: unset !important;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after,
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    display: none;
}
.rating-container {
    padding: 30px 0;
}

.rating-container h1 {
    text-align: center;
    color: white;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.rating-container__card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
}

.rating-container__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.rating-container__picture {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rating-container__img {
    width: 100%;
    max-width: 300px;
    height: 250px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.rating-container__card h2 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.rating-container__card p {
    margin-bottom: 15px;
    color: #555;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.likes-container {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.likes-count {
    font-weight: 600;
    margin-right: 10px;
    font-size: 1.1rem;
}

.icon-like {
    color: #667eea;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    cursor: pointer;
}

.empty-state {
    text-align: center;
    color: white;
    padding: 50px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-top: 30px;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.7;
}