@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --bg-main: #0a0a0b;
    --bg-card: #151518;
    --bg-card-hover: #1c1c21;
    --primary: #ff5a5f;
    --primary-glow: rgba(255, 90, 95, 0.4);
    --secondary: #ff385c;
    --text-main: #ffffff;
    --text-muted: #adb5bd;
    --glass: rgba(21, 21, 24, 0.85);

...

/* Swipe Cards (Matchmodus) */
.swipe-container {
    width: 100%;
    max-width: 400px;
    height: 70vh;
    position: relative;
    margin: 20px auto;
}

.swipe-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    cursor: grab;
}

.swipe-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swipe-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 24px 32px;
    background: linear-gradient(to top, rgba(10, 10, 11, 0.95), transparent);
}

.swipe-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.action-btn {
    width: 64px;
    height: 64px;
    border-radius: 32px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.action-btn:active {
    transform: scale(0.9);
}

.btn-dislike { background: rgba(255, 255, 255, 0.1); color: #ff5a5f; backdrop-filter: blur(8px); }
.btn-like { background: linear-gradient(135deg, #4caf50, #81c784); box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3); }
.btn-super { background: linear-gradient(135deg, #007bff, #00c6ff); box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3); }
    --glass-border: rgba(255, 255, 255, 0.08);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    --font: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font);
    margin: 0;
    padding: 0;
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    color: var(--text-main);
    font-weight: 600;
}

a {
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
}

/* Glassmorphism Containers */
.glass-panel {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

/* App-like Headers & Footers */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

.floating-nav {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: min(400px, 90%);
    height: 70px;
    border-radius: 35px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
}

.nav-item {
    color: var(--text-muted);
    font-size: 24px;
}

.nav-item.active {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Modern Cards */
.modern-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-card:hover {
    transform: translateY(-4px);
    background: var(--bg-card-hover);
    border-color: rgba(255, 90, 95, 0.3);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    border: none;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
    opacity: 0.9;
}

/* Forms */
input, select, textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--text-main);
    width: 100%;
    outline: none;
    transition: border-color 0.2s;
}

input:focus {
    border-color: var(--primary);
}

/* Grid System */
.discovery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    padding: 80px 16px 120px;
}

@media (min-width: 768px) {
    .discovery-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 24px;
        padding: 100px 40px 120px;
    }
}

/* Profile Elements */
.profile-hero {
    position: relative;
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
}

.profile-info-grid {
    display: grid;
    gap: 12px;
}

.info-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: space-between;
}
