﻿:root {
    --bg: #0d0d0f;
    --card: #111111;
    --muted: #ABB0BA;
    --accent: #FF0000;
    --accent-2: #ff4d4d;
    --white: #FFFFFF;
    --container: 1150px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    padding-top: 72px;
    background: var(--bg);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.step-error {
    color: #ff3b3b;
    font-size: 13px;
    margin-top: 8px;
}

.step-error.hidden {
    display: none;
}

.container {
    margin: 0 auto;
}

/* Header Styles */
.site-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #000;
    padding: 16px 60px;
    z-index: 50;
}

.site-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 1px solid #454a54;
    pointer-events: none;
}

.header-inner {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.left-controls {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 300px;
}

.menu-btn,
.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(143, 149, 163, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
}

.logo img {
    height: 40px;
    cursor: pointer;
}

.search-box {
    background: rgba(143, 149, 163, 0.15);
    padding: 12px 16px;
    border-radius: 12px;
    width: 400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    cursor: pointer;
}

.right-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-login {
    padding: 8px 16px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid var(--white);
    cursor: pointer;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.auth-login:hover {
    background: rgba(255, 255, 255, 0.1);
}

.auth-register {
    background: var(--accent);
    padding: 8px 16px;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.auth-register:hover {
    background: #cc0000;
}

/* Profile Popup Card */
#profile-popup.profile-popup-card {
    position: absolute;
    right: 60px;
    top: 64px;
    background-color: #0c0c0c;
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: none !important;
    flex-direction: column;
    gap: 16px;
    z-index: 1000;
    border: 1px solid #222;
}

#profile-popup.profile-popup-card.show {
    display: flex !important;
}

.profile-popup-card .profile-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 8px;
}

.profile-popup-card .avatar-wrapper {
    position: relative;
    margin-bottom: 12px;
}

.profile-popup-card .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #222;
}

.profile-popup-card .status-dot {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    background-color: #2ecc71;
    border-radius: 50%;
    border: 3px solid #0c0c0c;
}

.profile-popup-card .username {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
}

.profile-popup-card .verified-badge {
    color: #3897f0;
    font-size: 16px;
}

.profile-popup-card .status-toggles {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 8px;
}

.profile-popup-card .toggle-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: white;
}

.profile-popup-card .switch {
    width: 40px;
    height: 22px;
    background-color: #333;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
}

.profile-popup-card .switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.profile-popup-card .switch.active {
    background-color: #ff0000;
}

.profile-popup-card .switch.active::after {
    transform: translateX(18px);
}

.profile-popup-card .switch.inactive {
    background-color: #333;
}

.profile-popup-card .btn-outline {
    width: 100%;
    padding: 14px;
    background-color: transparent;
    border: 1px solid #333;
    border-radius: 10px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'Poppins', sans-serif;
}

.profile-popup-card .btn-outline:hover {
    background-color: #1a1a1a;
}

.profile-popup-card .divider {
    border: 0;
    height: 1px;
    background: #222;
    margin: 4px 0;
}

.profile-popup-card .menu-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.profile-popup-card .menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    cursor: pointer;
    color: #fff;
    padding: 4px 0;
    transition: opacity 0.2s;
}

.profile-popup-card .menu-item:hover {
    opacity: 0.8;
}

