* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #E91E63;
    --primary-orange: #FF9800;
    --primary-yellow: #FFC107;
    --dark-navy: #0a1010;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: auto;
    background: var(--white);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Prevent image dragging and right-click */
img {
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
}

/* Allow pointer events on interactive elements */
button,
a,
input,
textarea,
select {
    pointer-events: auto;
}

/* Prevent text selection on all elements */
* {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}

/* Remove focus outline and tap highlight */
*:focus {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* Remove tap highlight on buttons and links */
button,
a,
input,
textarea,
select {
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    outline: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-pink);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease;
    transform: translate(-50%, -50%);
    display: none;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-pink);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s ease;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    display: none;
}

/* Heart Bubbles */
#heart-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
    background: transparent;
}

.heart-bubble {
    position: absolute;
    font-size: 20px;
    animation: floatUp 6s ease-in-out forwards;
    pointer-events: none;
    opacity: 0;
    filter: drop-shadow(0 0 8px rgba(233, 30, 99, 0.6));
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0) rotate(0deg);
    }

    10% {
        opacity: 0.5;
        transform: translate(0, -50px) scale(1) rotate(45deg);
    }

    25% {
        opacity: 0.5;
        transform: translate(var(--drift, 0), -150px) scale(1.1) rotate(90deg);
    }

    50% {
        opacity: 0.4;
        transform: translate(calc(var(--drift, 0) * 1.5), -350px) scale(1) rotate(180deg);
    }

    75% {
        opacity: 0.3;
        transform: translate(calc(var(--drift, 0) * 2), -550px) scale(0.9) rotate(270deg);
    }

    100% {
        opacity: 0;
        transform: translate(calc(var(--drift, 0) * 2.5), -750px) scale(0.5) rotate(360deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-pink);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-only {
    display: none;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-pink) 0%, #c2185b 100%);
    color: var(--white);
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c2185b 0%, var(--primary-pink) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-large {
    padding: 15px 40px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--primary-pink);
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    letter-spacing: -1px;
}

.highlight {
    color: var(--primary-pink);
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    font-size: 1.1em;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.app-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-badges span {
    font-size: 12px;
    color: var(--text-light);
}

.badges {
    display: flex;
    gap: 10px;
}

.badges img {
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s;
}

.badges img:hover {
    transform: scale(1.05);
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.badge-1 {
    top: 5%;
    left: 10px;
}

.badge-2 {
    bottom: 5%;
    right: 10px;
    background: var(--primary-yellow);
    color: var(--white);
}

.floating-badge .icon {
    font-size: 24px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-pink);
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-orange);
    bottom: 100px;
    left: -50px;
}

.circle-3 {
    width: 150px;
    height: 150px;
    background: var(--primary-yellow);
    top: 50%;
    right: 10%;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--white);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box.orange {
    background: var(--primary-orange);
}

.icon-box.pink {
    background: var(--primary-pink);
}

.icon-box.yellow {
    background: var(--primary-yellow);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    width: 100%;
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

.decorative-blob {
    position: absolute;
    width: 80%;
    height: 80%;
    background: var(--primary-pink);
    border-radius: 50% 50% 0 50%;
    top: -20px;
    left: -20px;
    z-index: 1;
    opacity: 0.2;
}

.about-text h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
}

.feature-list {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.check-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-pink);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: var(--white);
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.stats-text h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.stats-text p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-pink);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-light);
    font-size: 16px;
}

.image-container-stats {
    position: relative;
    background: var(--primary-yellow);
    border-radius: 30px;
    padding: 10px;
}

.image-container-stats img {
    width: 100%;
    border-radius: 20px;
}

.floating-card {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    width: 70%;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons span {
    font-size: 20px;
}

.card-text {
    font-weight: 600;
    color: var(--text-dark);
}

/* Membership Section */
.membership {
    padding: 100px 0;
    background: var(--bg-light);
}

.membership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.membership-image {
    position: relative;
}

.membership-image img {
    width: 100%;
    border-radius: 30px;
}

.badge-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.verify-badge,
.elite-badge {
    background: var(--white);
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.elite-badge {
    background: var(--primary-yellow);
    color: var(--white);
}

.membership-text h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.membership-text p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.membership-features {
    list-style: none;
    margin-bottom: 30px;
}

.membership-features li {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    color: var(--text-light);
}

.membership-features li strong {
    color: var(--text-dark);
    margin-right: 10px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.testimonials h2 {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-container {
    position: relative;
    margin-bottom: 40px;
}

.testimonial-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
}

.testimonial-scroll::-webkit-scrollbar {
    height: 8px;
}

.testimonial-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.testimonial-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-orange));
    border-radius: 10px;
}

.testimonial-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #c2185b, #ff6f00);
}

.testimonial-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    min-width: 450px;
    max-width: 450px;
    flex-shrink: 0;
}

