/* --- БАЗОВЫЕ НАСТРОЙКИ --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #1a0513;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Утонченный скроллбар под стиль сайта */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #1a0513;
}
::-webkit-scrollbar-thumb {
    background: #ff2a7a;
    border-radius: 10px;
}

/* --- PREMIUM HEART BACKGROUND (BOKEH & PARTICLES) --- */
.heart-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 20% 30%, #2b0c20 0%, #1a0513 100%);
}

/* Layer 1: Large Soft Glows */
.heart-bokeh {
    position: absolute;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ff2a7a"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    filter: blur(60px);
    opacity: 0.05;
    animation: floatGlow 40s linear infinite;
    pointer-events: none;
}

/* Layer 2: Elegant Sharp Outlines */
.heart-particle {
    position: absolute;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ff9ebb" stroke-width="1"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    filter: blur(1px);
    opacity: 0.15;
    animation: floatParticle 25s ease-in-out infinite;
    pointer-events: none;
}

/* Note: nth-child styles removed as positioning is now randomized via PHP in header.php */
@keyframes floatGlow {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, 30px) rotate(5deg); }
    66% { transform: translate(-30px, 50px) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes floatParticle {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(20px, -40px) rotate(15deg) scale(1.1); }
}

/* --- СЕТКА --- */
body.nav-is-open { overflow: hidden; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 5%; position: relative; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* --- ХЕДЕР (Универсальный) --- */
header { padding: 25px 0; position: fixed; top: 0; left: 0; width: 100%; z-index: 10000; background: rgba(26, 5, 19, 0.85); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255, 42, 122, 0.1); }
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }

.logo a { font-size: 24px; font-weight: 800; color: #fff; text-decoration: none; letter-spacing: 2px; text-transform: uppercase; background: linear-gradient(45deg, #fff, #ff9ebb); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; white-space: nowrap; }

/* Кнопка-бургер */
.menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 10px; margin-right: -10px; background: none; border: none; outline: none; z-index: 10002; }
.menu-toggle span { display: block; width: 28px; height: 2px; background: #fff; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 2px; }

/* Анимация бургера через класс на body */
body.nav-is-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: #ff2a7a; }
body.nav-is-open .menu-toggle span:nth-child(2) { opacity: 0; transform: scale(0); }
body.nav-is-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: #ff2a7a; }

/* Навигация */
#main-nav { display: flex; align-items: center; gap: 30px; }
#main-nav a { color: #ccaabb; text-decoration: none; font-size: 11px; font-weight: 700; text-transform: uppercase; transition: all 0.3s; letter-spacing: 1.5px; white-space: nowrap; border-bottom: 2px solid transparent; padding-bottom: 5px; }
#main-nav a:hover { color: #ff2a7a; border-bottom-color: #ff2a7a; }
#main-nav a.user-greeting { color: #fff; border-bottom: 1px dotted rgba(255,42,122,0.5); }

@media (max-width: 1150px) {
    #main-nav { gap: 15px; }
    #main-nav a { font-size: 10px; letter-spacing: 1px; }
}

@media (max-width: 1024px) {
    header { padding: 15px 0; }
    .menu-toggle { display: flex; }
    
    #main-nav { 
        position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
        background: #0d0208; flex-direction: column; justify-content: center; align-items: center;
        gap: 30px; transition: all 0.4s ease; z-index: 10001; padding: 40px;
        opacity: 0; visibility: hidden; pointer-events: none; transform: scale(1.05);
    }
    
    /* Состояние открытого меню */
    body.nav-is-open #main-nav { opacity: 1; visibility: visible; pointer-events: all; transform: scale(1); }
    
    #main-nav a { font-size: 22px; width: 100%; text-align: center; white-space: normal; border: none; }
    #main-nav a:hover { border: none; background: rgba(255,42,122,0.1); }
    
    .lang-switcher { margin: 20px 0 0 0; }
    .lang-btn { padding: 12px 25px; font-size: 14px; background: rgba(255,255,255,0.05); }
    .lang-dropdown { bottom: 100%; top: auto; right: 50%; transform: translateX(50%); margin-bottom: 15px; }
}

@media (max-width: 768px) {
    .logo a { font-size: 18px; }
}

