/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #121212;
    --dark-bg-light: #1e1e1e;
    --dark-bg-lighter: #2a2a2a;
    --red-accent: #ff3366;
    --pink-accent: #ff66b2;
    --blue-accent: #33ccff;
    --text-light: #f5f5f5;
    --text-muted: #aaaaaa;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    --gradient-primary: linear-gradient(135deg, #ff3366, #ff66b2);
    --gradient-secondary: linear-gradient(135deg, #33ccff, #3366ff);
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

section {
    padding: 80px 20px;
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    line-height: 1.2;
}

/* Przyciski */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 51, 102, 0.6);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(51, 204, 255, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(51, 204, 255, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--pink-accent);
    color: var(--pink-accent);
}

.btn-outline:hover {
    background: rgba(255, 102, 178, 0.1);
    transform: translateY(-3px);
}

.full-width {
    width: 100%;
    display: block;
}

/* Nawigacja */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.95);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.logo span {
    color: var(--red-accent);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin: 0 12px;
}

.nav-menu a {
    font-size: 16px; /* Zwiększono rozmiar czcionki z 14px na 16px */
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--pink-accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover:before,
.nav-menu a.active:before {
    width: 100%;
}

.nav-menu a.active {
    color: var(--pink-accent);
}

.nav-btn {
    padding: 8px 20px !important;
    border-radius: 20px;
    background-color: rgba(255, 102, 178, 0.15);
}

/* Usunięto podkreślenie z przycisków po najechaniu */
.nav-menu a.nav-btn:before {
    display: none;
}

.btn-signup {
    background-color: var(--red-accent);
    color: white !important;
}

.nav-btn:hover {
    background-color: rgba(255, 102, 178, 0.25);
}

.btn-signup:hover {
    background-color: #e62e5c;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: var(--text-light);
}

/* Hero sekcja */
.hero {
    display: flex;
    min-height: 100vh;
    align-items: center;
    padding-top: 80px;
    background-color: var(--dark-bg-light);
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 51, 102, 0.2);
    filter: blur(80px);
    left: -100px;
    top: 20%;
    z-index: 1;
}

.hero:after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(51, 204, 255, 0.15);
    filter: blur(60px);
    right: 10%;
    bottom: 10%;
    z-index: 1;
}

.hero-content {
    flex: 1;
    padding: 0 40px;
    max-width: 600px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--red-accent), var(--pink-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.hero-image {
    flex: 1;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* Animacja pulsowania */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 51, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0);
    }
}

/* Sekcja cech */
.features {
    background-color: var(--dark-bg);
    text-align: center;
    position: relative;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.features h2:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: var(--gradient-primary);
    bottom: -15px;
    left: 20%;
}

.feature-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    background-color: var(--dark-bg-light);
    padding: 30px;
    border-radius: 15px;
    flex: 1 1 250px;
    max-width: 280px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.feature-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

.feature-box i {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--pink-accent);
    background: linear-gradient(135deg, var(--red-accent), var(--pink-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Sekcja testimonials */
.testimonials {
    background-color: var(--dark-bg-light);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.testimonials:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(51, 204, 255, 0.1);
    filter: blur(100px);
    right: -100px;
    top: 20%;
}

.testimonials-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.testimonials h2:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: var(--gradient-secondary);
    bottom: -15px;
    left: 20%;
}

.testimonial-container {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
}

.testimonial {
    flex: 0 0 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: var(--dark-bg-lighter);
    border-radius: 15px;
    box-shadow: var(--shadow);
    min-height: 200px;
}

.testimonial-image {
    flex: 0 0 100px;
}

.testimonial-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--blue-accent);
}

.testimonial-content {
    flex: 1;
    text-align: left;
}

.testimonial-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--blue-accent);
}

.testimonial-content p {
    font-size: 16px;
    margin-bottom: 15px;
    font-style: italic;
    color: var(--text-light);
}

.rating {
    color: var(--pink-accent);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: var(--dark-bg-lighter);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--pink-accent);
}

/* Sekcja statystyk */
.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: var(--dark-bg);
    padding: 60px 20px;
}

.stat-box {
    text-align: center;
    padding: 20px;
    min-width: 200px;
}

.stat-box h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--red-accent), var(--pink-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-box p {
    font-size: 18px;
    color: var(--text-muted);
}

/* Sekcja CTA */
.cta {
    background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)), url('https://source.unsplash.com/random/1920x1080/?couple,night') no-repeat center center/cover;
    text-align: center;
    padding: 100px 20px;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-muted);
}

/* Footer */
footer {
    background-color: var(--dark-bg-light);
    padding: 80px 20px 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    bottom: 0;
    left: 0;
}

.footer-section p, .footer-section li {
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--pink-accent);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark-bg-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--red-accent);
    transform: translateY(-3px);
}

.social-icons i {
    font-size: 18px;
}

.footer-section form {
    display: flex;
    margin-top: 15px;
}

.footer-section input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    background-color: var(--dark-bg-lighter);
    color: var(--text-light);
    border-radius: 5px 0 0 5px;
}

.footer-section button {
    border-radius: 0 5px 5px 0;
    padding: 10px 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom a {
    color: var(--text-muted);
}

.footer-bottom a:hover {
    color: var(--pink-accent);
}

/* Weryfikacja wieku */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.age-verification-content {
    background-color: var(--dark-bg-light);
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
}

.age-verification-content:before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 51, 102, 0.2);
    filter: blur(50px);
    right: -50px;
    top: -50px;
    z-index: -1;
}

