:root { --logo-start: #fc03c7; --logo-end: #f6010e; --header-bg: #085461; --header-bg-subtle: #0a6574; --header-border: rgba(255,255,255,0.08); --accent: #e91e63; --accent-hover: #f6010e; --primary-color: #c2185b; --secondary-color: #5c6bc0; --text-color: #1a1a1a; --text-muted: #5f6368; --light-color: #f5f5f5; --white: #ffffff; --border-color: #e0e0e0; --card-shadow: 0 2px 12px rgba(0,0,0,0.08); --card-shadow-hover: 0 8px 24px rgba(0,0,0,0.12); --radius: 12px; --radius-sm: 8px; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; font-size: 16px; line-height: 1.5; color: var(--text-color); background-color: #fafafa; } .container { width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; } @media (min-width: 576px) { .container { max-width: 540px; } } @media (min-width: 768px) { .container { max-width: 720px; } } @media (min-width: 992px) { .container { max-width: 960px; } } @media (min-width: 1200px) { .container { max-width: 1140px; } } .site-header { background: var(--header-bg); color: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,0.2); margin-bottom: 0; } .header-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 0.75rem; padding-bottom: 0.75rem; position: relative; } .logo-link { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; } .logo-img { height: 40px; width: auto; display: block; } .main-nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.25rem 1.5rem; align-items: center; } .main-nav a { color: rgba(255,255,255,0.9); text-decoration: none; font-weight: 500; font-size: 0.95rem; padding: 0.35rem 0.5rem; border-radius: var(--radius-sm); transition: color 0.2s, background 0.2s; } .main-nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); } .header-menu { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; } .header-actions { display: flex; align-items: center; gap: 0.5rem; } .header-hamburger { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 0; border: none; background: transparent; color: rgba(255,255,255,0.9); cursor: pointer; border-radius: var(--radius-sm); transition: background 0.2s; } .header-hamburger:hover { background: rgba(255,255,255,0.1); } .header-hamburger-bar { display: block; width: 22px; flex-shrink: 0; height: 2px; background: currentColor; border-radius: 1px; transition: transform 0.2s, opacity 0.2s; } .site-header.menu-open .header-hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); } .site-header.menu-open .header-hamburger-bar:nth-child(2) { opacity: 0; } .site-header.menu-open .header-hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } @media (max-width: 767px) { .header-hamburger { display: flex; } .header-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 100; background: var(--header-bg-subtle); border-top: 1px solid var(--header-border); flex-direction: column; align-items: stretch; padding: 1rem; gap: 0.5rem; box-shadow: 0 8px 16px rgba(0,0,0,0.2); } .site-header.menu-open .header-menu { display: flex; } .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; } .main-nav a { display: block; padding: 0.75rem 1rem; } .header-actions { flex-direction: column; padding-top: 0.5rem; border-top: 1px solid var(--header-border); } .header-actions .btn { width: 100%; justify-content: center; } } .btn-ghost { color: rgba(255,255,255,0.9); background: transparent; border: 1px solid rgba(255,255,255,0.3); padding: 0.5rem 1rem; border-radius: var(--radius-sm); font-weight: 500; font-size: 0.9rem; text-decoration: none; transition: background 0.2s, border-color 0.2s; } .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: var(--white); } .btn-accent { background: linear-gradient(135deg, var(--logo-start), var(--logo-end)); color: var(--white); border: none; padding: 0.5rem 1.25rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem; text-decoration: none; box-shadow: 0 2px 8px rgba(246,1,14,0.35); transition: transform 0.2s, box-shadow 0.2s; } .btn-accent:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(246,1,14,0.4); color: var(--white); } .search-bar { background: var(--header-bg-subtle); border-top: 1px solid var(--header-border); padding: 1rem 0; position: relative; } .search-form { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 0.75rem 1rem; } .search-fields { display: flex; flex-wrap: wrap; gap: 0.75rem 1rem; flex: 1; min-width: 0; } .search-field { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; min-width: 140px; } .search-label { font-size: 0.75rem; color: rgba(255,255,255,0.7); font-weight: 500; text-transform: uppercase; letter-spacing: 0.03em; } .search-select, .search-input { font-family: inherit; font-size: 0.95rem; padding: 0.5rem 0.75rem; border: 1px solid rgba(0,0,0,0.12); border-radius: var(--radius-sm); background: #f8fafb; color: #1a1a1a; min-width: 140px; width: 100%; } .search-select:focus, .search-input:focus { outline: none; border-color: var(--logo-start); background: #fff; box-shadow: 0 0 0 2px rgba(252,3,199,0.15); } .search-input::placeholder { color: #6b7280; } .search-actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; } @media (max-width: 767px) { .search-form { flex-direction: column; align-items: stretch; } .search-fields { flex-direction: column; width: 100%; } .search-field { width: 100%; max-width: 100%; } .search-select, .search-input { width: 100%; max-width: 100%; min-width: 0; } .search-actions { width: 100%; } .search-actions .btn-outline-light { width: 100%; justify-content: center; } .autocomplete { max-width: none; min-width: 0; } } .btn-outline-light { color: rgba(255,255,255,0.9); background: transparent; border: 1px solid rgba(255,255,255,0.35); padding: 0.5rem 1rem; border-radius: var(--radius-sm); font-weight: 500; font-size: 0.9rem; text-decoration: none; transition: background 0.2s, border-color 0.2s; } .btn-outline-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); color: var(--white); } .search-field-autocomplete { position: relative; } .autocomplete { position: absolute; top: 100%; left: 0; right: auto; min-width: 200px; max-width: 280px; background: var(--white); border-radius: var(--radius-sm); box-shadow: 0 8px 24px rgba(0,0,0,0.2); max-height: 280px; overflow-y: auto; z-index: 100; display: none; } .autocomplete.is-open { display: block; } .autocomplete ul { list-style: none; } .autocomplete li { margin: 0; } .autocomplete a, .autocomplete span { display: block; padding: 0.6rem 0.75rem; color: var(--text-color); text-decoration: none; font-size: 0.9rem; border-bottom: 1px solid var(--light-color); transition: background 0.15s; } .autocomplete a:hover, .autocomplete li.selected a { background: var(--light-color); } .autocomplete li.selected a { font-weight: 500; background: #e8e8e8; } .autocomplete a:last-child { border-bottom: none; } .autocomplete .ac-count { color: var(--text-muted); font-size: 0.8rem; margin-left: 0.5rem; } main.container { padding-top: 1.5rem; padding-bottom: 2rem; } .row { display: flex; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; } .col { flex: 1; padding-right: 15px; padding-left: 15px; } .col-12 { flex: 0 0 100%; max-width: 100%; } .col-6 { flex: 0 0 50%; max-width: 50%; } .col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; } .col-3 { flex: 0 0 25%; max-width: 25%; } .card { position: relative; display: flex; flex-direction: column; background-color: var(--white); border: 1px solid var(--border-color); border-radius: var(--radius); margin-bottom: 1.5rem; overflow: hidden; box-shadow: var(--card-shadow); transition: box-shadow 0.2s, transform 0.2s; } .card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-2px); } .card-img-top { width: 100%; height: auto; border-radius: 0; } .card-body { padding: 1.25rem; } .card-title { margin-bottom: 0.75rem; font-size: 1.25rem; font-weight: 600; } .card-text { margin-bottom: 1rem; color: var(--text-muted); } .profile-grid { display: grid; gap: 1rem; margin-top: 1.5rem; justify-content: start; grid-template-columns: repeat(2, 1fr); } @media (min-width: 480px) { .profile-grid { grid-template-columns: repeat(3, 1fr); } } @media (min-width: 640px) { .profile-grid { grid-template-columns: repeat(4, 1fr); } } @media (min-width: 900px) { .profile-grid { grid-template-columns: repeat(6, 1fr); } } .profile-card { background: var(--white); border: 1px solid var(--border-color); border-radius: var(--radius); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; box-shadow: var(--card-shadow); padding-top: 0.12rem; } .profile-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); } .profile-card .profile-card-photo { display: block; width: 100%; max-width: 165px; height: 165px; margin: 0 auto; overflow: hidden; flex-shrink: 0; background: var(--light-color); border-radius: 10px 10px 0 0; } .profile-card .profile-card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; } .profile-card img { max-width: 165px; max-height: 165px; object-fit: cover; } .profile-card-body { padding: 0.75rem; flex: 1; } .profile-card-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.35rem; line-height: 1.3; } .profile-card-title a { color: var(--text-color); text-decoration: none; transition: color 0.2s; } .profile-card-title a:hover { color: var(--primary-color); } .profile-card-title .profile-card-name { color: var(--header-bg); } .profile-card-title .profile-card-years { color: var(--text-muted); font-weight: 500; } .profile-card-title a:hover .profile-card-name, .profile-card-title a:hover .profile-card-years { color: inherit; } .profile-card-age { color: var(--text-muted); font-size: 0.85rem; line-height: 1.4; } .profile-card-likes { margin: 0.25rem 0 0; font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.2rem; } .profile-card-likes .material-icons { font-size: 0.9rem; color: var(--accent); } .home-intro { margin: 0 0 2.5rem; max-width: 640px; } .home-intro-text { color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; } .home-intro-cta { margin-top: 1.25rem; } .home-block { margin-bottom: 2.5rem; } .home-block-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; } .home-block-more { margin-top: 1rem; margin-bottom: 0; } .home-block-more a { color: var(--logo-start); text-decoration: none; } .home-block-more a:hover { text-decoration: underline; } .home-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; } .home-tag { display: inline-block; padding: 0.45rem 0.9rem; background: var(--light-color); border: 1px solid var(--border-color); border-radius: var(--radius-sm); color: var(--text-color); text-decoration: none; font-size: 0.95rem; transition: background 0.2s, border-color 0.2s; } .home-tag:hover { background: var(--white); border-color: var(--logo-start); color: var(--logo-start); } .profile-grid-compact { margin-top: 0.5rem; } .profiles-sort-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; } .profiles-sort-desc a { color: var(--logo-start); text-decoration: none; } .profiles-sort-desc a:hover { text-decoration: underline; } .profile-card-city { display: flex; align-items: center; gap: 0.2rem; margin: 0.35rem 0 0; font-size: 0.72rem; color: #8a9ca3; line-height: 1.2; } .profile-card-city .profile-card-city-icon { font-size: 0.9rem; color: #8a9ca3; } .profile-card:hover .profile-card-city { color: var(--primary-color); } .profile-card:hover .profile-card-city .profile-card-city-icon { color: var(--primary-color); } .profile-ad-quote { margin: 0 0 1.5rem; padding: 1.25rem 1.25rem 1.25rem 1.5rem; border-left: 4px solid var(--header-bg); background: linear-gradient(to right, rgba(8, 84, 97, 0.06) 0%, transparent 100%); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; position: relative; } .profile-ad-quote::before { content: '"'; position: absolute; top: 0.5rem; left: 1rem; font-size: 2.5rem; line-height: 1; font-family: Georgia, serif; color: var(--header-bg); opacity: 0.35; } .profile-ad-quote .profile-ad-title { margin-top: 0; margin-bottom: 0.5rem; padding-left: 1.5rem; font-size: 1.25rem; font-weight: 600; color: var(--text-color); font-style: italic; } .profile-ad-quote .profile-text { white-space: pre-wrap; margin: 0; padding-left: 1.5rem; line-height: 1.6; color: var(--text-color); font-style: italic; } .profile-preferences { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border-color); } .profile-preferences h2 { font-size: 1.25rem; margin-bottom: 1rem; } .profile-preferences-dl { display: flex; flex-direction: column; gap: 0.5rem; margin: 0; } .profile-pref-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem 0.5rem; margin: 0; } .profile-pref-row dt { margin: 0; flex: 0 0 auto; font-weight: 600; display: flex; align-items: center; gap: 0.35rem; line-height: 1.4; } .profile-pref-row dd { margin: 0; flex: 1 1 auto; min-width: 0; line-height: 1.4; } .profile-pref-row dt .material-icons { font-size: 1.15rem; color: var(--primary-color); flex-shrink: 0; } .profile-main-photo img { max-width: 400px; max-height: 400px; width: auto; height: auto; object-fit: contain; } .profile-top { display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; margin-bottom: 2rem; } .profile-gallery-col { flex-shrink: 0; } .profile-info-col { flex: 0 1 auto; min-width: 200px; max-width: 380px; } .profile-quick-prefs { margin: 0 0 1rem; display: grid; gap: 0.35rem 0; } .profile-quick-pref-row { display: flex; align-items: center; gap: 0.5rem; margin: 0; min-height: 1.5em; } .profile-quick-pref-row dt { margin: 0; font-weight: 600; color: var(--text-muted); font-size: 0.95rem; display: flex; align-items: center; gap: 0.35rem; line-height: 1.3; } .profile-quick-pref-row dt .material-icons { font-size: 1.1rem; color: var(--primary-color); } .profile-quick-pref-row dd { margin: 0 0 0 auto; font-weight: 500; line-height: 1.3; display: flex; align-items: center; flex-wrap: wrap; gap: 0.25rem; } .pref-value-icon { font-size: 1.05em; margin-right: 0.2rem; color: var(--primary-color); } .pref-value-icon.material-icons { font-size: 1.15rem; vertical-align: middle; } .pref-label-nowrap { white-space: nowrap; } .profile-likes-row dd { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; } .profile-likes-count { font-weight: 600; color: var(--primary-color); } .profile-likes-btn .material-icons { font-size: 1.1rem; } .profile-likes-btn:disabled { opacity: 0.8; cursor: default; } .profile-tags-block { margin-bottom: 1rem; } .profile-tags-block .badge { margin-right: 0.35rem; margin-bottom: 0.35rem; } .profile-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem; } .profile-actions-main { display: flex; flex-wrap: wrap; gap: 0.5rem; } .profile-actions-main .btn { flex-shrink: 0; } .profile-actions-report { margin-top: 0; } .btn-ghost-dark { color: #085461 !important; background-color: #e8f4f6 !important; border: 1px solid #085461 !important; } .btn-ghost-dark:hover { color: #fff !important; background-color: #085461 !important; border-color: #085461 !important; } .profile-gallery { margin-bottom: 0; touch-action: pan-y; } .profile-gallery-main { position: relative; width: 100%; max-width: 400px; margin: 0; } @media (min-width: 420px) { .profile-gallery-main { min-width: 400px; } } .profile-gallery-big { display: block; width: 100%; max-width: 400px; height: auto; max-height: 400px; object-fit: contain; border-radius: var(--radius-sm); background: var(--light-color); } .profile-gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 2.5rem; height: 2.5rem; border: none; border-radius: 50%; background: rgba(0,0,0,0.5); color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0; transition: background 0.2s; z-index: 2; } .profile-gallery-arrow:hover { background: rgba(0,0,0,0.75); } .profile-gallery-arrow-left { left: 0.5rem; } .profile-gallery-arrow-right { right: 0.5rem; } .profile-gallery-thumbs { display: flex; flex-wrap: nowrap; gap: 0.35rem; width: 100%; max-width: 400px; margin: 0; margin-top: 0.5rem; } @media (min-width: 420px) { .profile-gallery-thumbs { min-width: 400px; } } @media (max-width: 767px) { .profile-gallery-col { width: 100%; min-width: 0; max-width: 100%; } .profile-gallery { width: 100%; max-width: 100%; overflow: hidden; } .profile-gallery-main { width: 100%; min-width: 0; max-width: 100%; box-sizing: border-box; } .profile-gallery-big { width: 100%; max-width: 100%; height: auto; max-height: none; display: block; } .profile-gallery-thumbs { width: 100%; min-width: 0; max-width: 100%; } } .profile-gallery-thumb { flex: 1; min-width: 0; padding: 0; border: 2px solid transparent; border-radius: var(--radius-sm); overflow: hidden; background: none; cursor: pointer; transition: border-color 0.2s, opacity 0.2s; } .profile-gallery-thumb:hover { opacity: 0.9; } .profile-gallery-thumb.active { border-color: var(--primary-color); } .profile-gallery-thumb img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; } .btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem; font-weight: 500; text-align: center; white-space: nowrap; vertical-align: middle; user-select: none; border: 1px solid transparent; padding: 0.5rem 1rem; font-size: 1rem; line-height: 1.5; border-radius: var(--radius-sm); transition: all 0.2s; text-decoration: none; cursor: pointer; font-family: inherit; } .btn .material-icons.btn-icon { font-size: 1.2rem; width: 1.2rem; height: 1.2rem; } .btn-ghost .btn-icon, .btn-outline-light .btn-icon { color: inherit; } .btn-primary .btn-icon, .btn-accent .btn-icon { color: rgba(255,255,255,0.95); } .btn-ghost-dark .btn-icon { color: #085461 !important; } .btn-ghost-dark:hover .btn-icon { color: #fff !important; } .btn-primary { color: var(--white); background: linear-gradient(135deg, var(--logo-start), var(--logo-end)); border: none; } .btn-primary:hover { opacity: 0.95; transform: translateY(-1px); } .btn-secondary { color: var(--white); background-color: var(--secondary-color); border-color: var(--secondary-color); } .btn-danger { color: var(--white); background-color: #c62828; border-color: #c62828; } .btn-danger:hover { background-color: #b71c1c; border-color: #b71c1c; } .badge { display: inline-flex; align-items: center; justify-content: center; padding: 0.35em 0.6em; font-size: 0.85rem; font-weight: 600; line-height: 1.2; text-align: center; white-space: nowrap; vertical-align: middle; border-radius: var(--radius-sm); background: linear-gradient(135deg, #1a9cad 0%, #0a6574 45%, #085461 100%); color: var(--white); margin-right: 0.35rem; margin-bottom: 0.35rem; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; } .badge:hover { transform: translateY(-1px); box-shadow: 0 2px 8px rgba(8,84,97,0.4); color: var(--white); } .pagination { display: flex; flex-wrap: wrap; padding-left: 0; list-style: none; border-radius: var(--radius-sm); justify-content: center; margin-top: 2.5rem; gap: 0.25rem; } .page-item { margin: 0; } .page-link { display: block; padding: 0.5rem 0.85rem; line-height: 1.25; color: var(--primary-color); background-color: var(--white); border: 1px solid var(--border-color); text-decoration: none; border-radius: var(--radius-sm); font-weight: 500; transition: all 0.2s; } .page-link:hover { background: var(--light-color); border-color: var(--primary-color); color: var(--primary-color); } .page-item.active .page-link { color: var(--white); background: linear-gradient(135deg, var(--logo-start), var(--logo-end)); border-color: transparent; } .site-footer { background: var(--header-bg); color: rgba(255,255,255,0.85); margin-top: 2.5rem; padding: 2.5rem 0 2rem; } .site-footer .container { display: grid; grid-template-columns: 1fr; gap: 2rem; } @media (min-width: 640px) { .site-footer .container { grid-template-columns: repeat(2, 1fr); } } @media (min-width: 992px) { .site-footer .container { grid-template-columns: repeat(4, 1fr); } } .footer-block h4 { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.5); margin-bottom: 1rem; } .footer-block ul { list-style: none; } .footer-block li { margin-bottom: 0.5rem; } .footer-block a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.95rem; transition: color 0.2s; } .footer-block a:hover { color: var(--white); } .footer-bottom { grid-column: 1 / -1; text-align: center; padding-top: 1.5rem; margin-top: 1rem; border-top: 1px solid var(--header-border); font-size: 0.9rem; color: rgba(255,255,255,0.5); } .text-center { text-align: center; } .page-placeholder { max-width: 560px; margin: 2rem auto; padding: 2rem; background: var(--white); border-radius: var(--radius); box-shadow: var(--card-shadow); } .page-placeholder h2 { margin-bottom: 1rem; } .page-placeholder p { margin-bottom: 1rem; color: var(--text-muted); } .page-content { margin: 2rem auto; max-width: 640px; } .contact-form { margin-top: 1.5rem; } .contact-form .form-group { margin-bottom: 1.25rem; } .contact-form label { display: block; font-weight: 500; margin-bottom: 0.35rem; color: var(--text-color); } .contact-form .required { color: var(--accent); } .contact-form .form-control { width: 100%; padding: 0.6rem 0.75rem; font-size: 1rem; font-family: inherit; border: 1px solid var(--border-color); border-radius: var(--radius-sm); background: var(--white); } .contact-form .form-control:focus { outline: none; border-color: var(--logo-start); box-shadow: 0 0 0 2px rgba(252, 3, 199, 0.15); } .contact-form textarea.form-control { resize: vertical; min-height: 120px; } .contact-form .btn { margin-top: 0.5rem; } .login-page .login-lead { color: var(--text-muted); margin-bottom: 1.5rem; } .login-form { margin-top: 1rem; } .login-form .form-group { margin-bottom: 1.25rem; } .login-form label { display: block; font-weight: 500; margin-bottom: 0.35rem; color: var(--text-color); } .login-form .form-control { width: 100%; padding: 0.6rem 0.75rem; font-size: 1rem; font-family: inherit; border: 1px solid var(--border-color); border-radius: var(--radius-sm); background: var(--white); } .login-form .form-control:focus { outline: none; border-color: var(--logo-start); box-shadow: 0 0 0 2px rgba(252, 3, 199, 0.15); } .login-form .btn { margin-top: 0.25rem; } .login-extra-links { margin-top: 1rem; } .login-extra-links a { color: var(--logo-start); text-decoration: none; font-size: 0.95rem; } .login-extra-links a:hover { text-decoration: underline; } .login-register-link { margin-top: 0.75rem; color: var(--text-muted); } .login-register-link a { color: var(--logo-start); text-decoration: none; } .login-register-link a:hover { text-decoration: underline; } .alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1rem; } .alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; } .alert-danger { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; } .static-page .static-content { color: var(--text-color); } .static-page .static-content h2 { font-size: 1.25rem; font-weight: 600; margin: 1.5rem 0 0.5rem; } .static-page .static-content p { margin-bottom: 0.75rem; color: var(--text-muted); line-height: 1.6; } .static-page .static-content a { color: var(--logo-start); text-decoration: none; } .static-page .static-content a:hover { text-decoration: underline; } .register-page { max-width: 600px; margin: 0 auto 2rem; } .register-page h1 { margin-bottom: 0.75rem; font-size: 1.75rem; } .register-lead { color: var(--text-muted); margin-bottom: 1.5rem; } .register-advantages { margin-bottom: 1.5rem; } .register-advantages h2 { font-size: 1.2rem; margin-bottom: 0.75rem; } .register-advantages ul { list-style: none; padding: 0; margin: 0; } .register-advantages li { padding: 0.4rem 0 0.4rem 1.5rem; position: relative; color: var(--text-color); } .register-advantages li::before { content: '✓'; position: absolute; left: 0; color: var(--header-bg); font-weight: 700; } .register-warning { background: var(--light-color); border-radius: var(--radius-sm); padding: 1rem 1.25rem; margin-bottom: 1.5rem; border-left: 4px solid var(--header-bg); } .register-warning p { margin: 0 0 0.5rem; color: var(--text-color); } .register-warning p:last-child { margin-bottom: 0; } .register-18 { font-weight: 600; } .register-cta { margin-bottom: 1.5rem; } .btn-register-confirm { font-size: 1.05rem; padding: 0.65rem 1.25rem; } .mt-1 { margin-top: 0.25rem; } .mt-2 { margin-top: 0.5rem; } .mt-3 { margin-top: 1rem; } .mt-4 { margin-top: 1.5rem; } .mt-5 { margin-top: 3rem; } .mb-1 { margin-bottom: 0.25rem; } .mb-2 { margin-bottom: 0.5rem; } .mb-3 { margin-bottom: 1rem; } .mb-4 { margin-bottom: 1.5rem; } .mb-5 { margin-bottom: 3rem; } main h1, main h2, .page-title, .home-intro-title, .home-block-title { color: var(--header-bg); } main h1, .page-title, .home-intro-title, .profile-name { font-size: 1.5rem; font-weight: 700; margin-top: 0; margin-bottom: 0.75rem; } main h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 0.5rem; } .report-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; visibility: hidden; transition: opacity 0.2s, visibility 0.2s; } .report-modal.report-modal-visible { opacity: 1; visibility: visible; } .report-modal-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.5); cursor: pointer; } .report-modal-box { position: relative; background: var(--white); border-radius: var(--radius); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); padding: 1.5rem; max-width: 420px; width: 100%; } .report-modal-title { margin: 0 0 0.5rem; font-size: 1.25rem; color: var(--text-color); } .report-modal-label { display: block; margin: 1rem 0 0.35rem; font-size: 0.95rem; font-weight: 500; color: var(--text-color); } .report-modal-label:first-of-type { margin-top: 0; } .report-modal-required { color: #c62828; } .report-modal-select, .report-modal-input { width: 100%; padding: 0.6rem; margin-bottom: 0; border: 1px solid var(--border-color); border-radius: var(--radius-sm); font-family: inherit; font-size: 0.95rem; box-sizing: border-box; } .report-modal-select { cursor: pointer; } .report-modal-textarea { width: 100%; padding: 0.6rem; margin-top: 0.35rem; margin-bottom: 0; border: 1px solid var(--border-color); border-radius: var(--radius-sm); font-family: inherit; font-size: 0.95rem; resize: vertical; min-height: 4rem; box-sizing: border-box; } .report-modal-textarea + .report-modal-label, .report-modal-input + .report-modal-label { margin-top: 1rem; } .report-modal-actions { display: flex; gap: 0.75rem; justify-content: flex-end; margin-top: 1.25rem; } .report-modal-msg { margin: 1rem 0 0; font-size: 0.9rem; } .report-modal-msg-ok { color: #2e7d32; } .report-modal-msg-err { color: #c62828; }