.quote-icon {
    font-size: 60px;
    color: var(--primary-pink);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testimonial-author h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

/* Member tier badges in testimonials */
.member-tier {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
}

.member-tier.basic {
    background: linear-gradient(135deg, #e0e0e0, #bdbdbd);
    color: #424242;
}

.member-tier.premium {
    background: linear-gradient(135deg, var(--primary-pink), #c2185b);
    color: var(--white);
}

.member-tier.elite {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: var(--white);
}

.decorative-dots {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(circle, var(--primary-orange) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.dots-1 {
    top: 50px;
    left: 50px;
}

.dots-2 {
    bottom: 50px;
    right: 50px;
}

/* Footer */
.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr 1fr;
    gap: 60px;
    margin-bottom: 0px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 16px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--primary-pink);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary-pink);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-pink) 0%, #c2185b 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #c2185b 0%, var(--primary-pink) 100%);
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.6);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top svg {
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 968px) {

    .hero-content,
    .about-content,
    .stats-content,
    .membership-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .logo {
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .about-text h2,
    .stats-text h2,
    .membership-text h2,
    .testimonials h2 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Footer mobile styles */
    .footer-content {
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-column ul li {
        width: 100%;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }

    .contact-info {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.btn-block {
    width: 100%;
}

/* Matching Profiles Section */
.matching-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.profiles-container {
    position: relative;
    margin-bottom: 40px;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--primary-pink);
    border-radius: 50%;
    font-size: 28px;
    color: var(--primary-pink);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.scroll-btn:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.scroll-left {
    left: -60px;
}

.scroll-right {
    right: -60px;
}

.profiles-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
}

.profiles-scroll::-webkit-scrollbar {
    height: 8px;
}

.profiles-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.profiles-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-orange));
    border-radius: 10px;
}

.profiles-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #c2185b, #ff6f00);
}

.profile-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.profile-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-badge {
    position: absolute;
    top: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.profile-badge.verified {
    left: 15px;
    color: #4CAF50;
}

.profile-badge.elite {
    right: 15px;
    background: var(--primary-yellow);
    color: var(--white);
}

.online-status {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 15px;
    height: 15px;
    background: #4CAF50;
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.profile-info {
    padding: 20px;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.profile-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.profile-header .age {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.profile-info .location {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.profile-info .bio {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
}

.profile-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.tag {
    background: var(--bg-light);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
}

.compatibility {
    margin-bottom: 20px;
}

.compatibility-bar {
    height: 6px;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.compatibility-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-orange));
    border-radius: 10px;
    transition: width 1s ease;
}

.compatibility-score {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-pink);
}

.profile-actions {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 10;
}

.btn-icon {
    width: 50px;
    height: 50px;
    padding: 0;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-pass {
    background: #f5f5f5;
    color: #999;
}

.btn-pass:hover {
    background: #ffebee;
    color: #f44336;
    transform: scale(1.1);
}

.btn-like {
    background: #ffebee;
    color: var(--primary-pink);
}

.btn-like:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: scale(1.1);
}

.btn-super {
    background: #fff8e1;
    color: var(--primary-yellow);
}

.btn-super:hover {
    background: var(--primary-yellow);
    color: var(--white);
    transform: scale(1.1);
}

/* Events Section */
.events-section {
    padding: 100px 0;
    background: var(--white);
}

.event-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid #e0e0e0;
    background: var(--white);
    border-radius: 25px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-pink);
    color: var(--white);
    border-color: var(--primary-pink);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.event-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.event-card.featured {
    grid-column: span 2;
}

.event-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    background: var(--primary-yellow);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.event-category {
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
}

.event-content {
    padding: 25px;
}

.event-date {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.date-box {
    background: var(--bg-light);
    padding: 12px 15px;
    border-radius: 12px;
    text-align: center;
    min-width: 60px;
}

.date-box .day {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-pink);
    line-height: 1;
}

.date-box .month {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
}

.event-time {
    flex: 1;
}

.event-time p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.event-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.event-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.attendees {
    display: flex;
    align-items: center;
    gap: 12px;
}

.attendee-avatars {
    display: flex;
    align-items: center;
}

.attendee-avatars img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -10px;
}

.attendee-avatars img:first-child {
    margin-left: 0;
}

.attendee-avatars .more {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-pink);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    margin-left: -10px;
    border: 2px solid var(--white);
}

.attendee-count {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.event-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-pink);
}

/* Membership Tiers */
.membership {
    padding: 100px 0;
    background: var(--bg-light);
}

.membership-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tier-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
}

.tier-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.tier-card.popular {
    border: 3px solid var(--primary-pink);
    transform: scale(1.05);
}

.tier-card.elite-tier {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: var(--white) !important;
}

.tier-card.elite-tier .tier-features li {
    color: rgba(255, 255, 255, 0.9) !important;
}

.tier-card.elite-tier .check {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-pink);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.tier-header {
    text-align: center;
    margin-bottom: 30px;
}

.tier-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.tier-header h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 5px;
}

.tier-subtitle {
    font-size: 14px;
    color: var(--text-light);
}

.tier-card.elite-tier .tier-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
}

.tier-price {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.tier-card.elite-tier .tier-price {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.tier-price .price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-pink);
}

.tier-card.elite-tier .tier-price .price {
    color: var(--white) !important;
}

