/* ----- RESET & BASE ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background: #1a1410;
    color: #f5ede8;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ----- SCROLLBAR ----- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #2a1f18; }
::-webkit-scrollbar-thumb { background: #d4a373; border-radius: 10px; }

/* ----- VARIABLES (Warm Gold / Rose) ----- */
:root {
    --bg-primary: #1a1410;
    --bg-secondary: #241d17;
    --bg-card: #2d221c;
    --bg-card-hover: #3d3028;
    --gold: #d4a373;
    --gold-light: #e8c99b;
    --gold-dark: #b8895a;
    --rose: #e5989b;
    --rose-light: #f2b8ba;
    --warm-glow: rgba(212, 163, 115, 0.15);
    --gradient-warm: linear-gradient(135deg, #d4a373, #e5989b, #e8c99b);
    --text-primary: #f5ede8;
    --text-secondary: #c4b5a8;
    --shadow-glow: 0 8px 40px rgba(212, 163, 115, 0.12);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

/* ----- 3D PERSPECTIVE HELPERS ----- */
.perspective-3d {
    perspective: 1200px;
}
.tilt-3d {
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.tilt-3d:hover {
    transform: rotateY(4deg) rotateX(2deg) scale(1.02);
}

/* ----- GLASSMORPHISM (warm) ----- */
.glass-warm {
    background: rgba(45, 34, 28, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 163, 115, 0.15);
}

/* ----- NAVBAR (gradient gold) ----- */
.navbar {
    background: rgba(26, 20, 16, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 163, 115, 0.12);
    padding: 0 2rem;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 900;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-brand i {
    font-size: 2rem;
    -webkit-text-fill-color: initial;
    color: var(--gold);
    filter: drop-shadow(0 0 12px rgba(212, 163, 115, 0.3));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    flex-wrap: wrap;
}
.nav-links a {
    padding: 0.45rem 1.1rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-links a i { font-size: 0.95rem; }
.nav-links a:hover {
    color: #fff;
    background: rgba(212, 163, 115, 0.12);
}
.nav-links a.active {
    background: var(--gradient-warm);
    color: #1a1410;
    box-shadow: 0 4px 20px rgba(212, 163, 115, 0.3);
}
.nav-links a.active i { color: #1a1410; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.btn {
    padding: 0.5rem 1.3rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: #1a1410;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 163, 115, 0.3);
}
.btn-primary {
    background: var(--gradient-warm);
    color: #1a1410;
    border: none;
    font-weight: 700;
}
.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(212, 163, 115, 0.35);
}
.btn-sm { padding: 0.35rem 1rem; font-size: 0.8rem; }

.menu-toggle {
    display: none;
    font-size: 1.6rem;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
}

/* ----- PAGE CONTAINER ----- */
.page-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

/* ----- HERO (Home) ----- */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0 3rem;
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.2rem;
}
.hero-content h1 .highlight {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 2rem;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-buttons .btn {
    padding: 0.9rem 2.5rem;
    font-size: 1.05rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-illustration {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1/1;
    background: radial-gradient(circle at 30% 30%, rgba(212, 163, 115, 0.2), rgba(229, 152, 155, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9rem;
    color: var(--gold);
    box-shadow: 0 0 80px rgba(212, 163, 115, 0.12);
    position: relative;
    border: 2px solid rgba(212, 163, 115, 0.15);
    transform-style: preserve-3d;
    animation: float3D 6s ease-in-out infinite;
}
@keyframes float3D {
    0%, 100% { transform: rotateY(0deg) rotateX(0deg) translateY(0); }
    50% { transform: rotateY(6deg) rotateX(4deg) translateY(-12px); }
}
.hero-illustration i {
    filter: drop-shadow(0 0 40px rgba(212, 163, 115, 0.25));
}
.hero-illustration::after {
    content: '✨';
    position: absolute;
    bottom: 8%;
    right: 8%;
    font-size: 4rem;
    animation: sparkle 3s ease-in-out infinite;
}
@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.3) rotate(20deg); opacity: 0.7; }
}

/* ----- SECTION TITLE ----- */
.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2.5rem 0 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-title i { color: var(--gold); }
.section-sub {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 1rem;
    margin-left: 6px;
}

/* ----- NEARBY MEMBERS (location cards) ----- */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.8rem;
    margin-top: 1rem;
}
.member-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(212, 163, 115, 0.06);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}
.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-warm);
    opacity: 0;
    transition: var(--transition);
}
.member-card:hover::before {
    opacity: 1;
}
.member-card:hover {
    transform: translateY(-8px) rotateY(2deg);
    border-color: rgba(212, 163, 115, 0.2);
    box-shadow: 0 16px 48px rgba(212, 163, 115, 0.15);
    background: var(--bg-card-hover);
}
.member-card .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1410;
    background: var(--gradient-warm);
    border: 3px solid rgba(212, 163, 115, 0.2);
    box-shadow: 0 0 24px rgba(212, 163, 115, 0.15);
    background-size: cover;
    background-position: center;
}
.member-card .name {
    font-weight: 700;
    font-size: 1.1rem;
}
.member-card .age-location {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0.2rem 0 0.4rem;
}
.member-card .location-badge {
    display: inline-block;
    background: rgba(212, 163, 115, 0.1);
    padding: 0.2rem 0.9rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold);
    border: 1px solid rgba(212, 163, 115, 0.1);
}
.member-card .distance {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 0.4rem;
    opacity: 0.7;
}
.member-card .status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 4px;
}
.member-card .status-dot.online { background: #4ade80; box-shadow: 0 0 12px rgba(74, 222, 128, 0.3); }
.member-card .status-dot.away { background: #facc15; box-shadow: 0 0 12px rgba(250, 204, 21, 0.2); }
.member-card .status-dot.offline { background: #6b7280; }

/* ----- FEATURES (3D cards) ----- */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.8rem;
    margin: 2rem 0 1rem;
}
.feature-item {
    background: var(--bg-card);
    padding: 1.8rem 1.2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-glow);
    text-align: center;
    border: 1px solid rgba(212, 163, 115, 0.06);
    transition: var(--transition);
    transform-style: preserve-3d;
}
.feature-item:hover {
    transform: translateY(-6px) rotateX(2deg);
    border-color: rgba(212, 163, 115, 0.2);
    box-shadow: 0 12px 40px rgba(212, 163, 115, 0.12);
}
.feature-item i {
    font-size: 2.4rem;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.6rem;
}
.feature-item h4 {
    font-weight: 600;
    font-size: 1rem;
}
.feature-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.2rem;
}