.profile-popup-card .menu-icon {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.profile-popup-card .plan-card {
    background: linear-gradient(180deg, #320808 0%, #0c0c0c 100%);
    border: 1px solid #3a0d0d;
    border-radius: 12px;
    padding: 16px;
    margin-top: 8px;
}

.profile-popup-card .plan-label {
    color: #ff4d4d;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
}

.profile-popup-card .plan-name {
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.profile-popup-card .star-icon {
    color: #ffcc00;
    fill: #ffcc00;
    width: 18px;
    height: 18px;
}

/* Button Styles */
.btn {
    border: 0;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-join {
    font-size: 20px;
    background: #6e0808;
    padding-block: 16px;
    padding-inline: 56px;
    border-radius: 56px;
    color: white;
    transition: background 0.3s ease;
}

.btn-join:hover {
    background: #8a0a0a;
}

/* Pill Badge */
.pill {
    display: flex !important;
    align-items: center;
    gap: 12px;
    background: #3C13154D;
    padding: 10px 18px;
    border-radius: 50px;
    color: var(--accent-2);
    display: inline-block;
    margin-bottom: 18px;
    font-size: 14px;
    width: max-content;
}

/* Hero Section */
.hero {
    padding: 0 0 60px;
    background: url('/Img/HEro.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-inner {
    display: flex;
    gap: 40px;
    align-items: center;
}

.hero-left {
    flex: 1;
    min-width: 320px;
    z-index: 1;
    padding-inline: 80px;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    /* background: url('/Img/HEro.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
}

@media (max-width: 900px) {
    .hero-right {
        position: absolute;
        top: 140px;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .hero-image-wrap {
        width: 100% !important;
        height: 595px !important;
        opacity: .2 !important;
    }
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 82px;
    letter-spacing: 2%;
    margin: 0 0 32px;
    width: 400px;
}

.accent {
    color: var(--accent);
}

.accent-2 {
    color: var(--accent-2);
}

.hero-sub {
    color: var(--muted);
    margin: 0 0 24px;
}

.cta-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.stats {
    display: flex;
    gap: 84px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 48px;
    font-weight: 600;
}

.stat-label {
    color: var(--muted);
}

.hero-image-wrap {
    width: 715px;
    height: 630px;
    overflow: hidden;
    border-radius: 12px;
}

.hero-image-wrap img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    object-position: center;
}

/* Hidden Class */
.hidden {
    display: none !important;
}

/* Registration Modal Styles */
.registerPopup {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 40px;
    overflow-y: hidden;
}

.registerPopup.hidden {
    display: none !important;
}

.registerPopupContent {
    width: 600px;
    background: rgba(17, 17, 17, 0.7);
    background-image: url('Img/register-background.png');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #444 transparent;
    border: solid 1px rgba(92, 98, 112, 1);
}

.registerPopupContent::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.7);
    z-index: 1;
    border-radius: 24px;
}

.mainContent {
    z-index: 999999;
    position: relative;
}

.logoCenter {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logoCenter img {
    width: 195px;
}

.nameCreat {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    text-align: center;
    padding-top: 16px;
    color: rgba(255, 255, 255, 1);
}

.emailSection {
    margin-top: 24px;
}

.inputBox {
    position: relative;
    margin-bottom: 24px;
    overflow: visible !important;
}

.inputBox label {
    position: absolute;
    top: -6px;
    left: 22px;
    background: #111;
    padding: 0 6px;
    font-size: 14px;
    color: #ccc;
    font-weight: 400;
    z-index: 1;
}

.inputBox input,
.inputBox textarea {
    width: 100%;
    border: solid 1px rgba(92, 98, 112, 1);
    border-radius: 8px;
    background: transparent;
    padding: 16px;
    padding-right: 50px;
    color: rgba(143, 149, 163, 1);
    font-weight: 400;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.inputBox input::placeholder,
.inputBox textarea::placeholder {
    color: rgba(143, 149, 163, 1);
}

.inputBox input.invalid {
    border-color: #c63737 !important;
    box-shadow: 0 0 0 2px rgba(198, 55, 55, 0.05) !important;
}

.eyeIcon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.whoSection {
    margin-bottom: 24px;
}

.whoTitle {
    font-weight: 500;
    font-size: 20px;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 16px;
}

.radioButtonDiv {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.radioCard {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.06));
    border: 1px solid rgba(69, 74, 84, 1);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.radioCard:hover {
    border-color: rgba(255, 77, 77, 0.5);
}

.radioCard input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radioMark {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
    border: solid 3px rgba(171, 176, 186, 1);
    flex-shrink: 0;
}

.radioMark::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 1);
    transform: scale(0);
    transition: transform 160ms ease;
}

.radioCard input[type="radio"]:checked+.radioMark {
    border-color: rgba(255, 0, 0, 1);
}

.radioCard input[type="radio"]:checked+.radioMark::after {
    transform: scale(1);
}

.radioLabel {
    font-size: 16px;
    font-weight: 500;
    color: rgba(171, 176, 186, 1);
}

/* Custom Select */
.customSelectContainer {
    width: 100%;
    position: relative;
    margin-bottom: 24px;
    z-index: 10;
}

.customSelect {
    background: #1b1b1d;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(92, 98, 112, 1);
    color: #ccc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selectDropdown {
    background: #0f0f10;
    border-radius: 12px;
    border: 1px solid rgba(69, 74, 84, 1);
    padding: 12px;
    margin-top: 8px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 68px;
    z-index: 100000;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.selectDropdown input[type="text"],
.selectDropdown #city-search {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid rgba(92, 98, 112, 1);
    background: #111;
    color: #ccc;
    font-size: 14px;
    margin-bottom: 12px;
    box-sizing: border-box;
    outline: none;
}

.selectDropdown input::placeholder {
    color: rgba(143, 149, 163, 0.6);
}

.selectDropdown input:focus {
    box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.06);
    border-color: rgba(255, 0, 0, 0.5);
}

.city-list {
    max-height: 160px;
    overflow: auto;
    margin-top: 6px;
}

.city-item {
    padding: 8px;
    border-radius: 8px;
    color: rgba(171, 176, 186, 1);
    cursor: pointer;
}

.city-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.fieldError {
    color: #c63737;
    font-size: 13px;
    margin-top: 6px;
}

/* Checkbox Styles */
.checkBox {
    display: flex !important;
    align-items: baseline !important;
    gap: 12px;
    margin-top: 12px;
    color: rgba(171, 176, 186, 1);
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
}

.checkBox input[type="checkbox"] {
    display: none;
}

.checkBox .checkMark {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 1px solid var(--accent);
    background: #111;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}

.checkBox input[type="checkbox"]:checked+.checkMark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 4px;
    height: 11px;
    border: solid var(--accent);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Register Form */
.registerForm {
    height: auto;
    overflow: visible;
}

.loginForm {
    height: auto !important;
}

.password-hint {
    font-size: 12px;
    color: #888;
    margin-top: 6px;
    margin-left: 2px;
}

.club-venue-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 32px;
    border-top: 1px dashed rgba(92, 98, 112, 1);
    padding-top: 24px;
    padding-bottom: 24px;
    width: 100%;
}

.club-venue-title {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 4px;
}

.club-venue-link {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
    margin-bottom: 24px;
}

.privacy-note {
    font-size: 12px;
    color: #888;
    line-height: 1.4;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Register Button */
.registerButton {
    width: 100%;
    margin: 24px 0;
}

.registerButtpn {
    width: 100%;
    background-color: rgba(255, 0, 0, 1);
    border: solid 1px rgba(92, 98, 112, 0.2);
    padding: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-transform: capitalize;
    border-radius: 8px;
    cursor: pointer;
    color: rgba(255, 255, 255, 1);
    border: none;
    font-family: 'Poppins', sans-serif;
    transition: background 0.3s ease;
}

.registerButtpn:hover {
    background-color: rgba(255, 20, 20, 1);
}

.allradyLogin {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 1px;
    text-align: center;
    color: rgba(199, 202, 209, 1);
    margin-bottom: 24px;
}

.allradyLogin a {
    text-decoration: underline;
    color: rgba(199, 202, 209, 1);
    margin-left: 5px;
}

/* Activation Modal */
.activationPopup {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 40px;
    overflow-y: hidden;
}

.activationPopup.hidden {
    display: none !important;
}

.activationPopupContent {
    width: 600px;
    background: rgba(17, 17, 17, 0.7);
    background-image: url('Img/register-background.png');
    background-size: cover;
    background-position: center;
    border: solid 1px rgba(92, 98, 112, 1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
}

.activationPopupContent::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.7);
    z-index: 1;
    border-radius: 24px;
}

.activation-text-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.activation-text-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0;
}

/* Verification Modal */
.verification-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.verify-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.verify-state.hidden {
    display: none;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid #ff4d4d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.icon-circle.success {
    background: rgba(76, 175, 80, 0.2);
}

.icon-circle.error {
    background: rgba(244, 67, 54, 0.2);
}

.state-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
    margin: 0;
}

.success-text {
    color: #4CAF50;
}

.error-text {
    color: #F44336;
}

/* Onboarding Modal */
.imageSkip {
    position: relative;
}

.skipButton {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: background 0.2s;
}

.skipButton:hover {
    background: rgba(255, 255, 255, 0.2);
}

.onboardingContent {
    background: #111111;
    border-radius: 24px;
    width: 100%;
    max-width: 1068px;
    position: relative;
    border: 1px solid #5c6270;
    overflow: hidden;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.onboarding-flex {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.onboarding-left {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.onboarding-right {
    width: 50%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.onboarding-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.onboarding-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    line-height: 1.2;
}

.onboarding-header .sub-text {
    color: #abb0ba;
    font-size: 16px;
    margin-bottom: 24px;
}

.text-accent {
    color: #ff4d4d;
}

.progress-section {
    margin-bottom: 30px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: white;
    font-size: 14px;
}

.progress-track {
    background: white;
    height: 8px;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
}

.progress-fill {
    background: #ff4d4d;
    height: 100%;
    width: 0%;
    border-radius: 16px;
    transition: width 0.3s ease;
}

.onboarding-step h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.option-row {
    display: flex;
    gap: 14px;
}

.selectable-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #454a54;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #abb0ba;
}

.selectable-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.selectable-card.selected {
    border-color: #ff4d4d;
    color: white;
    background: rgba(255, 77, 77, 0.1);
}

.card-icon {
    width: 20px;
    height: 20px;
    background: #abb0ba;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon::before {
    content: '';
    width: 13px;
    height: 13px;
    background: #ff4d4d;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 8px •rgba(255, 255, 255, 0.5);
}

.selectable-card.selected .card-icon::before {
    opacity: 1;
}

.onboarding-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.btn-prev {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #5c6270;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: background 0.3s ease;
}

.btn-prev:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-next {
    background: #ff0000;
    border: none;
    color: white;
    padding: 12px 44px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: background 0.3s ease;
}

.btn-next:hover {
    background: #cc0000;
}

/* Slider */
.slider-container {
    width: 100%;
    padding: 20px 0;
}

.height-range {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
}

.height-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    margin-top: -8px;
}

.height-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: #420000;
    border-radius: 2px;
}

.slider-values {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: #abb0ba;
}

.current-height-display {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    color: white;
}

/* Onboarding Steps */
.bio-input {
    height: 128px;
    resize: none;
    line-height: 1.5;
}

.photo-upload-container {
    display: flex;
    align-items: center;
    gap: 24px;
}

.photo-preview-box {
    width: 176px;
    height: 173px;
    border-radius: 5px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.photo-preview-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-actions {
    display: flex;
    gap: 24px;
}

.icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

.crop-btn {
    background: white;
}

.upload-btn {
    background: #ff0000;
}

.quiz-otp-container {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

.otp-input {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #5c6270;
    border-radius: 8px;
    color: white;
    font-size: 24px;
    text-align: center;
    outline: none;
}

.otp-input:focus {
    border-color: #ff4d4d;
}

.checkbox-card .checkbox-icon {
    width: 20px;
    height: 20px;
    border: 1px solid #abb0ba;
    background: transparent;
    border-radius: 2px;
}

.checkbox-card.selected .checkbox-icon {
    /* background: #ff4d4d; */
    border-color: #ff4d4d;
}

.checkbox-card .checkbox-icon {
    width: 20px;
    height: 20px;
    background: #abb0ba;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-card .checkbox-icon::before {
    content: '';
    width: 13px;
    height: 13px;
    background: #ff4d4d;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.checkbox-card.selected .checkbox-icon::before {
    opacity: 1;
}

/* Crop Image Modal */
.crop-image-modal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
}

.crop-image-modal-content {
    position: relative;
    z-index: 10;
    width: 680px;
    height: 788px;
    background: #111111;
    border-radius: 24px;
    overflow: hidden;
}

.crop-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.crop-image-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.crop-image-inner {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.crop-photo-container {
    width: 100%;
    height: 100%;
    position: relative;
}

#crop-zoom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ff0000;
    cursor: pointer;
}

/* Custom Dropdown */
.customDropdown {
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    background: #0f0f10;
    border-radius: 12px;
    border: 1px solid rgba(69, 74, 84, 1);
    padding: 8px;
    margin-top: 8px;
    z-index: 100;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    height: 200px;
    overflow: auto;
}

.onboard-input {
    width: 100%;
    border: solid 1px rgba(92, 98, 112, 1);
    border-radius: 8px;
    background: transparent;
    padding: 16px;
    color: rgba(143, 149, 163, 1);
    font-weight: 400;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.onboard-input:focus {
    border-color: rgba(255, 77, 77, 0.5);
}

.sub-text {
    color: #abb0ba;
    font-size: 16px;
    margin-bottom: 16px;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .hero-inner {
        flex-direction: column;
    }

    /* .hero-image-wrap {
        width: 100%;
        height: 360px;
    } */

    .hero-title {
        font-size: 36px;
        line-height: 1.2;
        width: 100%;
    }

    .hero-left {
        margin-top: 100px;
        padding-inline: 20px;
    }

    .stats {
        gap: 40px;
    }

    .stat-value {
        font-size: 32px;
    }

    .site-header {
        padding: 16px 20px;
    }

    .search-box {
        width: auto;
        flex: 1;
    }

    .left-controls {
        width: auto;
    }

    .registerPopupContent {
        max-height: calc(100vh - 40px);
    }
}

@media (max-width: 768px) {
    .onboarding-flex {
        flex-direction: column;
    }

    .onboarding-left {
        width: 100%;
    }

    .onboarding-right {
        display: none;
    }

    .search-box .search-placeholder {
        display: none;
    }
}

@media (max-width: 767px) {
    .registerPopup {
        padding: 20px 16px;
        align-items: flex-start;
        padding-top: 20px;
    }

    .registerPopupContent {
        width: 100%;
        padding: 24px 20px;
        border-radius: 16px;
        max-height: calc(100vh - 40px);
    }

    .activationPopup {
        padding: 20px 16px;
        align-items: flex-start;
        padding-top: 20px;
    }

    .activationPopupContent {
        width: 100%;
        padding: 24px 20px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .search-box {
        order: 3;
        width: 100%;
    }

    .hero-title {
        font-size: 28px;
    }

    .btn-join {
        font-size: 16px;
        padding: 12px 32px;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* ==================== NEW SECTIONS ==================== */

/* Section Container */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 10;
}

/* Section Label */
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    border-width: 3px;
    border-style: solid;
    border-image: linear-gradient(to bottom, red, rgba(0, 0, 0, 0)) 1 100%;
    border-right: none;
    padding-left: 12px;
}

.section-label.center {
    justify-content: center;
}

.custom-center-border {
    width: fit-content;
    margin: auto auto 16px;
}

.label-bar {
    width: 4px;
    height: 20px;
    background: var(--accent);
    box-shadow: 0 0 15px rgba(220, 38, 38, 1);
}

.label-text {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Section Title */
.section-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin: 0;
}

.section-title.center {
    text-align: center;
    margin-bottom: 48px;
}

/* ==================== HOTLINE FEED ==================== */
.hotline-feed {
    position: relative;
    z-index: 10;
    padding: 80px 0;
    overflow: hidden;
    background: url('/Img/bg-hotline.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.ambient-bg {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    mix-blend-mode: screen;
}

.ambient-bg-left {
    top: 25%;
    left: 0;
    background: linear-gradient(to right, rgba(127, 29, 29, 0.3), transparent);
    transform: translateX(-50%);
    animation: pulse 4s ease-in-out infinite;
}

.ambient-bg-right {
    bottom: 0;
    right: 0;
    background: linear-gradient(to left, rgba(127, 29, 29, 0.2), transparent);
    transform: translateX(50%);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.section-header {
    margin-bottom: 48px;
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 768px) {
    .header-content {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.add-update-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 12px;
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-update-btn:hover {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Carousel */
.carousel-container {
    position: relative;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 48px;
    height: 48px;
    background: rgba(127, 29, 29, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--accent);
}

.carousel-prev {
    left: -50px;
}

.carousel-next {
    right: -50px;
}

.carousel-window {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease-out;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    background: #2a2a2a;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: #666;
}

.carousel-dot.active {
    width: 12px;
    height: 12px;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.6);
}

/* Feed Card */
.feed-card {
    flex-shrink: 0;
    width: calc(33.333% - 16px);
    background:
        linear-gradient(229.44deg, rgba(153, 0, 0, 0.455) 3.21%, rgba(153, 0, 0, 0.245) 27.53%, rgba(153, 0, 0, 0.161) 58.1%, rgba(153, 0, 0, 0.133) 71.16%, rgba(153, 0, 0, 0.105) 81.92%, rgba(153, 0, 0, 0.035) 95.66%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
}

.feed-card:hover {
    border-color: rgba(239, 68, 68, 0.3);
}

.feed-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.feed-user {
    display: flex;
    gap: 16px;
}

.feed-avatar {
    position: relative;
}

.feed-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #3f1f1f;
    background: #1a1a1a;
}

.feed-avatar .online-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 14px;
    height: 14px;
    background: #22c55e;
    border: 2px solid #150505;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

.feed-user-info h4 {
    font-weight: 700;
    color: white;
    font-size: 16px;
    margin: 0;
}

.feed-user-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #9ca3af;
    font-size: 12px;
    margin-top: 4px;
}

.feed-user-location svg {
    width: 12px;
    height: 12px;
    color: #6b7280;
}

.feed-time {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #9ca3af;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feed-time svg {
    width: 12px;
    height: 12px;
}

.feed-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feed-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: blur(3px);
    transition: all 0.7s ease;
}

.feed-card:hover .feed-media img {
    opacity: 0.7;
    filter: blur(0);
}

.feed-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.feed-play-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
    color: white;
    margin-left: 2px;
}

.feed-card:hover .feed-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(220, 38, 38, 0.9);
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
}

.feed-description {
    flex-grow: 1;
    color: #9ca3af;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feed-separator {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, transparent, rgba(127, 29, 29, 0.3), transparent);
    margin-bottom: 20px;
}

.feed-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feed-stats {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feed-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #9ca3af;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.feed-stat svg {
    width: 16px;
    height: 16px;
}

.feed-stat:hover {
    color: var(--accent-2);
}

.feed-join-btn {
    background: #320f0f;
    color: #ffadad;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 8px;
    border: 1px solid rgba(127, 29, 29, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.feed-join-btn:hover {
    background: #4a1515;
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.25);
}

/* ==================== RANKINGS SECTION ==================== */
.rankings-section {
    position: relative;
    z-index: 10;
    padding: 80px 0;
    background: #0d0d0f;
}

.rankings-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .rankings-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.rankings-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-tab {
    padding: 10px 24px;
    border-radius: 8px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.filter-tab.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
}

.see-more-btn {
    padding: 10px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Rankings Grid */
.rankings-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

@media (min-width: 640px) {
    .rankings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .rankings-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Ranking Card */
.ranking-card {
    position: relative;
    /* aspect-ratio: 3/4; */
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #1a1a1a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.ranking-card:hover {
    box-shadow: 0 10px 40px rgba(127, 29, 29, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
}

.ranking-card-bg {
    position: absolute;
    inset: 0;
    background: #111;
}

.ranking-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px);
    transform: scale(1.1);
    opacity: 0.6;
    transition: all 0.7s ease;
}

.ranking-card:hover .ranking-card-bg img {
    opacity: 0.5;
    filter: blur(4px);
}

.ranking-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, black, rgba(0, 0, 0, 0.4), transparent);
}

.ranking-online {
    position: absolute;
    /* top: 16px; */
    right: 16px;
    z-index: 20;
    width: 14px;
    height: 14px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
    /* border: 2px solid rgba(0, 0, 0, 0.3); */
}

.ranking-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    z-index: 20;
}

.ranking-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.ranking-name-row h4 {
    color: white;
    font-weight: 700;
    font-size: 20px;
    margin: 0;
}

.ranking-name-row .verified {
    color: #3b82f6;
}

.ranking-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d1d5db;
    font-size: 18px;
    margin-bottom: 20px;
}

.ranking-location svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

.ranking-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 16px;
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
}

.ranking-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #9ca3af;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.ranking-stat svg {
    width: 16px;
    height: 16px;
}