.age-verification-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.age-verification-content p {
    font-size: 16px;
    margin-bottom: 15px;
}

.age-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Style dla strony profilu */
.profile-page {
    padding-top: 80px;
}

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

.profile-header {
    position: relative;
    margin-bottom: 80px;
}

.profile-cover {
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/profilowe.jpg') no-repeat center center/cover;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.profile-cover:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(transparent, var(--dark-bg));
}

.profile-avatar {
    position: absolute;
    bottom: -60px;
    left: 50px;
    width: 150px;
    height: 150px;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--dark-bg);
    box-shadow: var(--shadow);
}

.online-status {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #888;
    border: 3px solid var(--dark-bg);
}

.online-status.online {
    background-color: #4caf50;
}

.profile-actions {
    position: absolute;
    bottom: -30px;
    right: 50px;
    display: flex;
    gap: 15px;
}

.profile-main {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.profile-info {
    flex-basis: 100%;
    background-color: var(--dark-bg-light);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.profile-basic-info {
    flex: 1;
}

.profile-basic-info h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.profile-location {
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.profile-status {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.status-badge {
    background-color: var(--dark-bg-lighter);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.verified {
    background-color: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.profile-stats {
    display: flex;
    gap: 30px;
    padding: 0 20px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    display: block;
    color: var(--pink-accent);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-content {
    flex: 3;
}

.profile-about, .profile-details, .profile-preferences, .profile-gallery, .profile-looking-for {
    background-color: var(--dark-bg-light);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.profile-about h2, .profile-details h2, .profile-preferences h2, .profile-gallery h2, .profile-looking-for h2 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.profile-about h2:before, .profile-details h2:before, .profile-preferences h2:before, .profile-gallery h2:before, .profile-looking-for h2:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
}

.profile-about p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.detail {
    display: flex;
    flex-direction: column;
}

.detail-label {
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.detail-value {
    font-size: 16px;
    font-weight: 500;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    background-color: var(--dark-bg-lighter);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: var(--pink-accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 102, 178, 0.4);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    font-size: 14px;
}

.gallery-overlay i {
    color: var(--red-accent);
}

.gallery-item.locked img {
    filter: blur(10px) brightness(0.7);
}

.gallery-lock {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    text-align: center;
}

.gallery-lock i {
    font-size: 24px;
    color: var(--pink-accent);
    margin-bottom: 10px;
}

.gallery-lock p {
    font-size: 14px;
    margin-bottom: 15px;
}

.looking-for-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.looking-detail {
    display: flex;
    flex-direction: column;
}

.looking-label {
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.looking-value {
    font-size: 16px;
    font-weight: 500;
}

.profile-sidebar {
    flex: 1;
    min-width: 300px;
}

.sidebar-box {
    background-color: var(--dark-bg-light);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar-box h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.similar-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.similar-profile:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
}

.similar-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.similar-profile-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.similar-profile-info p {
    font-size: 12px;
    color: var(--text-muted);
}

.premium-features ul {
    margin-bottom: 20px;
}

.premium-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-features i {
    color: var(--pink-accent);
}

.profile-cta {
    margin-top: 50px;
}

/* Media queries */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding: 40px 20px;
        max-width: 100%;
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-top: 100px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .profile-actions {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }

    .profile-avatar {
        left: 50%;
        transform: translateX(-50%);
    }

    .profile-stats {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 15px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-bg-light);
        width: 100%;
        padding: 20px 0;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

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

    .nav-menu li {
        margin: 15px 0;
    }

    .testimonial {
        flex-direction: column;
        padding: 20px;
    }

    .testimonial-content {
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .stat-box {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }

    .profile-info {
        flex-direction: column;
        text-align: center;
    }

    .looking-for-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content h2 {
        font-size: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

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

    .profile-actions {
        flex-direction: column;
        width: 100%;
    }

    .profile-actions button {
        width: 100%;
    }
}

/* Dynamiczne style dla JavaScriptu */
.gallery-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-fullscreen-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.gallery-fullscreen img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
}

.close-gallery {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--dark-bg-light);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    z-index: 1500;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.chat-box {
    position: fixed;
    bottom: -500px;
    right: 30px;
    width: 350px;
    height: 450px;
    background-color: var(--dark-bg-light);
    border-radius: 15px 15px 0 0;
    box-shadow: var(--shadow);
    z-index: 1500;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.chat-box.open {
    bottom: 0;
}

.chat-header {
    padding: 15px;
    background: var(--gradient-primary);
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
}

.close-chat {
    font-size: 24px;
    cursor: pointer;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    display: flex;
    flex-direction: column;
    max-width: 80%;
}

.message.sent {
    align-self: flex-end;
}

.message.received {
    align-self: flex-start;
}

.message-content {
    padding: 10px 15px;
    border-radius: 15px;
    background-color: var(--dark-bg-lighter);
}

.message.sent .message-content {
    background: var(--gradient-primary);
    border-bottom-right-radius: 5px;
}

.message.received .message-content {
    background-color: var(--dark-bg-lighter);
    border-bottom-left-radius: 5px;
}

.message-content p {
    margin: 0;
}

.message-time {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 5px;
    align-self: flex-end;
}

.chat-input {
    padding: 15px;
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 20px;
    background-color: var(--dark-bg-lighter);
    color: var(--text-light);
}

.chat-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary.liked {
    background: var(--gradient-secondary);
}