.tier-price .period {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.tier-card.elite-tier .tier-price .period {
    color: rgba(255, 255, 255, 0.8) !important;
}

.tier-card.elite-tier .tier-header h3 {
    color: var(--white) !important;
}

.tier-card.elite-tier .tier-header p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.tier-features {
    list-style: none;
    margin-bottom: 30px;
}

.tier-features li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.tier-features li.disabled {
    opacity: 0.4;
}

.tier-features .check,
.tier-features .cross {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.tier-features .check {
    background: #e8f5e9;
    color: #4CAF50;
}

.tier-features .cross {
    background: #ffebee;
    color: #f44336;
}

/* Communities Section */
.communities-section {
    padding: 100px 0;
    background: var(--white);
}

.communities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.community-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.community-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-pink);
    background: var(--white);
}

.community-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s;
}

.community-card:hover .community-icon {
    transform: scale(1.08);
}

.community-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.member-count {
    font-size: 14px;
    color: var(--primary-pink);
    font-weight: 600;
    margin-bottom: 15px;
}

.community-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 60px;
}

/* Responsive Updates */
@media (max-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-card.featured {
        grid-column: span 1;
    }
}

/* Mobile/Desktop visibility */
.mobile-only {
    display: none;
}

.desktop-only {
    display: inline-block;
}

@media (max-width: 968px) {
    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 1001;
        gap: 0;
        overflow-y: auto;
    }

    .logo {
        justify-content: center;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-close {
        position: absolute;
        top: 20px;
        left: 20px;
        background: none;
        border: none;
        font-size: 32px;
        color: var(--text-dark);
        cursor: pointer;
        padding: 5px;
        line-height: 1;
        display: none;
    }

    @media (max-width: 968px) {
        .mobile-menu-close {
            display: block;
        }
    }

    .logo {
        justify-content: center;
    }

    .nav-links li {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links a {
        display: block;
        width: 100%;
        font-size: 16px;
    }

    .mobile-only {
        display: block;
        margin-top: 20px;
        border-bottom: none;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .membership-tiers {
        grid-template-columns: 1fr;
    }

    .tier-card.popular {
        transform: scale(1);
    }

    .section-header h2 {
        font-size: 36px;
    }

    .scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .scroll-left {
        left: 10px;
    }

    .scroll-right {
        right: 10px;
    }
}

@media (max-width: 640px) {
    .event-filters {
        gap: 10px;
    }

    .logo {
        justify-content: center;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }
}

@media (max-width: 968px) {
    .communities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .communities-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        justify-content: center;
    }
}


/* Enhanced Glassmorphism Effects */
.feature-card,
.event-card,
.community-card,
.tier-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover,
.event-card:hover,
.community-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--primary-pink);
}

.tier-card:hover {
    border: 1px solid var(--primary-pink);
}

.tier-card.elite-tier:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.profile-card {
    background: var(--white) !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.profile-card:hover {
    border: 1px solid rgba(233, 30, 99, 0.3);
}

/* Stylish Headings */
h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
}

.section-header h2 {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -1px;
}

/* Enhanced Badge Styles */
.badge,
.profile-badge,
.event-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Floating Animation Enhancement */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(5deg);
    }
}

/* Icon Box Enhancement */
.icon-box {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6f00 100%);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.4);
    transition: all 0.3s;
}

.icon-box.pink {
    background: linear-gradient(135deg, var(--primary-pink) 0%, #c2185b 100%);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
}

.icon-box.yellow {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffa000 100%);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

.feature-card:hover .icon-box {
    transform: scale(1.08);
    box-shadow: 0 15px 40px rgba(255, 152, 0, 0.6);
}

/* Profile Card Enhancements - Disabled to prevent overlap */

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Event Card Enhancements */
.event-card {
    position: relative;
}

.event-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(233, 30, 99, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 20px;
    pointer-events: none;
}

.event-card:hover::after {
    opacity: 1;
}

/* Compatibility Bar Enhancement */
.compatibility-fill {
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-orange), var(--primary-yellow));
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Button Icon Enhancements */
.btn-icon {
    position: relative;
    overflow: hidden;
}

.btn-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.btn-icon:hover::before {
    width: 100%;
    height: 100%;
}

/* Tier Card Popular Enhancement */
.tier-card.popular {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 240, 245, 0.95));
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.3);
}

/* Testimonial Card Enhancement */
.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Navbar Enhancement */
.navbar {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Decorative Elements */
.decorative-circle {
    background: radial-gradient(circle, var(--primary-pink) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Cheat code notification animation */
@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Selection Color */
::selection {
    background: var(--primary-pink);
    color: white;
}

::-moz-selection {
    background: var(--primary-pink);
    color: white;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-pink), var(--primary-orange));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #c2185b, #ff6f00);
}

/* Particle Background Effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(233, 30, 99, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 193, 7, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 152, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Enhanced Shadow on Scroll */
.navbar.scrolled {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Mobile Cursor Hide */
@media (max-width: 968px) {

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    body {
        cursor: auto;
    }
}