.ranking-stat:hover {
    color: var(--accent-2);
}

/* ==================== SAFETY & PRIVACY SECTION ==================== */
.safety-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.safety-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 0 0 60px;
    font-family: 'Poppins', sans-serif;
}

.safety-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    height: 350px;
}

@media screen and (max-width:1024px) {
    .safety-cards {
        height: 100%;
    }
}

@media (min-width: 1024px) {
    .safety-cards {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        gap: 40px;
    }
}

.safety-card {
    flex: 1;
    max-width: 550px;
    padding: 0 40px;
    background: url('/Img/card-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 12px;
}

.safety-card-label {
    display: inline-block;
    /* background: linear-gradient(90deg, rgba(127, 29, 29, 0.8), rgba(127, 29, 29, 0.4)); */
    background: url('/Img/Frame\ 1707478497.png');
    background-repeat: no-repeat;
    color: white;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    margin-top: 20px;
    margin-left: -70px;
    font-family: 'Poppins', sans-serif;
}

.safety-card-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.safety-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.safety-icon {
    flex-shrink: 0;
    color: #9ca3af;
    margin-top: 2px;
}

.safety-item span {
    font-size: 15px;
    color: #d1d5db;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.safety-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
    .safety-divider {
        width: 1px;
        height: auto;
        align-self: stretch;
    }
}

/* ==================== CONNECT WITH SINGLES SECTION ==================== */
.connect-section {
    padding: 80px 0;
    background: #111111;
}

.connect-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin: 0 0 24px;
    font-family: 'Poppins', sans-serif;
}