/* ----- FORMS (warm glass) ----- */
.form-container {
    max-width: 540px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 2.8rem 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-glow);
    border: 1px solid rgba(212, 163, 115, 0.08);
}
.form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    text-align: center;
}
.form-container .form-sub {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}
.form-group {
    margin-bottom: 1.2rem;
}
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1.1rem;
    border: 2px solid rgba(212, 163, 115, 0.15);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    background: rgba(26, 20, 16, 0.6);
    transition: var(--transition);
    color: var(--text-primary);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 163, 115, 0.08);
    background: rgba(26, 20, 16, 0.8);
}
.form-group textarea {
    resize: vertical;
    min-height: 80px;
}
.form-group .input-hint {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.2rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-btn {
    width: 100%;
    padding: 0.9rem;
    border-radius: var(--radius-sm);
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    background: var(--gradient-warm);
    color: #1a1410;
    transition: var(--transition);
    margin-top: 0.5rem;
}
.form-btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 32px rgba(212, 163, 115, 0.3);
}
.form-footer {
    text-align: center;
    margin-top: 1.2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.form-footer a {
    color: var(--gold);
    font-weight: 600;
}
.form-footer a:hover { text-decoration: underline; }

/* ----- PROFILE (3D photo card) ----- */
.profile-header {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
    background: var(--bg-card);
    padding: 2.5rem 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-glow);
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 163, 115, 0.06);
    transform-style: preserve-3d;
}
.profile-avatar-large {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--gradient-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.2rem;
    font-weight: 700;
    color: #1a1410;
    border: 4px solid rgba(212, 163, 115, 0.2);
    box-shadow: 0 0 48px rgba(212, 163, 115, 0.15);
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}
.profile-avatar-large:hover {
    transform: rotateY(8deg) scale(1.04);
}
.profile-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
}
.profile-info .profile-meta {
    color: var(--text-secondary);
    font-size: 1rem;
}
.profile-info .profile-bio {
    margin-top: 0.6rem;
    max-width: 500px;
    color: var(--text-secondary);
}
.profile-info .profile-tags {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 0.8rem;
}
.profile-info .profile-tags span {
    background: rgba(212, 163, 115, 0.1);
    padding: 0.25rem 1.2rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold);
    border: 1px solid rgba(212, 163, 115, 0.08);
}

/* ----- PHOTO GALLERY (3D grid) ----- */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.2rem;
    margin: 1.5rem 0;
}
.photo-item {
    aspect-ratio: 1/1;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 2px solid rgba(212, 163, 115, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--gold);
    transition: var(--transition);
    transform-style: preserve-3d;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}
.photo-item:hover {
    transform: rotateY(6deg) scale(1.04);
    border-color: rgba(212, 163, 115, 0.3);
    box-shadow: 0 8px 32px rgba(212, 163, 115, 0.12);
}
.photo-item .photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 20, 16, 0.7);
    padding: 0.3rem;
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-align: center;
}
.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.detail-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-glow);
    border: 1px solid rgba(212, 163, 115, 0.06);
}
.detail-card h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gold);
}
.detail-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ----- MATCHES (3D cards) ----- */
.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.8rem;
}
.match-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.8rem 1.2rem;
    box-shadow: var(--shadow-glow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(212, 163, 115, 0.06);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}