/* --- ГЛАВНЫЙ ЭКРАН --- */
.hero { display: flex; align-items: center; justify-content: space-between; min-height: 90vh; padding: 120px 0 60px; gap: 60px; }
.hero-text { flex: 1.2; max-width: 600px; position: relative; z-index: 5; }
.hero-text h1 { font-size: 72px; line-height: 1.1; margin-bottom: 25px; font-weight: 900; letter-spacing: -2px; color: #fff; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.hero-text p { font-size: 18px; color: #ccaabb; line-height: 1.8; margin-bottom: 40px; background: rgba(26, 5, 19, 0.4); backdrop-filter: blur(5px); padding: 15px; border-radius: 15px; border-left: 3px solid #ff2a7a; }
.hero-image { flex: 0.8; max-width: 450px; max-height: 500px; position: relative; border-radius: 25px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.8); border: 1px solid rgba(255,42,122,0.3); animation: heroFloat 6s ease-in-out infinite; transition: all 0.5s; background: #000; }
.hero-image:hover { transform: scale(1.02); box-shadow: 0 40px 100px rgba(255,42,122,0.3); }
.hero-image img { width: 100%; height: 100%; display: block; object-fit: cover; aspect-ratio: 3/4; max-height: 500px; filter: brightness(0.9); transition: filter 0.3s; }
.hero-image:hover img { filter: brightness(1); }

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
/* --- КНОПКИ --- */
.btn-group { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 15px; }
.btn {
    display: inline-block; padding: 16px 36px; border-radius: 50px;
    font-weight: 700; text-transform: uppercase; font-size: 12px;
    letter-spacing: 2px; transition: all 0.3s ease; text-align: center; cursor: pointer; border: none;
}
.btn-primary { background: linear-gradient(45deg, #ff2a7a, #b01e6a); color: #fff; box-shadow: 0 4px 15px rgba(255, 42, 122, 0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255, 42, 122, 0.5); color: #fff;}
.btn-outline { background: transparent; color: #ff9ebb; border: 1px solid rgba(255, 158, 187, 0.3); }
.btn-outline:hover { background: rgba(255, 158, 187, 0.05); color: #fff; border-color: #ff2a7a; }

/* --- ФОРМЫ --- */
.auth-box {
    max-width: 400px;
    margin: 150px auto 100px;
    background: rgba(43, 12, 32, 0.5);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 42, 122, 0.2);
    backdrop-filter: blur(10px);
}
.auth-box h2 { text-align: center; margin-bottom: 30px; font-weight: 800; font-size: 24px;}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 12px; color: #ccaabb; text-transform: uppercase; font-weight: 700;}
.form-control {
    width: 100%; padding: 15px; background: rgba(26, 5, 19, 0.6);
    border: 1px solid rgba(255, 42, 122, 0.3); color: #fff; border-radius: 8px; font-family: inherit; font-size: 14px;
}
.form-control:focus { outline: none; border-color: #ff2a7a; }
.form-group.checkbox { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #ccaabb;}
.alert { padding: 15px; border-radius: 8px; margin-bottom: 20px; font-size: 13px; font-weight: bold; }
.alert-error { background: rgba(255,0,0,0.2); color: #ff9ebb; border: 1px solid rgba(255,0,0,0.5); }
.alert-success { background: rgba(0,255,0,0.1); color: #aaffaa; border: 1px solid rgba(0,255,0,0.3); }

/* --- СЕКЦИИ ПОРТФОЛИО --- */
section { padding: 80px 0; border-top: 1px solid rgba(255, 42, 122, 0.05); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 32px; font-weight: 900; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }
.section-header p { color: #ccaabb; font-size: 16px; font-weight: 300; }

.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; }
.card { background: rgba(43, 12, 32, 0.2); border: 1px solid rgba(255, 42, 122, 0.1); border-radius: 15px; overflow: hidden; transition: all 0.3s ease; backdrop-filter: blur(10px); }
.card:hover { transform: translateY(-5px); border-color: rgba(255, 42, 122, 0.3); }
.card-img { height: 400px; background-size: cover; background-position: center; display: block;}
.card-info { padding: 20px; text-align: center; }
.card-info h3 { font-size: 17px; margin-bottom: 10px; }
.card-info a.title-link { color: #fff; }
.card-info .price { color: #ff2a7a; font-weight: 700; display: block; margin-bottom: 15px; }
.btn-card { display: block; background: rgba(255, 42, 122, 0.1); color: #ff2a7a; padding: 10px; border-radius: 8px; font-size: 13px; font-weight: 700; transition: all 0.3s; margin-bottom: 10px;}
.btn-card:hover { background: #ff2a7a; color: #fff; }

/* VIP Блок */
.vip-banner { 
    position: relative; border: 1px solid #ff2a7a; border-radius: 20px; padding: 80px 40px; 
    text-align: center; overflow: hidden; background: #1a0513; 
}
.vip-banner::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: var(--vip-bg, none); background-size: cover; background-position: center;
    background-repeat: no-repeat; opacity: 0.4; z-index: 1;
}
.vip-banner > * { position: relative; z-index: 2; }
.vip-banner h2 { font-size: 40px; margin-bottom: 20px; background: linear-gradient(45deg, #ff2a7a, #ff9ebb); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 900; }
.vip-banner p { color: #ccaabb; font-size: 17px; max-width: 650px; margin: 0 auto 35px; line-height: 1.8; font-weight: 400; }

/* --- СТРАНИЦА ФОТОСЕТА --- */
.photoset-header { text-align: center; margin: 120px 0 40px; }
.photoset-header h1 { font-size: 40px; margin-bottom: 10px; }
.photoset-header .desc { color: #ccaabb; }
.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 15px; 
    width: 100%;
    margin-top: 30px;
}
.gallery-item { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 3 / 4; height: auto; cursor: pointer; border: 1px solid rgba(255,42,122,0.1); transition: transform 0.3s; }

@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
.gallery-item:hover { transform: scale(1.02); border-color: #ff2a7a; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item.blurred img { filter: blur(25px); transform: scale(1.1); pointer-events: none;}
.locked-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(43, 12, 32, 0.6); display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center; padding: 20px;
}
.locked-overlay svg { width: 40px; height: 40px; fill: #ff2a7a; margin-bottom: 15px; }
.locked-overlay span { font-weight: 700; font-size: 14px; color: #ff9ebb; margin-bottom: 20px;}
.locked-overlay a { padding: 10px 22px; font-size: 12px; }

/* Specialized Viewer Overlay */
.locked-overlay.full-view {
    z-index: 100;
    backdrop-filter: blur(40px);
    background: rgba(18, 5, 14, 0.85);
}
.locked-overlay.full-view svg { width: 80px; height: 80px; filter: drop-shadow(0 0 20px rgba(255,42,122,0.4)); opacity: 0.8; }
.locked-overlay.full-view span { font-size: 20px; font-weight: 900; letter-spacing: 0.5px; opacity: 0.9; }
.locked-overlay.full-view .btn { transform: scale(1.15); box-shadow: 0 10px 30px rgba(255,42,122,0.4); }
.locked-overlay.full-view .btn:hover { transform: scale(1.2); }

/* Photo Viewer Page */
.photo-viewer-container { padding: 40px 0; min-height: 80vh; display: flex; flex-direction: column; align-items: center; }
.photo-viewer-header { width: 100%; display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; border-bottom: 1px solid rgba(255,42,122,0.1); padding-bottom: 25px; }
.back-link { display: flex; align-items: center; gap: 8px; color: #ccaabb; font-size: 13px; font-weight: 700; text-transform: uppercase; transition: color 0.3s; }
.back-link:hover { color: #ff2a7a; }
.album-title { font-size: 22px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: #fff; text-shadow: 0 0 20px rgba(255,42,122,0.3); }

.photo-nav-controls {
    display: flex; gap: 15px; margin-bottom: 30px; width: 100%; max-width: 1000px;
}
.nav-btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px;
    background: rgba(255,42,122,0.05); border: 1px solid rgba(255,42,122,0.1);
    color: #ccaabb; padding: 18px; border-radius: 50px; font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease;
}
.nav-btn:hover { background: rgba(255,42,122,0.15); border-color: #ff2a7a; color: #fff; box-shadow: 0 0 25px rgba(255,42,122,0.15); }
.nav-btn.next { background: rgba(255,42,122,0.1); color: #ff9ebb; }
.nav-btn.next:hover { background: #ff2a7a; color: #fff; }
.nav-btn.disabled { opacity: 0.2; pointer-events: none; }

.main-photo-wrapper { position: relative; max-width: 1000px; width: 100%; margin: 0 auto; border-radius: 15px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.8); border: 1px solid rgba(255,42,122,0.1); background: #000; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); cursor: zoom-in; user-select: none; -webkit-user-select: none; }
.main-photo-wrapper.fullscreen { 
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; max-width: 100vw; 
    z-index: 20000; border-radius: 0; margin: 0; border: none; cursor: zoom-out;
}
.view-large-img { width: 100%; height: auto; display: block; filter: brightness(0.9); transition: transform 0.4s; }

/* --- 18+ Age Verification Modal --- */
.age-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(25px);
    display: flex; align-items: center; justify-content: center;
    z-index: 100000; opacity: 0; pointer-events: none;
    transition: opacity 0.4s ease;
}
.age-modal-overlay.show-modal {
    opacity: 1; pointer-events: auto;
}
.age-modal-content {
    background: rgba(43, 12, 32, 0.3); border: 1px solid rgba(255, 42, 122, 0.3);
    padding: 60px 40px; border-radius: 25px; text-align: center; max-width: 500px;
    width: 90%; box-shadow: 0 30px 100px rgba(255, 42, 122, 0.15);
    transform: scale(0.9); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.age-modal-overlay.show-modal .age-modal-content {
    transform: scale(1);
}
.age-modal-badge {
    background: #ff2a7a; color: #fff; display: inline-block; padding: 5px 15px;
    border-radius: 50px; font-weight: 900; font-size: 20px; margin-bottom: 25px;
    box-shadow: 0 0 20px rgba(255, 42, 122, 0.5);
}
.age-modal-content h3 { font-size: 24px; margin-bottom: 15px; color: #fff; font-weight: 800; }
.age-modal-content p { color: #ccaabb; font-size: 15px; line-height: 1.6; margin-bottom: 35px; }
.age-modal-actions { display: flex; flex-direction: column; gap: 15px; }
.age-modal-btn-yes {
    background: linear-gradient(45deg, #ff2a7a, #8a1450); color: #fff; border: none;
    padding: 18px; border-radius: 50px; font-weight: 800; font-size: 15px; cursor: pointer;
    text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 42, 122, 0.3);
}
.age-modal-btn-yes:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(255, 42, 122, 0.5); }
.age-modal-btn-no {
    background: transparent; color: #775566; border: none; padding: 10px;
    font-size: 13px; font-weight: 700; cursor: pointer; transition: color 0.3s;
}
.age-modal-btn-no:hover { color: #ff2a7a; }

.view-large-img { width: 100%; display: block; height: auto; max-height: 85vh; object-fit: contain; transition: all 0.4s; pointer-events: auto; -webkit-touch-callout: none; }
.main-photo-wrapper.fullscreen .view-large-img { max-height: 100vh; height: 100vh; }
body.photo-fs-open { overflow: hidden; }

.photo-nav-controls { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 15px; }
.photo-nav-controls.top-nav { margin-bottom: 25px; }
.photo-nav-controls.bottom-nav { margin-top: 30px; }

.nav-btn { 
    flex: 1; min-width: 0; display: flex; align-items: center; justify-content: center; gap: 8px; 
    padding: 14px 10px; background: rgba(255,42,122,0.05); border: 1px solid rgba(255,42,122,0.2); 
    border-radius: 50px; color: #ff9ebb; font-size: 13px; font-weight: 700; 
    text-transform: uppercase; transition: all 0.3s; cursor: pointer;
}
.nav-btn:hover { background: rgba(255,42,122,0.15); border-color: #ff2a7a; color: #fff; box-shadow: 0 5px 20px rgba(255,42,122,0.2); transform: translateY(-2px); }
.nav-btn svg { flex-shrink: 0; }
.nav-btn.disabled { visibility: hidden; pointer-events: none; }
.nav-btn.share-btn { border-color: rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.03); color: #ccaabb; }
.nav-btn.share-btn:hover { background: rgba(255, 255, 255, 0.08); border-color: #fff; color: #fff; }

.share-toast {
    position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%);
    background: #ff2a7a; color: #fff; padding: 12px 24px; border-radius: 50px;
    font-weight: 700; font-size: 14px; opacity: 0; visibility: hidden;
    transition: all 0.3s; z-index: 3000; box-shadow: 0 10px 40px rgba(255,42,122,0.4);
}
.share-toast.show { opacity: 1; visibility: visible; bottom: 50px; }

@media (max-width: 600px) {
    .photo-nav-controls { gap: 10px; }
    .nav-btn span { display: none; } /* Show only icons on small mobiles */
    .nav-btn { padding: 15px; border-radius: 50%; width: 50px; height: 50px; flex: none; }
    .photo-nav-controls { justify-content: center; }
}

.locked-overlay.full-view { background: rgba(26, 5, 19, 0.85); backdrop-filter: blur(40px); }
.locked-overlay.full-view svg { width: 60px; height: 60px; }
.locked-overlay.full-view span { font-size: 18px; margin-bottom: 25px; }

/* --- ПОДВАЛ --- */
footer { padding: 80px 0 40px; text-align: center; border-top: 1px solid rgba(255, 42, 122, 0.1); background: rgba(18, 5, 14, 0.95); margin-top: auto;}
.footer-logo { font-size: 20px; font-weight: 900; letter-spacing: 3px; margin-bottom: 25px; color: #fff; text-transform: uppercase; background: linear-gradient(45deg, #fff, #ff2a7a); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.footer-nav { margin-bottom: 30px; display: flex; justify-content: center; gap: 25px; flex-wrap: wrap; }
.footer-nav a { font-size: 12px; text-transform: uppercase; color: #ccaabb; transition: all 0.3s; font-weight: 700; letter-spacing: 1px; }
.footer-nav a:hover { color: #ff2a7a; transform: translateY(-2px); }
.footer-disclaimer { font-size: 11px; color: #775566; line-height: 1.8; max-width: 650px; margin: 0 auto 30px; font-weight: 400; font-family: sans-serif; letter-spacing: 0.3px; }
.copyright { font-size: 10px; color: #443344; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; }

@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; padding-top: 130px; }
    .hero-text h1 { font-size: 40px; }
    .hero-text { margin-bottom: 40px; }
    .hero-image img { width: 300px; height: 430px; }
    .btn-group { justify-content: center; }
    .vip-banner h2 { font-size: 28px; }
    .nav-container nav { display: none; }
}