.connect-desc {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.8;
    margin: 0 0 48px;
    max-width: 1085px;
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

@media (min-width: 640px) {
    .connect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .connect-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.connect-card {
    background: #000000;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.connect-card:hover {
    transform: translateY(-4px);
}

.connect-card.highlight {
    /* background: linear-gradient(180deg, #1a1a1a 0%, rgba(127, 29, 29, 0.3) 100%); */
}

.connect-city {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin: 0 0 12px;
    font-family: 'Poppins', sans-serif;
}

.connect-members {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: #111111;
    position: relative;
    padding: 60px 60px 40px;
    overflow: hidden;
    background: url('/Img/Footer.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.footer-top-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: red;
}

.footer-smoke-bg {
    position: absolute;
    top: -31px;
    left: 0;
    width: 100%;
    height: 270px;
    background: linear-gradient(180deg, rgba(255, 0, 0, 0.15) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.footer-container {
    max-width: 1324px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: flex-start;
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo-wrap {
    padding: 24px 40px;
}

.footer-logo {
    width: 148px;
    height: auto;
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: 'Lato', sans-serif;
}

.footer-legal-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--accent);
}

.footer-center {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    flex: 1;
}

.footer-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 49px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: 'Lato', sans-serif;
}

.footer-column a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-contact-social {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-label,
.footer-social-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #71717a;
    margin: 0;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-contact-info p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: white;
    margin: 0;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-social-link:hover {
    color: var(--accent);
}

.footer-social-link svg {
    color: white;
}

@media (max-width: 1024px) {
    .site-footer {
        padding: 40px 24px;
    }

    .footer-content {
        gap: 40px;
    }

    .footer-links-grid {
        gap: 24px;
    }

    .footer-contact-social {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-center {
        flex-direction: column;
        gap: 24px;
    }

    .footer-links-grid {
        flex-direction: column;
    }

    .footer-contact-social {
        flex-direction: column;
    }

    .footer-logo-wrap {
        padding: 16px 0;
    }
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .section-container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .carousel-btn {
        display: none;
    }

    .feed-card {
        width: 100%;
    }

    .cta-title {
        font-size: 32px;
    }

    .footer-container {
        padding: 0 20px;
    }
}

@media (max-width: 640px) {
    .feed-card {
        width: 100%;
    }
}

/* ==================== GALLERY FEED ==================== */
.gallery-feed {
    padding: 80px 0;
    background: var(--bg);
    background: url('/Img/gallary-feed-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.gallery-controls {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

@media (min-width: 768px) {
    .gallery-controls {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.filter-group {
    display: flex;
    background: rgba(30, 30, 30, 0.5);
    padding: 4px;
    border-radius: 8px;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    background: transparent;
    color: var(--muted);
    transition: all 0.2s ease;
}

.gallery-filter:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.gallery-filter.active {
    background: var(--accent);
    color: white;
    box-shadow: 0 0 15px rgba(255, 0, 34, 0.4);
}

.sort-controls {
    display: flex;
    gap: 12px;
}

.sort-group {
    display: flex;
    background: rgba(30, 30, 30, 0.5);
    padding: 4px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sort-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    background: transparent;
    color: var(--muted);
    transition: all 0.2s ease;
}

.sort-btn.active {
    background: #2a1a1a;
    color: var(--accent);
    border-color: rgba(255, 0, 34, 0.2);
}

/* Filter Dropdown */
.filter-dropdown-wrapper {
    position: relative;
    z-index: 30;
}

.filter-icon-btn {
    width: 40px;
    height: 100%;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e1e1e;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-icon-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.filter-icon-btn.active {
    color: var(--accent);
    border-color: rgba(255, 0, 34, 0.5);
    background: rgba(255, 0, 34, 0.1);
}

.filter-dropdown-menu {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 8px;
    width: 192px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    backdrop-filter: blur(20px);
    z-index: 50;
    display: none;
    animation: filterSlideDown 0.2s ease-out forwards;
}

.filter-dropdown-menu.open {
    display: block;
}

@keyframes filterSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-dropdown-header {
    padding: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-dropdown-title {
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    padding: 0 8px;
    letter-spacing: 0.05em;
}

.filter-dropdown-content {
    padding: 4px;
}

.filter-dropdown-item {
    width: 100%;
    text-align: left;
    padding: 8px 12px;
    font-size: 14px;
    color: #d1d5db;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-dropdown-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.filter-dropdown-item-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-check-icon {
    display: none;
    color: var(--accent);
}

.filter-dropdown-item.active .filter-check-icon {
    display: block;
}

.gallery-carousel-wrapper {
    position: relative;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 40px;
    height: 40px;
    background: rgba(204, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-nav:hover {
    background: var(--accent);
}

.gallery-prev {
    left: -50px;
}

.gallery-next {
    right: -50px;
}

@media (min-width: 768px) {
    .gallery-nav {
        display: flex;
    }
}

.gallery-carousel {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-auto-flow: column;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 32px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    justify-content: start;
}

.gallery-carousel::-webkit-scrollbar {
    display: none;
}

.gallery-card {
    scroll-snap-align: start;
    width: 240px;
    height: 340px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-8px);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
}

.gallery-card-status {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 20;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    /* border: 2px solid #121212; */
}

.gallery-card-status.online {
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
}

.gallery-card-status.offline {
    background: #6b7280;
}

.gallery-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 8px 6px;
    z-index: 20;
}

.gallery-card-header {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.gallery-card-name {
    font-weight: 700;
    color: white;
    font-size: 18px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-card-verified {
    color: #3b82f6;
}

.gallery-card-stats {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 12px;
    font-weight: 500;
    color: #e5e7eb;
}

.gallery-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    /* background: rgba(0, 0, 0, 0.4); */
    padding: 4px 8px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

.gallery-stat svg {
    width: 14px;
    height: 14px;
}

.gallery-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.gallery-play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-play-btn {
    transform: scale(1.1);
}

.gallery-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.gallery-dot {
    height: 8px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: var(--accent);
    width: 24px;
}

.gallery-dot.inactive {
    background: #4a4a4a;
    width: 8px;
}

.view-more-container {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.view-more-btn {
    padding: 12px 32px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #d1d5db;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    color: white;
    border-color: var(--accent);
    background: rgba(255, 0, 34, 0.1);
}

/* ==================== EVENTS SECTION ==================== */
.events-section {
    padding: 80px 0;
    background: #000;
}

.events-carousel-wrapper {
    position: relative;
}

.events-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 40px;
    height: 40px;
    background: rgba(204, 0, 0, 0.5);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.events-nav:hover {
    background: var(--accent);
}

.events-prev {
    left: -50px;
}

.events-next {
    right: -50px;
}

@media (min-width: 768px) {
    .events-nav {
        display: flex;
    }
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
}

@media (min-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.event-card {
    background: rgba(0, 0, 0, 0);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(92, 98, 112, 0.2);
    transition: all 0.3s ease;
}

.event-card:hover {
    border-color: rgba(255, 0, 0, 0.3);
}

.event-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date-badge {
    position: absolute;
    top: 0;
    right: 12px;
    background: rgba(255, 0, 0, 0.5);
    padding: 8px 10px;
    text-align: center;
    font-family: 'Lato', sans-serif;
}

.event-date-month {
    font-size: 12px;
    color: #e3e5e8;
    font-weight: 600;
}

.event-date-day {
    font-size: 16px;
    color: white;
    font-weight: 600;
}

.event-date-year {
    font-size: 12px;
    color: #e3e5e8;
    font-weight: 600;
}

.event-views {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.55);
    padding: 8px 10px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: white;
    font-size: 13px;
    font-weight: 600;
}

.event-card-content {
    padding: 20px;
    background: linear-gradient(218deg, rgba(153, 0, 0, 0.16) 3%, rgba(153, 0, 0, 0.01) 96%), rgba(255, 255, 255, 0.07);
}

.event-badge {
    display: inline-block;
    background: #3c1315;
    color: #ff8587;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 40px;
    margin-bottom: 8px;
}

.event-title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0 0 8px;
    letter-spacing: 1px;
    height: 60px;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #c7cad1;
    font-size: 16px;
}

.event-meta-item svg {
    width: 24px;
    height: 24px;
    color: #ff4d4d;
}

.event-attendees {
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-attendee-avatars {
    display: flex;
    margin-right: 8px;
}

.event-attendee-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #111;
    margin-right: -8px;
    object-fit: cover;
}

.event-join-btn {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #5c6270;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-join-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
}

.events-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

/* ==================== NEWEST USERS ==================== */
.newest-users-section {
    padding: 80px 0;
    background: #000;
    position: relative;
    background: url('/Img/newest-user-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.newest-users-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1557683316-973673baf926?auto=format&fit=crop&q=80&w=1920') center/cover;
    opacity: 0.1;
}

.newest-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.newest-tab {
    padding: 12px 47px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid #5c6270;
    color: #8f95a3;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newest-tab:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.newest-tab.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.33);
}

.newest-carousel-wrapper {
    position: relative;
}

.newest-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 40px;
    height: 40px;
    background: rgba(204, 0, 0, 0.5);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newest-nav:hover {
    background: var(--accent);
}

.newest-prev {
    left: -50px;
}

.newest-next {
    right: -50px;
}

@media (min-width: 768px) {
    .newest-nav {
        display: flex;
    }
}

.newest-users-grid {
    display: flex;
    gap: 48px;
    flex-wrap: nowrap;
    position: relative;
    z-index: 1;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.newest-users-grid::-webkit-scrollbar {
    display: none;
}

.newest-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
}

.newest-dot {
    height: 8px;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #4a4a4a;
    width: 8px;
}

.newest-dot.active {
    background: var(--accent);
    width: 24px;
}

.newest-dot:hover {
    background: #9ca3af;
}

.newest-user-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    scroll-snap-align: start;
    flex: 0 0 auto;
}

.newest-user-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.newest-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newest-user-online {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 16px;
    height: 16px;
    background: #1aa61a;
    border-radius: 50%;
    border: 3px solid #000;
}

.newest-user-info {
    text-align: center;
}

.newest-user-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 24px;
    font-weight: 500;
    color: white;
    margin: 0 0 6px;
}

.newest-user-verified {
    color: #3b82f6;
}

.newest-user-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #8f95a3;
    font-size: 16px;
}

.newest-user-location svg {
    width: 20px;
    height: 20px;
    color: #ff4d4d;
}

.newest-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

/* ==================== PLATFORM SECTION ==================== */
.platform-section {
    padding: 80px 0;
    background: #111;
}

.platform-header {
    text-align: center;
    margin-bottom: 48px;
}

.platform-desc {
    color: #8f95a3;
    font-size: 16px;
    line-height: 1.8;
    max-width: 900px;
    margin: 16px auto 0;
}

.platform-banner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 48px;
}

@media (min-width: 1024px) {
    .platform-banner {
        grid-template-columns: 1fr 430px 1fr;
    }
}

.platform-banner-left,
.platform-banner-right {
    display: none;
    height: 496px;
    overflow: hidden;
}

@media (min-width: 1024px) {

    .platform-banner-left,
    .platform-banner-right {
        display: block;
    }
}

.platform-banner-left img,
.platform-banner-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.platform-banner-features {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: #111;
}

.platform-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.platform-feature-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    background: rgba(26, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4d4d;
}

.platform-feature-text h4 {
    font-size: 20px;
    color: white;
    margin: 0 0 6px;
}

.platform-feature-text p {
    font-size: 14px;
    color: #c7cad1;
    margin: 0;
    line-height: 1.5;
}

.platform-why {
    margin-bottom: 48px;
}

.platform-why-title {
    font-size: 56px;
    font-weight: 600;
    color: white;
    margin: 0 0 16px;
}

.platform-why-text {
    font-size: 16px;
    color: #c7cad1;
    line-height: 1.8;
    margin: 0 0 16px;
}

.platform-features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .platform-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .platform-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.platform-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 24px;
    padding: 32px;
    height: 294px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
}

.platform-card h4 {
    font-size: 18px;
    color: white;
    margin: 0 0 16px;
}

.platform-card p {
    font-size: 14px;
    color: #c7cad1;
    line-height: 1.8;
    margin: 0;
}

.platform-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(41, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4d4d;
    margin-top: 12px;
}

/* Testimonials */
.testimonials-section {
    margin-top: 48px;
}

.testimonials-title {
    font-size: 32px;
    font-weight: 600;
    color: white;
    text-align: center;
    margin: 0 0 32px;
}

.testimonials-carousel-wrapper {
    position: relative;
}

.testimonials-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 40px;
    height: 40px;
    background: rgba(204, 0, 0, 0.5);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-nav:hover {
    background: var(--accent);
}

.testimonials-prev {
    left: -50px;
}

.testimonials-next {
    right: -50px;
}

@media (min-width: 768px) {
    .testimonials-nav {
        display: flex;
    }
}

.testimonials-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonials-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
}

.testimonials-dot {
    height: 8px;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #4a4a4a;
    width: 8px;
}

.testimonials-dot.active {
    background: var(--accent);
    width: 24px;
}

.testimonials-dot:hover {
    background: #9ca3af;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* flex: 0 0 auto; */
    min-width: 300px;
    scroll-snap-align: start;
}

@media (min-width: 768px) {
    .testimonial-card {
        min-width: 350px;
    }
}

.testimonial-content {
    height: 240px;
    background: #000;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin-bottom: -17px;
    position: relative;
}

.testimonial-text {
    font-size: 16px;
    color: white;
    line-height: 1.7;
    margin: 0 0 16px;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testimonial-star {
    color: #ffa306;
}

.testimonial-arrow {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #000;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h5 {
    font-size: 18px;
    color: white;
    margin: 0 0 2px;
}

.testimonial-info p {
    font-size: 16px;
    color: #c7cad1;
    margin: 0;
}

@media (max-width: 768px) {
    .platform-why-title {
        font-size: 32px;
    }
}

/* ==================== SIDEBAR ==================== */
.sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    width: 300px;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #222;
    flex-shrink: 0;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.3);
}

.sidebar.open {
    transform: translateX(0);
}

.sidebar-header {
    padding: 24px;
}

.btn-people-online {
    width: 100%;
    background: linear-gradient(180deg, #7f1d1d 0%, #450a0a 100%);
    border: 1px solid #ef4444;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.1s, background 0.2s;
}

.btn-people-online:active {
    transform: scale(0.98);
}

.btn-people-online:hover {
    background: linear-gradient(180deg, #991b1b 0%, #7f1d1d 100%);
}

.sidebar .icon-fill {
    fill: white;
    stroke: none;
}

.sidebar-nav {
    flex: 1;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar .nav-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 12px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s;
    font-size: 15px;
    font-weight: 500;
}

.sidebar .nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.sidebar .nav-icon {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.sidebar-footer {
    background-color: #151515;
    padding: 24px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.stat-icon {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
    stroke-width: 1.5;
    margin-top: 2px;
    flex-shrink: 0;
}

.stat-text {
    font-size: 14px;
    line-height: 1.4;
    color: #e5e5e5;
}

.stat-highlight {
    color: #fff;
    font-weight: 600;
}

body.sidebar-open {
    overflow: hidden;
}

/* ==================== COMPLETE YOUR PROFILE BUTTON ==================== */
.profile-complete-btn {
    position: absolute;
    right: 90px;
    bottom: 35%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 32px;
    width: 290px;
    border-radius: 60px;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.2), rgba(255, 77, 77, 0.1));
    border: 2px solid #ff0000;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.profile-complete-btn:hover {
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.3), rgba(255, 77, 77, 0.2));
}

.profile-progress-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: conic-gradient(white 126deg, rgba(255, 255, 255, 0.2) 0deg);
}

.profile-progress-inner {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #6e0808;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-progress-text {
    font-size: 10px;
    font-weight: 600;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.profile-complete-text {
    font-size: 14px;
    font-weight: 500;
    color: white;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 1024px) {
    .profile-complete-btn {
        right: 24px;
        bottom: 10%;
        width: auto;
        padding: 10px 24px;
    }
}

@media (max-width: 768px) {
    .profile-complete-btn {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 20px auto 0;
        width: fit-content;
    }
}

/* ==================== NEARBY USERS PAGE ==================== */
.nearby-users-page {
    min-height: 100vh;
    background: #0a0a0a;
    padding: 80px 0 80px;
}

.nearby-users-page.hidden {
    display: none;
}

/* Nearby Users Header */
.nearby-users-header {
    margin-bottom: 32px;
}

.nearby-users-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin: 0 0 32px;
    font-family: 'Poppins', sans-serif;
}

.nearby-users-title span {
    position: relative;
    z-index: 1;
}

.nearby-users-title .title-icon {
    position: absolute;
    left: 320px;
    width: 54px;
    height: 54px;
    color: #ff0000;
}

/* Nearby Users Controls */
.nearby-users-controls {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nearby-controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

/* Filter Tabs */
.nearby-filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.nearby-tab {
    padding: 12px 28px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.nearby-tab:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.nearby-tab.active {
    background: #ff0000;
    border-color: #ff0000;
    color: white;
}

/* Search Controls */
.nearby-search-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.nearby-search-box {
    position: relative;
    width: 280px;
}

.nearby-search-box input {
    width: 100%;
    padding: 14px 48px 14px 20px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: all 0.2s ease;
}

.nearby-search-box input::placeholder {
    color: #6b7280;
}

.nearby-search-box input:focus {
    border-color: rgba(255, 255, 255, 0.3);
}

.nearby-search-box .search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    pointer-events: none;
}

.nearby-filter-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nearby-filter-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Active Tags Row */
.nearby-tags-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.nearby-active-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nearby-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.nearby-tag .remove-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nearby-tag .remove-tag:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nearby-tag .remove-tag svg {
    width: 10px;
    height: 10px;
}

.nearby-clear-all {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 0;
    font-family: 'Poppins', sans-serif;
}

.nearby-clear-all:hover {
    text-decoration: underline;
}

.nearby-clear-all svg {
    width: 16px;
    height: 16px;
}

/* Nearby Users Grid */
.nearby-users-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-top: 24px;
}

@media (max-width: 1200px) {
    .nearby-users-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .nearby-users-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .nearby-users-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Nearby User Card */
.nearby-user-item {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
    background: #1a1a1a;
}

.nearby-user-item:hover .nearby-user-overlay {
    opacity: 1;
}

.nearby-user-item:hover .nearby-user-image {
    transform: scale(1.05);
}

.nearby-user-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.nearby-user-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 100%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Video Play Button */
.nearby-user-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.nearby-user-item:hover .nearby-user-play {
    background: rgba(255, 0, 0, 0.8);
    border-color: rgba(255, 0, 0, 0.5);
    transform: translate(-50%, -50%) scale(1.1);
}

.nearby-user-play svg {
    width: 24px;
    height: 24px;
    fill: white;
    margin-left: 3px;
}

/* Online Status */
.nearby-user-online {
    position: absolute;
    bottom: 20px;
    right: 16px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border: 2px solid #0a0a0a;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

/* Nearby User Info */
.nearby-user-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nearby-user-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nearby-user-details {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nearby-user-name {
    color: white;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.nearby-user-verified {
    width: 18px;
    height: 18px;
    color: #3b82f6;
}

.nearby-user-follow {
    padding: 6px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: white;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.nearby-user-follow:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.nearby-user-stats {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nearby-user-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    color: white;
    font-size: 13px;
    font-weight: 500;
}

.nearby-user-stat svg {
    width: 16px;
    height: 16px;
}

.nearby-user-stat.likes svg {
    color: #ff4d4d;
    fill: #ff4d4d;
}

.nearby-user-stat.comments svg {
    color: #9ca3af;
}

/* Watermark */
.nearby-user-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

/* Filter Sidebar */
.filter-sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-sidebar-backdrop.hidden {
    display: none;
}

.filter-sidebar-backdrop:not(.hidden) {
    opacity: 1;
}

.filter-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background: #1a1a1a;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.filter-sidebar.hidden {
    transform: translateX(100%);
}

.filter-sidebar:not(.hidden) {
    transform: translateX(0);
}

.filter-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-sidebar-header h3 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.filter-close-btn {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s ease;
}

.filter-close-btn:hover {
    color: white;
}

.filter-sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.filter-sidebar-footer {
    display: flex;
    gap: 12px;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-sidebar-footer .btn-cancel {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-sidebar-footer .btn-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
}

.filter-sidebar-footer .btn-apply {
    flex: 1;
    padding: 12px;
    background: #ff0000;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-sidebar-footer .btn-apply:hover {
    background: #cc0000;
}

/* Red Checkbox */
.red-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: white;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    user-select: none;
}

.red-checkbox input[type="checkbox"] {
    display: none;
}

.red-checkbox .checkMark {
    width: 20px;
    height: 20px;
    border: 2px solid #ff0000;
    border-radius: 4px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.red-checkbox input[type="checkbox"]:checked+.checkMark {
    background: #ff0000;
}

.red-checkbox input[type="checkbox"]:checked+.checkMark::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .nearby-users-title {
        font-size: 32px;
    }

    .nearby-users-title .title-icon {
        left: 220px;
        width: 36px;
        height: 36px;
    }

    .nearby-controls-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .nearby-filter-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        width: 100%;
    }

    .nearby-search-controls {
        width: 100%;
        /* flex-direction: column; */
        justify-content: space-between;
        align-items: stretch;
    }

    .nearby-search-box {
        width: 100%;
    }

    .filter-sidebar {
        width: 100%;
    }
}

/* ==================== GALLERY PAGE ==================== */
.gallery-page {
    min-height: 100vh;
    background: #0a0a0a;
    padding: 80px 0 80px;
}

.gallery-page.hidden {
    display: none;
}

/* Gallery Header */
.gallery-page-header {
    margin-bottom: 32px;
}

.gallery-page-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin: 0 0 32px;
    font-family: 'Poppins', sans-serif;
}

.gallery-page-title span {
    position: relative;
    z-index: 1;
}

.gallery-page-title .title-icon {
    position: absolute;
    left: 195px;
    width: 54px;
    height: 54px;
    color: #ff0000;
}

/* Gallery Controls */
.gallery-page-controls {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gallery-controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

/* Filter Pills */
.gallery-filter-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gallery-pill {
    padding: 10px 20px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.gallery-pill:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.gallery-pill.active {
    background: #ff0000;
    border-color: #ff0000;
    color: white;
}

/* Sort Controls */
.gallery-sort-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-toggle-group {
    display: flex;
    background: #1a1a1a;
    border-radius: 8px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sort-toggle-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.sort-toggle-btn:hover {
    color: white;
}

.sort-toggle-btn.active {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
}

.sort-toggle-btn svg {
    width: 16px;
    height: 16px;
}

.gallery-filter-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gallery-filter-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Active Tags Row */
.gallery-tags-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.gallery-active-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.gallery-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.gallery-tag .remove-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gallery-tag .remove-tag:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-tag .remove-tag svg {
    width: 10px;
    height: 10px;
}

.gallery-clear-all {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 0;
    font-family: 'Poppins', sans-serif;
}

.gallery-clear-all:hover {
    text-decoration: underline;
}

.gallery-clear-all svg {
    width: 16px;
    height: 16px;
}

/* Gallery Grid */
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-top: 24px;
}

@media (max-width: 1200px) {
    .gallery-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-page-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Gallery Item Card */
.gallery-item {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
    background: #1a1a1a;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-item-image {
    transform: scale(1.05);
}

.gallery-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 100%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Video Play Button */
.gallery-item-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-item-play {
    background: rgba(255, 0, 0, 0.8);
    border-color: rgba(255, 0, 0, 0.5);
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-item-play svg {
    width: 24px;
    height: 24px;
    fill: white;
    margin-left: 3px;
}

/* Online Status */
.gallery-item-online {
    position: absolute;
    bottom: 20px;
    right: 16px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border: 2px solid #0a0a0a;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

/* Gallery Item Info */
.gallery-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gallery-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gallery-item-user {
    display: flex;
    align-items: center;
    gap: 6px;
}

.gallery-item-name {
    color: white;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.gallery-item-verified {
    width: 18px;
    height: 18px;
    color: #3b82f6;
}

.gallery-item-follow {
    padding: 6px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: white;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.gallery-item-follow:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.gallery-item-stats {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gallery-item-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    color: white;
    font-size: 13px;
    font-weight: 500;
}

.gallery-item-stat svg {
    width: 16px;
    height: 16px;
}

.gallery-item-stat.likes svg {
    color: #ff4d4d;
    fill: #ff4d4d;
}

.gallery-item-stat.comments svg {
    color: #9ca3af;
}

/* Watermark */
.gallery-item-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

/* Gallery Page Responsive */
@media (max-width: 768px) {
    .gallery-page-title {
        font-size: 32px;
    }

    .gallery-page-title .title-icon {
        width: 36px;
        height: 36px;
    }

    .gallery-controls-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-filter-pills {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        width: 100%;
    }
}

/* ==================== PEOPLE ONLINE PAGE ==================== */
.people-online-view {
    padding: 80px 0 80px;
    min-height: 100vh;
    background: #0a0a0a;
}

.people-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.people-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.people-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin: 0 0 32px;
    font-family: 'Poppins', sans-serif;
}

.people-title span {
    position: relative;
    z-index: 1;
}

.people-title .title-icon {
    position: absolute;
    left: 330px;
    width: 54px;
    height: 54px;
    color: #ff0000;
}

.people-controls {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.people-controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.people-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.people-filter {
    padding: 12px 32px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: #9ca3af;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    min-width: 100px;
}

.people-filter:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.people-filter.active {
    background: #ff0000;
    border-color: #ff0000;
    color: white;
    font-weight: 500;
}

.filter-icon-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-icon-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.people-search {
    position: relative;
    width: 320px;
}

.people-search input {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 48px 12px 20px;
    color: white;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    height: 48px;
}

.people-search input::placeholder {
    color: #9ca3af;
}

.people-search input:focus {
    border-color: rgba(255, 255, 255, 0.3);
}

.people-search .search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    pointer-events: none;
}

.people-toggle {
    display: flex;
    align-items: center;
}

.people-active-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.active-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #9ca3af;
    font-size: 14px;
    cursor: default;
}

.active-tag .close-tag {
    cursor: pointer;
    font-size: 16px;
    color: #6b7280;
    line-height: 1;
}

.active-tag .close-tag:hover {
    color: white;
}

.people-clear-all {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: white;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.people-clear-all .close-icon {
    font-size: 18px;
}

.people-clear-all:hover {
    text-decoration: underline;
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    row-gap: 74px;
    padding-top: 40px;
}

@media (max-width: 1200px) {
    .people-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .people-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .people-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.people-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    margin-top: 30px;
}

.people-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.people-avatar-wrapper {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    z-index: 10;
}

.people-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 0 solid #1a1a1a;
}

.people-online-dot {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 16px;
    height: 16px;
    background: #22c55e;
    border: 2px solid #1a1a1a;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #1a1a1a;
}

.people-card-content {
    width: 100%;
    text-align: left;
    margin-top: 64px;
}

.people-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.people-name {
    font-size: 20px;
    font-weight: 600;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.people-verified {
    color: #3b82f6;
    display: flex;
    align-items: center;
}

.people-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.people-location svg {
    color: #ff0000;
}

.people-followed-by {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

.people-action-row {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.btn-follow {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-follow:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

@media (max-width: 768px) {
    .people-title {
        font-size: 32px;
    }

    .people-title svg {
        height: 48px !important;
        left: 220px !important;
    }

    .people-controls-row {
        /* flex-direction: column; */
        align-items: flex-start;
    }

    .people-search {
        width: 100%;
    }

    .people-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        width: 100%;
    }
}

/* ==================== RANKINGS SECTION ==================== */
.rankings-section {
    position: relative;
    z-index: 10;
    padding: 80px 0;
    background: #0d0d0f;
}

.rankings-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .rankings-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.rankings-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-tab {
    padding: 10px 24px;
    border-radius: 8px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.filter-tab.active {
    background: #cc0000;
    color: white;
    border-color: #cc0000;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
}

.see-more-btn {
    padding: 10px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Rankings Grid */
.rankings-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

@media (min-width: 640px) {
    .rankings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .rankings-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Ranking Card */
.ranking-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #1a1a1a;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ranking-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
}

.ranking-card:hover .ranking-card-image {
    transform: scale(1.05);
}

/* Rank Badge */
/* .ranking-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #82671C99;
    backdrop-filter: blur(4px);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
    background: url(../Img/rank-triangle.svg);
} */

/* Card Image */
.ranking-card-image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.ranking-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ranking-online {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 2;
    width: 14px;
    height: 14px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
    /* border: 3px solid #1a1a1a; */
}

/* Card Info */
.ranking-card-info {
    padding: 14px 12px;
    background: #1a1a1a;
}

.ranking-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.ranking-name-row h4 {
    color: white;
    font-weight: 600;
    font-size: 20px;
    margin: 0;
}

.ranking-name-row .verified {
    flex-shrink: 0;
}

.ranking-location {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #9ca3af;
    font-size: 18px;
    margin-bottom: 8px;
}

.ranking-location svg {
    width: 14px;
    height: 14px;
    color: #ff0000;
}

.ranking-stats {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.ranking-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #9ca3af;
    font-size: 18px;
    font-weight: 500;
}

.ranking-stat svg {
    width: 16px;
    height: 16px;
}

.ranking-stat.likes svg {
    color: #ff6b8a;
    stroke: #ff6b8a;
}

.ranking-stat.comments svg {
    color: #ff6b8a;
    stroke: #ff6b8a;
}

/* ==================== RANKINGS PAGE ==================== */
.rankings-page {
    min-height: 100vh;
    background: #0a0a0a;
    padding: 40px 0 80px;
}

.rankings-page.hidden {
    display: none;
}

/* Rankings Header */
.rankings-page-header {
    margin-bottom: 32px;
}

.rankings-page-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin: 0 0 32px;
    font-family: 'Poppins', sans-serif;
}

.rankings-page-title span {
    position: relative;
    z-index: 1;
}

.rankings-page-title .title-icon {
    position: absolute;
    left: 210px;
    width: 54px;
    height: 54px;
    color: #ff0000;
}

/* Rankings Controls */
.rankings-page-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Filter Tabs Row */
.rankings-controls-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
}

.rankings-filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.rankings-tab {
    padding: 12px 28px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.rankings-tab:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.rankings-tab.active {
    background: #ff0000;
    border-color: #ff0000;
    color: white;
}

/* Dropdowns Row */
.rankings-dropdowns-row,
.rankings-dropdowns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.rankings-dropdown {
    position: relative;
}

.dropdown-btn,
.date-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.dropdown-btn:hover,
.date-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.dropdown-btn svg,
.date-btn svg {
    opacity: 0.7;
}

.rankings-dropdown-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #9ca3af;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.rankings-dropdown-select {
    width: 100%;
    padding: 14px 48px 14px 16px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #6b7280;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    appearance: none;
    outline: none;
    transition: all 0.2s ease;
}

.rankings-dropdown-select:hover,
.rankings-dropdown-select:focus {
    border-color: rgba(255, 255, 255, 0.3);
}

.rankings-dropdown-icon {
    position: absolute;
    right: 16px;
    bottom: 14px;
    color: #6b7280;
    pointer-events: none;
}

/* Date Picker */
.rankings-date-picker {
    position: relative;
    min-width: 280px;
}

.rankings-date-input {
    width: 100%;
    padding: 14px 48px 14px 16px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #6b7280;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
}

.rankings-date-input:hover,
.rankings-date-input:focus {
    border-color: rgba(255, 255, 255, 0.3);
}

.rankings-date-input::placeholder {
    color: #6b7280;
}

.rankings-date-icon {
    position: absolute;
    right: 16px;
    bottom: 14px;
    color: #6b7280;
    pointer-events: none;
}

/* Category Pills Row */
.rankings-category-row {
    margin-top: 8px;
}

.rankings-category-pills {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    padding: 10px 0;
    overflow-x: auto;
}

.rankings-category-pill,
.category-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.category-pill-icon {
    margin-right: 12px;
}

.rankings-category-pill:hover,
.category-pill:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.rankings-category-pill.active,
.category-pill.active {
    background: #ff0000;
    border-color: #ff0000;
    color: white;
}

.rankings-category-pill svg,
.category-pill svg {
    width: 16px;
    height: 16px;
}

/* Rankings Grid */
.rankings-page-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 24px;
}

@media (max-width: 1400px) {
    .rankings-page-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1100px) {
    .rankings-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .rankings-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .rankings-page-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Ranking Card */
.ranking-card {
    position: relative;
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ranking-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
}

.ranking-card:hover .ranking-card-image {
    transform: scale(1.05);
}

/* Rank Badge */
.ranking-badge {
    position: absolute;
    top: 0;
    left: 0;
    backdrop-filter: blur(4px);
    color: white;
    font-size: 22px;
    font-weight: 700;
    padding: 4px 12px;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
    background: url(../Img/rank-triangle.svg);
    background-repeat: no-repeat;
    background-size: contain;
    height: 90px;
    width: 90px;
}

.red-badge {
    background: url(../Img/rank-triangle-red.svg) !important;
}

/* Card Image */
.ranking-card-image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.ranking-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Online Indicator */
.ranking-card-online {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 14px;
    height: 14px;
    background: #22c55e;
    border: 3px solid #1a1a1a;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    z-index: 2;
}

/* Card Info */
.ranking-card-info {
    padding: 14px 12px;
    background: #1a1a1a;
}

.ranking-card-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.ranking-card-name {
    color: white;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.ranking-card-age {
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.ranking-card-verified {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.ranking-card-location {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #9ca3af;
    font-size: 18px;
    margin-bottom: 8px;
}

.ranking-card-location svg {
    width: 14px;
    height: 14px;
    color: #ff0000;
}

.ranking-card-stats {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.ranking-card-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 500;
}

.ranking-card-stat svg {
    width: 16px;
    height: 16px;
}

.ranking-card-stat.likes svg {
    color: #ff6b8a;
    fill: none;
    stroke: #ff6b8a;
    stroke-width: 2;
}

.ranking-card-stat.comments svg {
    color: #60a5fa;
    fill: none;
    stroke: #60a5fa;
    stroke-width: 2;
}

/* Pagination */
.rankings-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination-btn,
.page-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.pagination-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.pagination-btn.active {
    background: #ff0000;
    border-color: #ff0000;
    color: white;
}

.pagination-btn.nav {
    background: #1a1a1a;
}

.pagination-btn.nav:hover {
    background: #252525;
}

.pagination-btn svg {
    width: 16px;
    height: 16px;
}

.pagination-ellipsis {
    color: #9ca3af;
    font-size: 14px;
    padding: 0 4px;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 4px;
}

.page-num {
    width: 36px;
    height: 36px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
}

.page-num:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.page-num.active {
    background: #ff0000;
    border-color: #ff0000;
    color: white;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .rankings-page-title {
        font-size: 32px;
    }

    .rankings-page-title .title-icon {
        width: 36px;
        height: 36px;
    }

    .rankings-dropdowns-row {
        flex-direction: column;
    }

    .rankings-dropdown,
    .rankings-date-picker {
        min-width: 100%;
    }

    .rankings-category-pills {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }
}

/* ==================== PROFILE PAGE ==================== */
.profile-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.profile-header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
    background: #000;
    padding: 24px;
}

.profile-header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.profile-avatar-large {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    --progress: 54;
}

.profile-avatar-large::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        conic-gradient(from 270deg at 50% 50%,
            #ff4d4d calc(var(--progress) * 1%),
            #ff4d4d calc(var(--progress) * 1%),
            #3a3a4a calc(var(--progress) * 1%),
            #3a3a4a 100%);
    transform: rotate(-90deg);
    z-index: 1;
}

.profile-avatar-large::after {
    content: '';
    position: absolute;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    border-radius: 50%;
    background: #0d0d0f;
    z-index: 2;
}

.profile-avatar-large img {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border-radius: 50%;
    object-fit: cover;
    border: none;
    position: relative;
    z-index: 3;
}

.profile-avatar-initial {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
    font-family: 'Poppins', sans-serif;
}

.profile-edit-badge {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff0000;
    color: white;
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 10px;
    font-weight: 500;
    z-index: 3;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-name-row h1 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: white;
}

.profile-name-row .verified-icon {
    flex-shrink: 0;
}

.profile-name-row .edit-profile-icon {
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
}

.profile-stats-row {
    display: flex;
    gap: 24px;
}

.profile-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-stat .stat-number {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.profile-stat .stat-label {
    font-size: 13px;
    color: #9ca3af;
}

.profile-header-right {
    display: flex;
    gap: 12px;
}

.btn-verify {
    background: transparent;
    border: 1px solid #444;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s;
}

.btn-verify:hover {
    border-color: #666;
    background: rgba(255, 255, 255, 0.05);
}

.btn-complete-profile {
    background: transparent;
    border: 1px solid #444;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s;
}

.btn-complete-profile:hover {
    border-color: #666;
    background: rgba(255, 255, 255, 0.05);
}

/* Profile Tabs */
.profile-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 50px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.profile-tab {
    background: transparent;
    border: 1px solid #333;
    color: #9ca3af;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    transition: all 0.2s;
}

.profile-tab:hover {
    border-color: #555;
    color: white;
}

.profile-tab.active {
    background: #ff0000;
    border-color: #ff0000;
    color: white;
}

/* Profile Content Layout */
.profile-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Profile Sidebar */
.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #FFFFFF0A;
    padding: 24px;
    border-radius: 16px;
}

.profile-card {
    background: transparent;
    padding: 0;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.card-title.text-red {
    color: #ff4d4d;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d1d5db;
    font-size: 13px;
}

.contact-item svg {
    color: #9ca3af;
    flex-shrink: 0;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-item {
    display: flex;
    font-size: 13px;
}

.about-label {
    color: #9ca3af;
    min-width: auto;
    margin-right: 6px;
}

.about-value {
    color: white;
}

.description-text {
    color: #d1d5db;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.see-more {
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.plan-card-sidebar {
    background: linear-gradient(229.44deg, rgba(255, 0, 0, 0.2) 3.21%, rgba(255, 0, 0, 0.136) 14.33%, rgba(255, 0, 0, 0.08) 32.1%, rgba(255, 0, 0, 0.02) 73.44%, rgba(255, 0, 0, 0) 95.66%);
    border: 1px solid #3a0d0d;
    border-radius: 16px;
    padding: 20px;
    margin-top: 10px;
}

.plan-label-sidebar {
    color: #ff4d4d;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 10px 0;
}

.plan-name-sidebar {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

/* Profile Main Content */
.profile-main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-section {
    display: flex;
    flex-direction: column;
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    color: white;
    margin: 0 0 16px 0;
}

.section-title-profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title-profile span {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.empty-content-box {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-content-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #444;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s;
}

.add-content-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #666;
}

/* Profile Page Responsive */
@media (max-width: 900px) {
    .profile-content {
        grid-template-columns: 1fr;
    }

    .profile-sidebar {
        order: 2;
    }

    .profile-main-content {
        order: 1;
    }
}

@media (max-width: 600px) {
    .profile-header-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-header-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .profile-stats-row {
        justify-content: center;
    }

    .profile-header-right {
        width: 100%;
        justify-content: center;
    }

    .profile-tabs {
        gap: 6px;
    }

    .profile-tab {
        padding: 6px 12px;
        font-size: 12px;
    }
}

.gallery-star {
    position: absolute;
    top: 10px;
    right: 10px;
}

.custom-width-gallery-card {
    width: 200px !important;
}

.carousel-container-profile {
    margin-top: 20px;
}

.custom-feed-card {
    width: calc(100% / 2 - 16px) !important;
}

.custom-event-card {
    width: calc(100% / 2 - 16px) !important;
}

.post-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.post-user-info {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.post-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.post-user-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.post-username {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: white;
    font-size: 14px;
}

.post-timestamp {
    font-size: 12px;
    color: #999;
}

.post-menu-btn {
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.post-menu-btn:hover {
    color: #999;
}

.post-description {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.post-media {
    width: 100%;
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
    /* max-height: 300px; */
}

.post-media img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    display: block;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #222;
}

.post-stats {
    display: flex;
    gap: 24px;
}

.post-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #999;
    font-size: 13px;
}

.post-stat svg {
    width: 16px;
    height: 16px;
}

.post-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #FF4D4D;
    font-size: 13px;
}

/* Add Media Modal Styles */
.add-media-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 40px;
}

.add-media-modal-overlay.hidden {
    display: none !important;
}

.add-media-modal-content {
    background: #1a1a1a;
    border-radius: 12px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.add-media-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #333;
}

.add-media-cancel-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    padding: 0;
    transition: opacity 0.2s;
}

.add-media-cancel-btn:hover {
    opacity: 0.7;
}

.add-media-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    flex: 1;
    text-align: center;
}

.add-media-post-btn {
    background: transparent;
    border: none;
    color: #FF4D4D;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    padding: 0;
    transition: opacity 0.2s;
}

.add-media-post-btn:hover {
    opacity: 0.7;
}

.add-media-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.add-media-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-right: 1px solid #333;
    background: #141414;
}

.add-media-right {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: 500px;
    overflow: auto;
    padding: 24px;
    background: #1a1a1a;
}

.add-media-upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    padding: 40px;
    width: 100%;
}

.add-media-upload-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    color: #666;
}

.add-media-upload-text {
    color: #888;
    font-size: 14px;
    margin: 0 0 20px 0;
}

.add-media-select-btn {
    background: #333;
    border: none;
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s;
}

.add-media-select-btn:hover {
    background: #444;
}

.add-media-preview {
    width: 100%;
    padding: 20px;
}

.add-media-preview-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
}

.add-media-preview-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #222;
}

.add-media-preview-item img,
.add-media-preview-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.add-media-preview-item-remove {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.add-media-image-preview {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.add-media-preview-img {
    width: 100%;
    height: 400px;
    object-fit: contain;
}

.add-media-change-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.add-media-change-btn:hover {
    background: rgba(255, 77, 77, 0.6);
}

.add-media-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.add-media-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.add-media-user-details {
    display: flex;
    align-items: center;
    gap: 8px;
}

.add-media-username {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.add-media-verified {
    width: 18px;
    height: 18px;
}

.add-media-description {
    position: relative;
    margin-bottom: 16px;
}

.add-media-description-input {
    width: 100%;
    min-height: 140px;
    background: #222;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    padding: 16px;
    padding-bottom: 40px;
    outline: none;
    font-family: 'Poppins', sans-serif;
    resize: none;
}

.add-media-description-input::placeholder {
    color: #666;
}

.add-media-description-input:focus {
    border-color: #444;
}

.add-media-emoji-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.add-media-emoji-btn:hover {
    opacity: 0.7;
}

.add-media-input-row {
    position: relative;
    margin-bottom: 16px;
}

.add-media-tag-input,
.add-media-location-input {
    width: 100%;
    background: #222;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    padding: 14px 16px;
    padding-right: 44px;
    font-size: 14px;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.add-media-tag-input::placeholder,
.add-media-location-input::placeholder {
    color: #666;
}

.add-media-tag-input:focus,
.add-media-location-input:focus {
    border-color: #444;
}

.add-media-input-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Input wrapper for proper icon positioning */
.input-with-icon-wrapper {
    position: relative;
    width: 100%;
}

/* Tags Chips and Search Dropdown */
.tags-chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.tag-chip {
    display: flex;
    align-items: center;
    background: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid rgba(255, 77, 77, 0.2);
}

.tag-chip .remove-tag {
    margin-left: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    line-height: normal;
    transition: color 0.2s, transform 0.2s;
}

.tag-chip .remove-tag:hover {
    color: #ff3333;
    transform: scale(1.1);
}

.tags-chips-container:empty {
    display: none;
    margin-bottom: 0;
}

.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border: 1px solid #333;
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.dropdown-item {
    padding: 10px 16px;
    cursor: pointer;
    color: #ccc;
    font-size: 14px;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: rgba(255, 77, 77, 0.1);
    color: #fff;
}

.add-media-settings-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 16px;
    padding: 12px 0;
}

.add-media-radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.add-media-radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #FF4D4D;
    margin: 0;
}

.add-media-radio-option label {
    color: #999;
    font-size: 13px;
    cursor: pointer;
}

.add-media-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
}

.add-media-privacy-options {
    display: flex;
    align-items: center;
    gap: 20px;
}

.add-media-album-dropdown {
    position: relative;
}

.add-media-album-select {
    background: #333;
    border: none;
    border-radius: 6px;
    color: #fff;
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    transition: background 0.2s;
}

.add-media-album-select:hover {
    background: #444;
}

.add-media-album-dropdown-menu {
    position: absolute;
    bottom: 100%;
    right: 0;
    width: 160px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    margin-bottom: 8px;
    z-index: 10;
    overflow: hidden;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.add-media-album-dropdown-menu.hidden {
    display: none;
}

.add-media-album-item {
    padding: 12px 16px;
    color: #ccc;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
}

.add-media-album-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.add-media-create-album-btn {
    width: 100%;
    background: transparent;
    border-top: 1px solid #444;
    border-left: none;
    border-right: none;
    border-bottom: none;
    color: #FF4D4D;
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: background 0.2s;
}

.add-media-create-album-btn:hover {
    background: rgba(255, 77, 77, 0.1);
}

@media (max-width: 768px) {
    .add-media-modal-content {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .add-media-body {
        flex-direction: column;
    }

    .add-media-left,
    .add-media-right {
        width: 100%;
    }

    .add-media-left {
        border-right: none;
        border-bottom: 1px solid #333;
        padding: 24px;
    }
}

/* Edit Info Modal Styles */
.edit-info-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 40px;
}

.edit-info-modal-overlay.hidden {
    display: none !important;
}

.edit-info-modal-content {
    background: #1a1a1a;
    border-radius: 12px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.edit-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #333;
}

.edit-info-cancel-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    padding: 0;
    transition: opacity 0.2s;
}

.edit-info-cancel-btn:hover {
    opacity: 0.7;
}

.edit-info-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    flex: 1;
    text-align: center;
}

.edit-info-done-btn {
    background: transparent;
    border: none;
    color: #FF4D4D;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    padding: 0;
    transition: opacity 0.2s;
}

.edit-info-done-btn:hover {
    opacity: 0.7;
}

.edit-info-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.edit-info-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-right: 1px solid #333;
    background: #141414;
}

.edit-info-image-container {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.edit-info-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.edit-info-delete-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.edit-info-delete-btn:hover {
    background: rgba(255, 77, 77, 0.6);
}

.edit-info-blur-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.edit-info-slider-container {
    padding: 20px 0;
}

.edit-info-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: linear-gradient(to right, #FF4D4D 0%, #FF4D4D 30%, #fff 30%, #fff 100%);
    border-radius: 2px;
    outline: none;
}

.edit-info-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #FF4D4D;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
}

.edit-info-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #FF4D4D;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
}

.edit-info-image-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.edit-info-action-cancel {
    background: #333;
    border: none;
    color: #fff;
    padding: 10px 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: background 0.2s;
}

.edit-info-action-cancel:hover {
    background: #444;
}

.edit-info-action-save {
    background: #FF4D4D;
    border: none;
    color: #fff;
    padding: 10px 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: background 0.2s;
}

.edit-info-action-save:hover {
    background: #ff3333;
}

.edit-info-right {
    width: 50%;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background: #1a1a1a;
}

.edit-info-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.edit-info-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.edit-info-user-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.edit-info-user-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.edit-info-username {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.edit-info-verified {
    width: 18px;
    height: 18px;
}

.edit-info-date {
    font-size: 12px;
    color: #666;
}

.edit-info-description {
    position: relative;
    margin-bottom: 16px;
}

.edit-info-description-input {
    width: 100%;
    min-height: 140px;
    background: #222;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    padding: 16px;
    padding-bottom: 40px;
    outline: none;
    font-family: 'Poppins', sans-serif;
    resize: none;
    line-height: 1.5;
}

.edit-info-description-input::placeholder {
    color: #666;
}

.edit-info-description-input:focus {
    border-color: #444;
}

.edit-info-emoji-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.edit-info-emoji-btn:hover {
    opacity: 0.7;
}

.edit-info-input-row {
    position: relative;
    margin-bottom: 16px;
}

.edit-info-location-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    color: #fff;
    padding: 14px 44px 14px 0;
    font-size: 14px;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.edit-info-location-input::placeholder {
    color: #666;
}

.edit-info-location-input:focus {
    border-bottom-color: #444;
}

.edit-info-input-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.edit-info-settings-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 16px;
    padding: 16px 0;
}

.edit-info-radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.edit-info-radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #FF4D4D;
    margin: 0;
}

.edit-info-radio-option label {
    color: #999;
    font-size: 13px;
    cursor: pointer;
    transition: color 0.2s;
}

.edit-info-radio-option label.active {
    color: #FF4D4D;
}

.edit-info-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
}

.edit-info-privacy-options {
    display: flex;
    align-items: center;
    gap: 20px;
}

.edit-info-album-dropdown {
    position: relative;
}

.edit-info-album-select {
    background: #333;
    border: none;
    border-radius: 6px;
    color: #fff;
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    transition: background 0.2s;
}

.edit-info-album-select:hover {
    background: #444;
}

.edit-info-album-dropdown-menu {
    position: absolute;
    bottom: 100%;
    right: 0;
    width: 140px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    margin-bottom: 8px;
    z-index: 10;
    overflow: hidden;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.edit-info-album-dropdown-menu.hidden {
    display: none;
}

.edit-info-album-item {
    padding: 12px 16px;
    color: #ccc;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
}

.edit-info-album-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

@media (max-width: 768px) {
    .edit-info-modal-content {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .edit-info-body {
        flex-direction: column;
    }

    .edit-info-left,
    .edit-info-right {
        width: 100%;
    }

    .edit-info-left {
        border-right: none;
        border-bottom: 1px solid #333;
    }
}

.custom-carousel-track {
    overflow: auto;
}

/* ==================== GALLERY MODAL ==================== */
.gallery-modal-overlay {
    position: fixed;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.95); */
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-top: 60px;
}

.gallery-modal-overlay.hidden {
    display: none;
}

.gallery-modal-container {
    width: 100%;
    max-width: 1400px;
    height: 90vh;
    position: relative;
}

.gallery-modal-close {
    position: absolute;
    top: -35px;
    right: -20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.gallery-modal-close:hover {
    transform: scale(1.1);
}

.gallery-modal-content {
    display: flex;
    gap: 0;
    height: 100%;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
}

.gallery-modal-left {
    /* flex: 1; */
    width: calc(100vw - 400px);
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    background: #000;
    position: relative;
    padding: 20px;
}

.gallery-modal-media-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-modal-image,
.gallery-modal-video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.gallery-modal-video.hidden {
    display: none;
}

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
}

.gallery-modal-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.gallery-modal-prev {
    left: 30px;
}

.gallery-modal-next {
    right: 30px;
}

.gallery-modal-tags {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
    overflow-x: auto;
    padding-bottom: 8px;
}

.gallery-modal-tags::-webkit-scrollbar {
    height: 4px;
}

.gallery-modal-tags::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.gallery-modal-tags::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 2px;
}

.gallery-modal-tag {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    color: #fff;
    font-size: 13px;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'Poppins', sans-serif;
}

.gallery-modal-tag:hover {
    background: rgba(255, 255, 255, 0.15);
}

.gallery-modal-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.gallery-modal-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.gallery-modal-thumbnails::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.gallery-modal-thumbnails::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

.gallery-modal-thumbnail {
    width: 64px;
    height: 64px;
    border-radius: 6px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    flex-shrink: 0;
}

.gallery-modal-thumbnail:hover {
    border-color: #fff;
    transform: scale(1.05);
}

.gallery-modal-thumbnail.active {
    border-color: #FF0000;
}

.gallery-modal-right {
    width: 400px;
    background: #000;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #222;
}

.gallery-modal-user-header {
    padding: 20px;
    border-bottom: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gallery-modal-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gallery-modal-user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.gallery-modal-user-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gallery-modal-username {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.gallery-modal-user-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #8f95a3;
}

.gallery-modal-likes {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #FF0000;
    font-size: 14px;
    font-weight: 600;
}

.gallery-modal-comments {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-modal-comments::-webkit-scrollbar {
    width: 6px;
}

.gallery-modal-comments::-webkit-scrollbar-track {
    background: #0a0a0a;
}

.gallery-modal-comments::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

.gallery-modal-comment {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gallery-modal-comment-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.gallery-modal-comment-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gallery-modal-comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gallery-modal-comment-username {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.gallery-modal-comment-time {
    font-size: 12px;
    color: #8f95a3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-text-gallery {
    font-size: 14px;
    color: #C7CAD1;
}

.gallery-modal-comment-text {
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
    margin: 0;
}

.gallery-modal-comment-actions {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.gallery-modal-comment-action {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8f95a3;
    transition: color 0.2s;
}

.gallery-modal-comment-action:hover {
    color: #fff;
}

.gallery-modal-add-comment {
    padding: 20px;
    border-top: 1px solid #222;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gallery-modal-add-comment svg {
    color: #8f95a3;
    flex-shrink: 0;
}

.gallery-modal-comment-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.gallery-modal-comment-input::placeholder {
    color: #666;
}

.gallery-modal-post-btn {
    background: transparent;
    border: none;
    color: #FF0000;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: color 0.2s;
}

.gallery-modal-post-btn:hover {
    color: #ff4d4d;
}

.only-mobile {
    display: none;
}

.only-desktop {
    display: block;
}

@media (max-width: 1024px) {
    .gallery-modal-content {
        flex-direction: column;
    }

    .gallery-modal-right {
        width: 100%;
        max-height: 300px;
        border-left: none;
        border-top: 1px solid #222;
    }

    .gallery-modal-left {
        height: auto;
    }
}

@media (max-width: 768px) {
    .gallery-modal-container {
        height: 95vh;
    }

    .gallery-modal-close {
        top: -40px;
    }

    .gallery-modal-nav {
        width: 40px;
        height: 40px;
    }

    .gallery-modal-prev {
        left: 10px;
    }

    .gallery-modal-next {
        right: 10px;
    }

    .gallery-modal-right {
        max-height: 250px;
    }

    .gallery-modal-thumbnails {
        margin-top: 12px;
    }

    .gallery-modal-thumbnail {
        width: 56px;
        height: 56px;
    }

    .only-desktop {
        display: none !important;
    }

    .only-mobile {
        display: block !important;
    }
}

.custom-select-dropdown-city {
    bottom: auto;
    height: 200px;
    overflow: auto;
}