.match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-warm);
    opacity: 0;
    transition: var(--transition);
}
.match-card:hover::before {
    opacity: 1;
}
.match-card:hover {
    transform: translateY(-8px) rotateY(3deg);
    border-color: rgba(212, 163, 115, 0.2);
    box-shadow: 0 16px 48px rgba(212, 163, 115, 0.15);
    background: var(--bg-card-hover);
}
.match-card .avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin: 0 auto 0.8rem;
    background: var(--gradient-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    font-weight: 700;
    color: #1a1410;
    border: 3px solid rgba(212, 163, 115, 0.15);
    box-shadow: 0 0 24px rgba(212, 163, 115, 0.1);
    background-size: cover;
    background-position: center;
}
.match-card .name {
    font-weight: 700;
    font-size: 1.1rem;
}
.match-card .age-location {
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.match-card .match-badge {
    display: inline-block;
    background: rgba(212, 163, 115, 0.12);
    color: var(--gold);
    padding: 0.15rem 1rem;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.4rem;
    border: 1px solid rgba(212, 163, 115, 0.08);
}

/* ----- MESSAGES (chat style) ----- */
.messages-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.msg-item {
    background: var(--bg-card);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-glow);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(212, 163, 115, 0.06);
}
.msg-item:hover {
    transform: translateX(6px);
    border-color: rgba(212, 163, 115, 0.15);
    background: var(--bg-card-hover);
}
.msg-item .avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1410;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}
.msg-item .msg-content {
    flex: 1;
}
.msg-item .msg-content .msg-name {
    font-weight: 600;
}
.msg-item .msg-content .msg-preview {
    font-size: 0.9rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}
.msg-item .msg-time {
    font-size: 0.75rem;
    color: var(--text-secondary);
    flex-shrink: 0;
}
.msg-item .unread {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--rose);
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(229, 152, 155, 0.4);
}

/* ----- SETTINGS ----- */
.settings-group {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-glow);
    margin-bottom: 1.2rem;
    border: 1px solid rgba(212, 163, 115, 0.06);
}
.settings-group h4 {
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--gold);
}
.settings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(212, 163, 115, 0.04);
}
.settings-row:last-child {
    border-bottom: none;
}
.settings-row .label {
    font-weight: 500;
}
.settings-row .desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.toggle {
    width: 48px;
    height: 26px;
    background: #2d221c;
    border-radius: 40px;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
    border: 1px solid rgba(212, 163, 115, 0.08);
}
.toggle.on {
    background: var(--gradient-warm);
}
.toggle::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.toggle.on::after {
    left: 24px;
}

/* ----- LOCATION BAR (nearby) ----- */
.location-bar {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: var(--bg-card);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(212, 163, 115, 0.06);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.location-bar .loc-icon {
    color: var(--gold);
    font-size: 1.2rem;
}
.location-bar .loc-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.location-bar .loc-distance {
    margin-left: auto;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
}

/* ----- TOAST ----- */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    color: var(--text-primary);
    padding: 1rem 1.8rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    transition: var(--transition);
    pointer-events: none;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(212, 163, 115, 0.1);
}
.toast.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.toast i { font-size: 1.2rem; }
.toast.success i { color: #4ade80; }
.toast.error i { color: #f87171; }

/* ----- FOOTER & AD COMPLIANCE ----- */
.footer {
    text-align: center;
    padding: 2rem 1rem;
    border-top: 1px solid rgba(212, 163, 115, 0.05);
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 2rem;
}
.footer a {
    color: var(--gold);
    font-weight: 500;
}
.ad-compliance {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(212, 163, 115, 0.05);
}
.ad-compliance a {
    color: var(--text-secondary);
    transition: var(--transition);
}
.ad-compliance a:hover {
    color: var(--gold);
}
.ad-compliance i { margin-right: 4px; }

/* ----- RESPONSIVE ----- */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons { justify-content: center; }
    .hero-illustration { max-width: 320px; font-size: 6rem; }
    .profile-header { flex-direction: column; text-align: center; }
    .profile-info .profile-tags { justify-content: center; }
    .profile-details-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .navbar { padding: 0 1rem; height: 64px; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(26, 20, 16, 0.98);
        backdrop-filter: blur(16px);
        padding: 1rem 1.5rem;
        gap: 0.25rem;
        border-bottom: 1px solid rgba(212, 163, 115, 0.08);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 0.6rem 1rem; width: 100%; border-radius: var(--radius-sm); }
    .nav-actions .btn { display: none; }
    .menu-toggle { display: block; }
    .form-container { padding: 1.8rem 1.2rem; }
    .page-container { padding: 1.2rem 1rem 3rem; }
    .hero-content h1 { font-size: 2.2rem; }
    .members-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .matches-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .msg-item .msg-content .msg-preview { max-width: 120px; }
    .settings-group { padding: 1.2rem 1rem; }
    .profile-header { padding: 1.5rem 1.2rem; }
    .photo-gallery { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem; }
    .members-grid { grid-template-columns: 1fr 1fr; }
    .matches-grid { grid-template-columns: 1fr 1fr; }
    .location-bar { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .location-bar .loc-distance { margin-left: 0; }
}