* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #f8f6f1;
    --newsprint: #edeae3;
    --grey: #d4d0c7;
    --black: #141414;
    --red: #d62828;
}

body {
    font-family: 'Lora', Georgia, serif;
    background: var(--newsprint);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

/* Heavy newsprint texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.06;
    pointer-events: none;
    z-index: 9999;
}

/* Hand-drawn topo illustration */
.topo-bg {
    position: absolute;
    pointer-events: none;
    opacity: 0.08;
    z-index: 0;
}

.topo-bg-left {
    left: -20px;
    top: 80px;
    width: 200px;
    height: 650px;
}

.topo-bg-right {
    right: 0;
    top: 120px;
    width: 170px;
    height: 550px;
}

@media (max-width: 768px) {
    .topo-bg-left,
    .topo-bg-right {
        display: none;
    }
}

.section-topo {
    position: relative;
    overflow: hidden;
}

.section-topo .topo-decoration {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 400px;
    opacity: 0.08;
    pointer-events: none;
}

.page-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-title {
    text-align: center;
    font-family: 'Special Elite', monospace;
    font-size: 14px;
    color: var(--red);
    margin-bottom: 20px;
    padding-top: 40px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* Rough divider with topo sketch */
.page-divider {
    border: none;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 80'%3E%3Cpath d='M0 40 L800 40' stroke='%23141414' stroke-width='2' fill='none' stroke-dasharray='15 8'/%3E%3Cpath d='M350 70 L352 55 L348 40 L352 25 L350 10' stroke='%23141414' stroke-width='1.5' fill='none' stroke-dasharray='6 3'/%3E%3Ccircle cx='350' cy='70' r='4' fill='none' stroke='%23141414' stroke-width='1.5'/%3E%3Ccircle cx='350' cy='40' r='4' fill='none' stroke='%23141414' stroke-width='1.5'/%3E%3Ccircle cx='350' cy='10' r='4' fill='none' stroke='%23141414' stroke-width='1.5'/%3E%3Ctext x='365' y='58' font-family='monospace' font-size='8' fill='%23d62828'%3E5.10%3C/text%3E%3Ctext x='365' y='28' font-family='monospace' font-size='8' fill='%23d62828'%3E5.11%3C/text%3E%3Cpath d='M450 70 L448 50 L452 30 L450 10' stroke='%23141414' stroke-width='1.5' fill='none' stroke-dasharray='6 3'/%3E%3Ccircle cx='450' cy='70' r='4' fill='none' stroke='%23141414' stroke-width='1.5'/%3E%3Ccircle cx='450' cy='10' r='4' fill='none' stroke='%23141414' stroke-width='1.5'/%3E%3Ctext x='460' y='45' font-family='monospace' font-size='8' fill='%23d62828'%3E5.9%3C/text%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 60px 0;
}

/* ============ NAVBAR ============ */
.navbar {
    background: var(--black);
    padding: 0;
    display: flex;
    align-items: stretch;
}

.logo {
    font-family: 'Archivo Black', sans-serif;
    font-size: 28px;
    padding: 15px 30px;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-left: auto;
    align-items: stretch;
}

.nav-links a {
    font-family: 'Special Elite', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    text-decoration: none;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    transition: background 0.2s;
}

.nav-links a:hover {
    background: var(--red);
}

.nav-auth {
    display: flex;
    align-items: stretch;
}

.btn {
    font-family: 'Special Elite', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s;
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border: 2px solid var(--red);
}

.btn-primary:hover {
    background: #b81f1f;
    border-color: #b81f1f;
}

.nav-auth .btn {
    border: none;
    padding: 20px 25px;
}

/* ============ HERO ============ */
.hero {
    background: var(--black);
    position: relative;
    overflow: hidden;
    height: calc(100vh - 58px);
    max-height: calc(100vh - 58px);
}

.hero-inner {
    display: grid;
    grid-template-columns: 55% 45%;
    height: 100%;
}

.hero-content {
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline {
    font-family: 'Permanent Marker', cursive;
    font-size: 18px;
    color: var(--red);
    margin-bottom: 15px;
    transform: rotate(-2deg);
}

.hero h1 {
    font-family: 'Anton', sans-serif;
    font-size: 72px;
    line-height: 0.95;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--red);
    display: block;
}

.hero p {
    font-family: 'Lora', serif;
    font-size: 16px;
    color: rgba(248, 246, 241, 0.7);
    margin-bottom: 30px;
    max-width: 380px;
}

.search-box {
    display: flex;
    max-width: 450px;
}

.search-box input {
    flex: 1;
    padding: 15px 20px;
    border: 3px solid var(--white);
    background: var(--white);
    color: var(--black);
    font-family: 'Lora', serif;
    font-size: 14px;
}

.search-box input::placeholder {
    color: #888;
}

.search-box .btn-primary {
    padding: 15px 28px;
}

.search-doodle {
    margin-top: 12px;
    font-family: 'Permanent Marker', cursive;
    font-size: 14px;
    color: var(--red);
}

.hero-image {
    position: relative;
    background: var(--grey);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: contrast(1.1) saturate(0.9);
}

/* Heavy halftone overlay */
.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--black) 2px, transparent 2px);
    background-size: 6px 6px;
    opacity: 0.25;
    pointer-events: none;
}

/* Zine edge treatment */
.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 60px rgba(20, 20, 20, 0.4);
    pointer-events: none;
    z-index: 1;
}

.quick-links {
    margin-top: 25px;
    font-family: 'Special Elite', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
}

.quick-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 10px;
    border-bottom: 2px solid var(--red);
    padding-bottom: 2px;
}

/* ============ SECTION HEADERS ============ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 4px solid var(--black);
}

.section-header h2 {
    font-family: 'Anton', sans-serif;
    font-size: 42px;
    text-transform: uppercase;
    color: var(--black);
}

.section-header h2 .accent {
    color: var(--red);
}

.section-header a {
    font-family: 'Permanent Marker', cursive;
    font-size: 16px;
    color: var(--red);
    text-decoration: none;
}

/* ============ CRAG CARDS ============ */
.crag-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.crag-card {
    background: var(--white);
    border: 3px solid var(--black);
    position: relative;
    transition: transform 0.2s;
}

.crag-card::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: -5px;
    bottom: -5px;
    background: var(--black);
    z-index: -1;
}

.crag-card:hover {
    transform: translate(-3px, -3px);
}

.crag-card-img {
    height: 150px;
    background: var(--grey);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-family: 'Special Elite', monospace;
    font-size: 12px;
    opacity: 0.5;
    position: relative;
    border-bottom: 3px solid var(--black);
}

.crag-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--black) 1.5px, transparent 1.5px);
    background-size: 5px 5px;
    opacity: 0.2;
}

.crag-card-content {
    padding: 16px;
}

.crag-card h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 4px;
}

.crag-card-location {
    font-family: 'Special Elite', monospace;
    color: var(--black);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    opacity: 0.6;
}

.crag-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stars {
    font-family: 'Anton', sans-serif;
    font-size: 16px;
    color: var(--red);
    letter-spacing: 1px;
}

.review-count {
    font-family: 'Special Elite', monospace;
    color: var(--black);
    font-size: 11px;
    opacity: 0.6;
}

.tags {
    display: flex;
    gap: 6px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.tag {
    font-family: 'Special Elite', monospace;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--black);
    color: var(--white);
    padding: 3px 8px;
}

.tag-red {
    background: var(--red);
}

/* Rating badge */
.rating-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--red);
    color: var(--white);
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    padding: 8px 12px;
    z-index: 2;
    transform: rotate(3deg);
}

/* ============ FEATURED SPREAD ============ */
.magazine-spread {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 25px;
}

.magazine-spread .feature-card {
    grid-row: span 2;
}

.feature-card {
    background: var(--white);
    border: 4px solid var(--black);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: -8px;
    bottom: -8px;
    background: var(--red);
    z-index: -1;
}

.feature-card-img {
    height: 300px;
    background: var(--grey);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-family: 'Special Elite', monospace;
    font-size: 14px;
    opacity: 0.5;
    position: relative;
    border-bottom: 4px solid var(--black);
}

.feature-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--black) 2px, transparent 2px);
    background-size: 6px 6px;
    opacity: 0.2;
}

.feature-card-content {
    padding: 25px;
}

.feature-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 36px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 8px;
}

.feature-card .crag-card-location {
    font-size: 13px;
    margin-bottom: 15px;
}

.feature-card .excerpt {
    font-family: 'Lora', serif;
    font-style: italic;
    color: var(--black);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.8;
}

.stamp {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--black);
    color: var(--white);
    font-family: 'Permanent Marker', cursive;
    font-size: 12px;
    padding: 6px 12px;
    transform: rotate(-5deg);
    z-index: 2;
}

/* ============ CRAG DETAIL HEADER ============ */
.crag-detail-header {
    background: var(--black);
}

.crag-detail-header-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.crag-detail-header-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.crag-detail-header .breadcrumb {
    font-family: 'Special Elite', monospace;
    font-size: 12px;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.crag-detail-header h1 {
    font-family: 'Anton', sans-serif;
    font-size: 80px;
    line-height: 0.95;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.crag-detail-header .location {
    font-family: 'Special Elite', monospace;
    font-size: 14px;
    color: rgba(248, 246, 241, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.crag-detail-header-image {
    position: relative;
    background: var(--grey);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Special Elite', monospace;
    color: var(--black);
    overflow: hidden;
}

.crag-detail-header-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
    pointer-events: none;
    z-index: 2;
}

.header-rating {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: var(--red);
    color: var(--white);
    padding: 18px 22px;
    z-index: 2;
    text-align: center;
}

.header-rating-number {
    font-family: 'Anton', sans-serif;
    font-size: 40px;
    line-height: 1;
}

.header-rating-label {
    font-family: 'Special Elite', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============ DETAIL CONTENT ============ */
.crag-detail-content {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    padding: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.crag-main {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.crag-section {
    background: var(--white);
    border: 3px solid var(--black);
    position: relative;
}

.crag-section::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: -5px;
    bottom: -5px;
    background: var(--black);
    z-index: -1;
}

.crag-section-header {
    background: var(--black);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.crag-section-header h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

.crag-section-body {
    padding: 22px;
}

/* Quick facts */
.quick-facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.quick-fact {
    text-align: center;
    padding: 20px 12px;
    border-right: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
}

.quick-fact:nth-child(3n) {
    border-right: none;
}

.quick-fact:nth-child(n+4) {
    border-bottom: none;
}

.quick-fact-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.quick-fact-label {
    font-family: 'Special Elite', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
    opacity: 0.6;
    margin-bottom: 4px;
}

.quick-fact-value {
    font-family: 'Archivo Black', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--black);
}

/* About */
.crag-about {
    font-family: 'Lora', serif;
    font-size: 15px;
    line-height: 1.8;
    color: var(--black);
}

.crag-about p {
    margin-bottom: 15px;
}

.pull-quote {
    font-family: 'Permanent Marker', cursive;
    font-size: 22px;
    color: var(--red);
    padding: 20px 0;
    margin: 20px 0;
    border-top: 3px solid var(--black);
    border-bottom: 3px solid var(--black);
}

/* Ratings */
.ratings-breakdown {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-row-label {
    width: 120px;
    font-family: 'Special Elite', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
}

.rating-bar {
    flex: 1;
    height: 12px;
    background: var(--grey);
    border: 2px solid var(--black);
}

.rating-bar-fill {
    height: 100%;
    background: var(--black);
}

.rating-row-value {
    width: 35px;
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    text-align: right;
    color: var(--red);
}

/* Reviews */
.reviews-list {
    display: flex;
    flex-direction: column;
}

.review-item {
    padding: 22px;
    border-bottom: 2px solid var(--black);
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Archivo Black', sans-serif;
    color: var(--white);
    font-size: 16px;
}

.reviewer-name {
    font-family: 'Archivo Black', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--black);
}

.reviewer-meta {
    font-family: 'Special Elite', monospace;
    font-size: 11px;
    color: var(--black);
    opacity: 0.6;
}

.review-rating {
    font-family: 'Anton', sans-serif;
    font-size: 16px;
    color: var(--red);
}

.review-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 8px;
}

.review-content {
    font-family: 'Lora', serif;
    color: var(--black);
    font-size: 14px;
    line-height: 1.7;
}

.review-footer {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--black);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-visit-info {
    font-family: 'Special Elite', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
    opacity: 0.6;
}

.review-helpful {
    font-family: 'Special Elite', monospace;
    font-size: 11px;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-helpful button {
    background: var(--white);
    border: 2px solid var(--black);
    font-family: 'Special Elite', monospace;
    font-size: 11px;
    padding: 4px 10px;
    cursor: pointer;
}

.review-helpful button:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

/* Sidebar */
.crag-sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.sidebar-card {
    background: var(--white);
    border: 3px solid var(--black);
    position: relative;
}

.sidebar-card::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: -5px;
    bottom: -5px;
    background: var(--red);
    z-index: -1;
}

.sidebar-card-header {
    background: var(--black);
    padding: 10px 16px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

.sidebar-card-body {
    padding: 18px;
}

.overall-rating {
    text-align: center;
    padding: 15px;
}

.overall-rating-number {
    font-family: 'Anton', sans-serif;
    font-size: 64px;
    color: var(--black);
    line-height: 1;
}

.overall-rating-stars {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    color: var(--red);
    letter-spacing: 3px;
    margin: 10px 0;
}

.overall-rating-count {
    font-family: 'Special Elite', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
    opacity: 0.6;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 18px 18px;
}

.action-buttons .btn {
    width: 100%;
    padding: 12px;
}

.map-placeholder {
    height: 150px;
    background: var(--grey);
    border: 2px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Special Elite', monospace;
    font-size: 11px;
    color: var(--black);
    opacity: 0.5;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 130px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 130'%3E%3Cpath d='M30 125 L32 100 L28 75 L32 50 L30 25 L28 5' fill='none' stroke='%23141414' stroke-width='1.2' stroke-dasharray='5 3'/%3E%3Ccircle cx='30' cy='125' r='3' fill='none' stroke='%23141414' stroke-width='1'/%3E%3Ccircle cx='30' cy='75' r='3' fill='none' stroke='%23141414' stroke-width='1'/%3E%3Ccircle cx='28' cy='25' r='3' fill='none' stroke='%23141414' stroke-width='1'/%3E%3Ctext x='40' y='95' font-family='monospace' font-size='7' fill='%23d62828'%3E5.9%3C/text%3E%3Ctext x='40' y='50' font-family='monospace' font-size='7' fill='%23d62828'%3E5.10%3C/text%3E%3C/svg%3E");
    background-repeat: no-repeat;
    opacity: 0.25;
}

.map-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--black) 1px, transparent 1px);
    background-size: 4px 4px;
    opacity: 0.15;
}

.parking-info {
    font-family: 'Lora', serif;
    font-size: 13px;
    color: var(--black);
    line-height: 1.7;
}

.parking-info strong {
    font-family: 'Special Elite', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.parking-info a {
    color: var(--red);
    font-family: 'Permanent Marker', cursive;
    font-size: 13px;
}

/* Amenities */
.amenity-list {
    display: flex;
    flex-direction: column;
}

.amenity-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--black);
}

.amenity-item:last-child {
    border-bottom: none;
}

.amenity-icon {
    font-size: 22px;
}

.amenity-info h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--black);
}

.amenity-info p {
    font-family: 'Special Elite', monospace;
    font-size: 11px;
    color: var(--black);
    opacity: 0.6;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--black);
    padding: 50px;
    margin-top: 50px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .logo {
    background: transparent;
    padding: 0;
    margin-bottom: 15px;
    font-size: 24px;
}

.footer-brand p {
    font-family: 'Permanent Marker', cursive;
    color: rgba(248, 246, 241, 0.5);
    font-size: 14px;
}

.footer-col h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 14px;
    color: var(--red);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    font-family: 'Special Elite', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(248, 246, 241, 0.5);
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 35px auto 0;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-family: 'Permanent Marker', cursive;
    font-size: 14px;
    color: rgba(248, 246, 241, 0.3);
}

/* ============ ADDITIONAL PAGE STYLES ============ */

/* Links */
a {
    color: inherit;
    text-decoration: none;
}

.link-arrow {
    color: var(--red);
    font-family: 'Special Elite', monospace;
    font-size: 13px;
}

/* Active nav state */
.nav-links a.active {
    background: var(--red);
}

/* ============ EXPLORE PAGE ============ */
.explore-header {
    background: var(--black);
    padding: 50px 20px;
    text-align: center;
}

.explore-header-inner {
    max-width: 800px;
    margin: 0 auto;
}

.explore-header h1 {
    font-family: 'Anton', sans-serif;
    font-size: 56px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.explore-header h1 .accent {
    color: var(--red);
}

.explore-search {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.explore-search input {
    flex: 1;
    padding: 15px 20px;
    border: 3px solid var(--white);
    background: var(--white);
    font-family: 'Lora', serif;
    font-size: 14px;
}

.explore-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.explore-filters {
    position: sticky;
    top: 20px;
    align-self: start;
}

.filter-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--grey);
}

.filter-section h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.filter-section label {
    display: block;
    font-size: 14px;
    padding: 6px 0;
    cursor: pointer;
}

.filter-section input[type="checkbox"] {
    margin-right: 8px;
}

.filter-clear {
    width: 100%;
    background: var(--white);
    border: 2px solid var(--black);
    color: var(--black);
}

.filter-clear:hover {
    background: var(--black);
    color: var(--white);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--black);
}

.results-count {
    font-family: 'Special Elite', monospace;
    font-size: 13px;
    text-transform: uppercase;
}

.results-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.results-sort label {
    font-family: 'Special Elite', monospace;
    font-size: 12px;
    text-transform: uppercase;
}

.results-sort select {
    padding: 8px 12px;
    border: 2px solid var(--black);
    background: var(--white);
    font-family: 'Lora', serif;
    font-size: 13px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--grey);
}

.pagination .btn-outline {
    background: var(--white);
    border: 2px solid var(--black);
    color: var(--black);
}

.pagination .btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

.page-info {
    font-family: 'Special Elite', monospace;
    font-size: 13px;
}

/* ============ SUBMIT PAGE ============ */
.submit-header {
    background: var(--black);
    padding: 50px 20px;
    text-align: center;
}

.submit-header h1 {
    font-family: 'Anton', sans-serif;
    font-size: 56px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.submit-header h1 .accent {
    color: var(--red);
}

.submit-header p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
}

.submit-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.submit-form {
    background: var(--white);
    border: 3px solid var(--black);
    padding: 30px;
}

.form-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--grey);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Special Elite', monospace;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--black);
    background: var(--newsprint);
    font-family: 'Lora', serif;
    font-size: 14px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-hint {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-family: 'Lora', serif;
    font-size: 14px;
    text-transform: none;
    cursor: pointer;
}

.checkbox-group input {
    width: auto;
    margin-right: 6px;
}

.file-upload {
    position: relative;
    border: 2px dashed var(--black);
    padding: 30px;
    text-align: center;
    cursor: pointer;
    background: var(--newsprint);
}

.file-upload input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-label span {
    display: block;
}

.form-actions {
    text-align: center;
    padding-top: 20px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 14px;
}

.form-note {
    margin-top: 15px;
    font-size: 13px;
    color: #666;
}

.submit-sidebar .sidebar-card {
    margin-bottom: 20px;
}

.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}

.tips-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--red);
}

/* ============ REVIEWS PREVIEW (Homepage) ============ */
.reviews-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.review-preview-card {
    background: var(--white);
    border: 3px solid var(--black);
    padding: 20px;
}

.review-preview-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.review-preview-header .reviewer-avatar {
    width: 36px;
    height: 36px;
    font-size: 14px;
}

.review-preview-header strong {
    font-family: 'Archivo Black', sans-serif;
    font-size: 13px;
}

.review-preview-header .review-crag {
    font-size: 12px;
    color: #666;
}

.review-preview-header .review-crag a {
    color: var(--red);
}

.review-preview-header .stars {
    margin-left: auto;
    color: var(--red);
    font-size: 14px;
}

.review-preview-card p {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 12px;
}

.review-preview-footer {
    font-family: 'Special Elite', monospace;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
}

/* ============ LOAD MORE BUTTON ============ */
.load-more {
    display: block;
    width: 100%;
    margin-top: 20px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
    .explore-content {
        grid-template-columns: 1fr;
    }
    
    .explore-filters {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .filter-section {
        flex: 1;
        min-width: 150px;
        border-bottom: none;
        border-right: 2px solid var(--grey);
        padding-right: 20px;
        margin-bottom: 0;
    }
    
    .submit-content {
        grid-template-columns: 1fr;
    }
    
    .reviews-preview {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        display: none;
    }
    
    .magazine-spread {
        grid-template-columns: 1fr;
    }
    
    .crag-detail-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============ SCROLL INDICATOR ============ */
.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    z-index: 100;
    animation: bounce 2s infinite;
    text-decoration: none;
}

.scroll-indicator span {
    font-family: 'Special Elite', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    opacity: 0.7;
}

.scroll-indicator .arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s;
}

.scroll-indicator:hover .arrow {
    background: var(--red);
    border-color: var(--red);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============ DIRTBAG ELEMENTS ============ */

/* CSS Mountains */
.mountains {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    pointer-events: none;
    z-index: 1;
}

.mountain-range {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.mountain-range-back {
    height: 180px;
    background: 
        linear-gradient(125deg, transparent 40%, #2a2a2a 40%, #2a2a2a 42%, transparent 42%),
        linear-gradient(235deg, transparent 35%, #2a2a2a 35%, #2a2a2a 37%, transparent 37%),
        linear-gradient(145deg, transparent 55%, #333 55%, #333 58%, transparent 58%),
        linear-gradient(215deg, transparent 45%, #333 45%, #333 48%, transparent 48%),
        linear-gradient(135deg, transparent 32%, #2a2a2a 32%, #2a2a2a 35%, transparent 35%);
    opacity: 0.4;
}

.mountain-range-front {
    height: 120px;
    background: 
        linear-gradient(130deg, transparent 45%, var(--black) 45%) -100px 0,
        linear-gradient(230deg, transparent 45%, var(--black) 45%) 100px 0,
        linear-gradient(140deg, transparent 50%, #1a1a1a 50%) 200px 0,
        linear-gradient(220deg, transparent 50%, #1a1a1a 50%) 400px 0;
    background-size: 300px 100%, 300px 100%, 400px 100%, 400px 100%;
}

/* Stickers */
.sticker {
    position: absolute;
    font-family: 'Permanent Marker', cursive;
    padding: 8px 15px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 2px 2px 0 rgba(0,0,0,0.4);
    z-index: 10;
    white-space: nowrap;
}

.sticker-1 {
    background: #ffeb3b;
    color: var(--black);
    top: 30px;
    right: 30px;
    transform: rotate(12deg);
}

.sticker-2 {
    background: var(--red);
    color: var(--white);
    bottom: 100px;
    right: 50px;
    transform: rotate(-8deg);
    font-size: 13px;
    padding: 10px 18px;
}

.sticker-3 {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
    transform: rotate(4deg);
}

/* Tape strips */
.tape {
    position: absolute;
    width: 80px;
    height: 25px;
    background: rgba(255, 235, 180, 0.7);
    z-index: 5;
}

.tape::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.03) 2px,
        rgba(0,0,0,0.03) 4px
    );
}

.tape-1 {
    top: -12px;
    left: 20%;
    transform: rotate(-3deg);
}

.tape-2 {
    bottom: -12px;
    right: 15%;
    transform: rotate(5deg);
}

/* Chalk marks */
.chalk-mark {
    position: absolute;
    font-family: 'Permanent Marker', cursive;
    color: rgba(255,255,255,0.15);
    font-size: 48px;
    pointer-events: none;
    z-index: 0;
}

/* Coffee stain ring */
.coffee-stain {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(139, 90, 43, 0.15);
    border-radius: 50%;
    z-index: 0;
}

/* Crossed out text for attitude */
.crossed-out {
    text-decoration: line-through;
    opacity: 0.5;
}

/* Hand-drawn underline */
.scribble-underline {
    position: relative;
    display: inline-block;
}

.scribble-underline::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 3px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10'%3E%3Cpath d='M0 8 Q25 2 50 8 T100 8' fill='none' stroke='%23d62828' stroke-width='2'/%3E%3C/svg%3E") repeat-x;
    background-size: 50px 6px;
}

/* Section divider with mountains */
.divider-mountains {
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60'%3E%3Cpath d='M0 60 L150 20 L200 35 L350 5 L400 25 L500 15 L600 30 L700 10 L800 25 L900 8 L1000 30 L1100 15 L1200 40 L1200 60 Z' fill='%23141414'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
    margin: 40px 0;
}

/* Dirtbag quote styling */
.dirtbag-quote {
    font-family: 'Permanent Marker', cursive;
    font-size: 24px;
    color: var(--red);
    transform: rotate(-2deg);
    margin: 30px 0;
    padding-left: 20px;
    border-left: 4px solid var(--red);
}

/* Rating with attitude */
.rating-brutal {
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}

.rating-brutal.good { color: #4caf50; }
.rating-brutal.meh { color: #ff9800; }
.rating-brutal.bad { color: var(--red); }

/* X marks the spot */
.x-mark {
    position: relative;
    display: inline-block;
}

.x-mark::before,
.x-mark::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--red);
    top: 50%;
    left: 0;
}

.x-mark::before { transform: rotate(45deg); }
.x-mark::after { transform: rotate(-45deg); }

/* Carabiner bullet points */
.dirtbag-list {
    list-style: none;
    padding-left: 30px;
}

.dirtbag-list li {
    position: relative;
    margin-bottom: 12px;
}

.dirtbag-list li::before {
    content: '⌘';
    position: absolute;
    left: -25px;
    color: var(--red);
    font-weight: bold;
}

/* Hero mountains overlay */
.hero-mountains {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 150' preserveAspectRatio='none'%3E%3Cpath d='M0 150 L0 100 L100 60 L200 90 L300 40 L400 70 L500 30 L600 80 L700 50 L800 70 L900 35 L1000 65 L1100 45 L1200 80 L1200 150 Z' fill='%23141414' opacity='0.6'/%3E%3Cpath d='M0 150 L0 120 L150 80 L250 100 L400 60 L500 90 L650 55 L750 85 L900 50 L1000 75 L1100 60 L1200 90 L1200 150 Z' fill='%23141414' opacity='0.8'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    pointer-events: none;
    z-index: 2;
}

/* Footer mountains */
.footer-mountains {
    display: none;
}

/* Grunge texture overlay for cards */
.grunge-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* ============ ROCKY THE DIRTBAG CHATBOT ============ */
.rocky-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Lora', Georgia, serif;
}

.rocky-bubble {
    position: absolute;
    bottom: 140px;
    right: 0;
    width: 300px;
    max-width: calc(100vw - 40px);
    background: var(--newsprint);
    border: 4px solid var(--black);
    padding: 18px;
    display: none;
    animation: bubblePop 0.3s ease-out;
    box-shadow: 6px 6px 0 var(--black);
}

.rocky-bubble.visible {
    display: block;
}

.rocky-bubble::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 45px;
    border: 12px solid transparent;
    border-top-color: var(--black);
}

.rocky-bubble::before {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 48px;
    border: 9px solid transparent;
    border-top-color: var(--newsprint);
    z-index: 1;
}

@keyframes bubblePop {
    0% { transform: scale(0.5) translateY(20px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

.rocky-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    color: var(--red);
    font-size: 22px;
    cursor: pointer;
    font-weight: bold;
    line-height: 1;
}

.rocky-close:hover {
    color: var(--black);
}

.rocky-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--black);
    margin-bottom: 15px;
    min-height: 60px;
}

.rocky-text .highlight {
    color: var(--red);
    font-weight: 700;
}

.rocky-text .dude {
    font-family: 'Permanent Marker', cursive;
    color: var(--red);
}

.rocky-btn {
    position: relative;
    width: 110px;
    height: 110px;
    background: var(--white);
    border: 5px solid var(--red);
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s;
    animation: rockyFloat 3s ease-in-out infinite;
    padding: 0;
}

.rocky-btn:hover {
    transform: scale(1.1);
    border-color: var(--black);
    box-shadow: 0 0 25px rgba(214, 40, 40, 0.6);
    animation: none;
}

@keyframes rockyFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.rocky-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.rocky-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: #ffeb3b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--black);
    font-weight: bold;
    animation: notifPulse 1s ease-in-out infinite;
    z-index: 1;
    border: 3px solid var(--black);
}

.rocky-notification.hidden {
    display: none;
}

@keyframes notifPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.rocky-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rocky-option {
    background: var(--white);
    border: 2px solid var(--black);
    padding: 10px 12px;
    font-size: 12px;
    color: var(--black);
    cursor: pointer;
    text-align: left;
    font-family: 'Special Elite', monospace;
    transition: all 0.15s;
}

.rocky-option:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    transform: translateX(3px);
}

/* ============ ARROW ANNOTATION ON HERO ============ */
.hero-arrow {
    position: absolute;
    top: 18%;
    left: 8%;
    z-index: 10;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-arrow-svg {
    width: clamp(50px, 8vw, 100px);
    height: clamp(130px, 20vh, 280px);
}

.hero-arrow-text {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(10px, 1.4vw, 16px);
    color: #ffeb3b;
    text-shadow: 2px 2px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
    white-space: nowrap;
    margin-bottom: 0;
}

/* Rocky's SEND IT sticker */
.rocky-sticker {
    position: absolute;
    bottom: 100px;
    right: 90px;
    background: var(--red);
    color: var(--white);
    font-family: 'Permanent Marker', cursive;
    font-size: 14px;
    padding: 8px 14px;
    transform: rotate(-12deg);
    box-shadow: 3px 3px 0 rgba(0,0,0,0.4);
    z-index: 5;
    pointer-events: none;
}

/* Rocky Mobile */
@media (max-width: 480px) {
    .rocky-container {
        right: 10px;
        bottom: 10px;
    }
    
    .rocky-bubble {
        right: 0;
        width: calc(100vw - 30px);
        max-width: 300px;
    }
    
    .rocky-sticker {
        display: none;
    }
    
    .rocky-btn {
        width: 70px;
        height: 70px;
    }
    
    .rocky-avatar {
        width: 60px;
        height: 60px;
    }
}

/* ============ ANIMATED LOGO ============ */
.logo-svg {
    height: 42px;
    width: auto;
    display: block;
}

/* Smoke animation */
.smoke-1 {
    animation: smokeRise1 2.5s ease-out infinite;
}

.smoke-2 {
    animation: smokeRise2 2.5s ease-out infinite;
    animation-delay: 0.4s;
}

.smoke-3 {
    animation: smokeRise3 2.5s ease-out infinite;
    animation-delay: 0.8s;
}

@keyframes smokeRise1 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translate(5px, -15px) scale(2);
        opacity: 0;
    }
}

@keyframes smokeRise2 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: translate(8px, -18px) scale(2.2);
        opacity: 0;
    }
}

@keyframes smokeRise3 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translate(10px, -20px) scale(2.5);
        opacity: 0;
    }
}

.navbar .logo {
    padding: 8px 20px;
}

.footer .logo-svg {
    height: 32px;
}

/* ============ HAMBURGER MENU ============ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    margin-left: auto;
    margin-right: 15px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger animation to X */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile auth buttons inside menu - hidden by default */
.nav-auth-mobile {
    display: none;
}

/* Mobile Styles */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 4px solid var(--red);
        box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links li a {
        display: block;
        padding: 15px 0;
        font-size: 18px;
    }
    
    .nav-auth {
        display: none;
    }
    
    .nav-auth-mobile {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-top: 20px;
        border-bottom: none !important;
    }
    
    .nav-auth-mobile .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Overlay when menu is open */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 600px) {
    .logo {
        font-size: 20px;
        padding: 12px 15px;
    }
    
    .nav-links {
        width: 100%;
        right: -100%;
    }
}

/* ============ COMMUNITY SECTION ============ */
.community-section {
    background: var(--black);
    padding: 60px 20px;
}

.community-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Edit Info Bar */
.edit-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 40px;
    font-size: 14px;
}

.last-updated {
    color: rgba(255,255,255,0.6);
}

.last-updated a {
    color: var(--red);
}

.edit-history-link {
    margin-left: 15px;
    font-size: 13px;
}

.edit-actions {
    display: flex;
    gap: 10px;
}

.btn-small {
    padding: 8px 12px;
    font-size: 12px;
}

.user-link {
    color: var(--white);
    font-weight: 600;
}

/* Comments Section */
.comments-section h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 28px;
    margin-bottom: 5px;
}

.comments-subtitle {
    color: rgba(255,255,255,0.5);
    margin-bottom: 30px;
    font-size: 14px;
}

/* Comment Form */
.comment-form-wrapper {
    margin-bottom: 40px;
}

.comment-form textarea {
    width: 100%;
    padding: 15px;
    background: var(--newsprint);
    border: 2px solid var(--black);
    font-family: 'Lora', Georgia, serif;
    font-size: 15px;
    color: var(--black);
    resize: vertical;
    min-height: 100px;
}

.comment-form textarea:focus {
    outline: none;
    border-color: var(--red);
}

.comment-form textarea::placeholder {
    color: rgba(0,0,0,0.4);
}

.comment-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.anon-note {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.anon-note a {
    color: var(--red);
}

/* Comments List */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.comment {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--white);
}

.author-avatar {
    font-size: 18px;
}

.comment-meta {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.trust-badge {
    background: rgba(255,193,7,0.2);
    color: #ffc107;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
}

.comment-body {
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 12px;
}

.comment-actions {
    display: flex;
    gap: 15px;
}

.comment-action {
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    cursor: pointer;
    padding: 5px 0;
    font-family: 'Special Elite', monospace;
    transition: color 0.2s;
}

.comment-action:hover {
    color: var(--red);
}

/* Comment Reply */
.comment-reply {
    margin-top: 15px;
    margin-left: 30px;
    padding: 15px;
    background: rgba(255,255,255,0.02);
    border-left: 3px solid var(--red);
}

.comment-reply .comment-header {
    margin-bottom: 8px;
}

.comment-reply .comment-body {
    margin-bottom: 8px;
}

/* Load More */
.load-more {
    display: block;
    width: 100%;
    text-align: center;
}

/* Mobile */
@media (max-width: 600px) {
    .edit-info-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .edit-actions {
        width: 100%;
    }
    
    .edit-actions .btn {
        flex: 1;
    }
    
    .comment-form-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment-form-footer .btn {
        width: 100%;
    }
    
    .comment-reply {
        margin-left: 15px;
    }
}

/* ============ SUBMIT PAGE NOTICES ============ */
.submit-notice {
    background: rgba(214, 40, 40, 0.1);
    border: 2px solid var(--red);
    margin: 0 auto 30px;
    max-width: 800px;
    padding: 0 20px;
}

.notice-inner {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
}

.notice-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.notice-content {
    flex: 1;
}

.notice-content strong {
    display: block;
    margin-bottom: 5px;
    font-family: 'Archivo Black', sans-serif;
    color: var(--black);
}

.notice-content p {
    font-size: 14px;
    color: rgba(0,0,0,0.7);
    margin: 0;
}

.notice-content a {
    color: var(--red);
    font-weight: 600;
}

/* Trust Info Box */
.trust-info-box {
    background: rgba(0,0,0,0.03);
    border-left: 4px solid var(--red);
    padding: 20px;
    margin-bottom: 30px;
}

.trust-info-box h4 {
    font-family: 'Archivo Black', sans-serif;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--black);
}

.trust-info-box ul {
    margin: 0;
    padding-left: 20px;
}

.trust-info-box li {
    font-size: 14px;
    color: rgba(0,0,0,0.7);
    margin-bottom: 8px;
    line-height: 1.4;
}

.trust-info-box li:last-child {
    margin-bottom: 0;
}

/* ============ AUTH MODAL ============ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    padding: 20px;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--newsprint);
    color: var(--black);
    width: 100%;
    max-width: 400px;
    padding: 40px;
    position: relative;
    border: 4px solid var(--black);
    box-shadow: 8px 8px 0 var(--black);
    transform: translateY(-20px);
    transition: transform 0.3s;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--black);
    line-height: 1;
}

.modal-close:hover {
    color: var(--red);
}

.modal-content h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.modal-content > p {
    font-size: 14px;
    color: rgba(0,0,0,0.6);
    margin-bottom: 25px;
}

/* OAuth Buttons */
.oauth-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-oauth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 2px solid var(--black);
    background: var(--white);
    font-family: 'Archivo Black', sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-oauth:hover {
    transform: translateY(-2px);
    box-shadow: 3px 3px 0 var(--black);
}

.btn-oauth svg {
    width: 20px;
    height: 20px;
}

.btn-google:hover {
    background: #4285f4;
    color: white;
    border-color: #4285f4;
}

.btn-discord:hover {
    background: #5865F2;
    color: white;
    border-color: #5865F2;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0,0,0,0.2);
}

.divider span {
    padding: 0 15px;
    font-size: 12px;
    color: rgba(0,0,0,0.4);
    text-transform: uppercase;
}

/* Auth Form */
#auth-form .form-group {
    margin-bottom: 15px;
}

#auth-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--black);
    background: var(--white);
    font-family: 'Lora', Georgia, serif;
    font-size: 15px;
}

#auth-form input:focus {
    outline: none;
    border-color: var(--red);
}

.btn-full {
    width: 100%;
}

.auth-toggle {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: rgba(0,0,0,0.6);
}

.auth-toggle a {
    color: var(--red);
    font-weight: 600;
}

.hidden {
    display: none !important;
}

/* User greeting in nav */
.user-greeting {
    color: var(--white);
    font-family: 'Permanent Marker', cursive;
    font-size: 14px;
    margin-right: 10px;
}

/* Disabled state for requires-auth buttons */
.requires-auth.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ============ NEW SITE / EMPTY STATES ============ */
.new-badge {
    background: rgba(214, 40, 40, 0.2);
    color: var(--red);
    padding: 4px 10px;
    font-size: 12px;
    font-family: 'Special Elite', monospace;
    border-radius: 3px;
}

.header-new-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--red);
    color: var(--white);
    padding: 12px 18px;
    text-align: center;
    z-index: 2;
}

.header-new-label {
    font-family: 'Archivo Black', sans-serif;
    font-size: 16px;
}

.header-new-sublabel {
    font-size: 11px;
    opacity: 0.8;
    margin-top: 2px;
}

.new-crag-note {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* Empty Comments State */
.empty-comments {
    text-align: center;
    padding: 60px 20px;
    border: 2px dashed rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.02);
}

.empty-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.empty-comments h3 {
    font-family: 'Archivo Black', sans-serif;
    margin-bottom: 10px;
}

.empty-comments p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Community CTA Section */
.community-cta {
    text-align: center;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.cta-card {
    background: var(--white);
    border: 2px solid var(--black);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.2s;
    box-shadow: 5px 5px 0 var(--black);
}

.cta-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 var(--black);
}

.cta-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-card h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--black);
}

.cta-card p {
    font-size: 14px;
    color: rgba(0,0,0,0.6);
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-card .btn {
    width: 100%;
}

.cta-card .btn-outline {
    background: var(--white);
    color: var(--black);
    border-color: var(--black);
}

.cta-card .btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

@media (max-width: 900px) {
    .cta-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ REVIEW FORM ============ */
.write-review-form {
    background: var(--newsprint);
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid var(--black);
}

.write-review-form h3 {
    font-family: 'Archivo Black', sans-serif;
    color: var(--black);
    margin-bottom: 5px;
}

.form-subtitle {
    color: rgba(0,0,0,0.5);
    font-size: 14px;
    margin-bottom: 25px;
}

.write-review-form .form-group {
    margin-bottom: 20px;
}

.write-review-form label {
    display: block;
    font-family: 'Special Elite', monospace;
    font-size: 13px;
    color: var(--black);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.write-review-form input,
.write-review-form select,
.write-review-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--black);
    background: var(--white);
    font-family: 'Lora', Georgia, serif;
    font-size: 15px;
    color: var(--black);
}

.write-review-form input:focus,
.write-review-form select:focus,
.write-review-form textarea:focus {
    outline: none;
    border-color: var(--red);
}

.write-review-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Photo Upload */
.photo-upload-area {
    border: 2px dashed rgba(0,0,0,0.3);
    background: rgba(0,0,0,0.02);
    padding: 20px;
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    cursor: pointer;
    transition: all 0.2s;
}

.upload-placeholder:hover {
    background: rgba(0,0,0,0.05);
}

.upload-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.upload-placeholder span {
    color: var(--black);
    font-size: 14px;
}

.upload-hint {
    color: rgba(0,0,0,0.4) !important;
    font-size: 12px !important;
    margin-top: 5px;
}

.photo-previews {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.photo-preview {
    position: relative;
    width: 80px;
    height: 80px;
}

.photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid var(--black);
}

.photo-preview .remove-photo {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    background: var(--red);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.form-footer .anon-note {
    font-size: 13px;
    color: rgba(0,0,0,0.5);
}

/* Reviews Empty State */
.reviews-empty {
    text-align: center;
    padding: 50px 20px;
    background: rgba(0,0,0,0.03);
    border: 2px dashed rgba(0,0,0,0.15);
}

.reviews-empty .empty-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.reviews-empty h4 {
    font-family: 'Archivo Black', sans-serif;
    margin-bottom: 8px;
    color: var(--black);
}

.reviews-empty p {
    color: rgba(0,0,0,0.5);
    font-size: 14px;
}

/* Conditions Grid */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.condition-item {
    background: rgba(0,0,0,0.03);
    padding: 15px;
    border-left: 3px solid var(--red);
}

.condition-label {
    display: block;
    font-family: 'Special Elite', monospace;
    font-size: 11px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.5);
    margin-bottom: 5px;
}

.condition-value {
    font-size: 14px;
    color: var(--black);
    font-weight: 600;
}

.conditions-note {
    font-size: 13px;
    color: rgba(0,0,0,0.5);
}

.conditions-note a {
    color: var(--red);
}

/* Sidebar CTA */
.sidebar-cta {
    text-align: center;
    padding: 20px 15px;
}

.cta-badge {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 5px 15px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 14px;
    margin-bottom: 10px;
}

.sidebar-cta p {
    font-size: 14px;
    color: rgba(0,0,0,0.6);
}

@media (max-width: 600px) {
    .write-review-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .conditions-grid {
        grid-template-columns: 1fr;
    }
    
    .form-footer {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-footer .btn {
        width: 100%;
    }
}

/* Conditions Extra Info */
.conditions-extra {
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 15px 20px;
    margin: 20px 0;
    font-size: 14px;
}

.conditions-extra p {
    margin: 8px 0;
    color: rgba(0,0,0,0.7);
}

.conditions-extra strong {
    color: var(--black);
}

/* Map Container */
.map-container {
    margin-bottom: 15px;
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Coords styling */
.coord-value {
    font-family: 'Special Elite', monospace;
    background: rgba(0,0,0,0.05);
    padding: 2px 6px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* ============ ROUTES TABLE ============ */
.route-count {
    font-family: 'Special Elite', monospace;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.grade-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.filter-label {
    font-family: 'Special Elite', monospace;
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.5);
    margin-right: 5px;
}

.grade-btn {
    padding: 6px 12px;
    border: 2px solid var(--black);
    background: var(--white);
    font-family: 'Special Elite', monospace;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s;
}

.grade-btn:hover,
.grade-btn.active {
    background: var(--black);
    color: var(--white);
}

.routes-table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
}

.routes-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.routes-table th {
    text-align: left;
    padding: 12px 15px;
    background: var(--black);
    color: var(--white);
    font-family: 'Special Elite', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.routes-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    color: var(--black);
}

.routes-table tr:hover {
    background: rgba(0,0,0,0.03);
}

.route-name {
    font-weight: 600;
}

.grade {
    display: inline-block;
    padding: 4px 10px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 12px;
    border-radius: 3px;
}

.grade-beginner {
    background: #27ae60;
    color: white;
}

.grade-intermediate {
    background: #3498db;
    color: white;
}

.grade-advanced {
    background: #f39c12;
    color: white;
}

.grade-expert {
    background: #e74c3c;
    color: white;
}

.routes-note {
    font-size: 13px;
    color: rgba(0,0,0,0.6);
    padding: 15px;
    background: rgba(0,0,0,0.03);
    border-left: 3px solid var(--red);
}

.routes-note a {
    color: var(--red);
}

/* Hide filtered rows */
.routes-table tr.hidden {
    display: none;
}

@media (max-width: 600px) {
    .grade-filter {
        justify-content: flex-start;
    }
    
    .routes-table {
        font-size: 13px;
    }
    
    .routes-table th,
    .routes-table td {
        padding: 10px 8px;
    }
    
    .routes-table th:nth-child(4),
    .routes-table td:nth-child(4),
    .routes-table th:nth-child(5),
    .routes-table td:nth-child(5) {
        display: none;
    }
}

/* ============ PHOTO GALLERY WITH VOTING ============ */
.photo-count {
    font-family: 'Special Elite', monospace;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.photos-intro {
    font-size: 14px;
    color: rgba(0,0,0,0.6);
    margin-bottom: 20px;
}

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

.gallery-item {
    background: var(--white);
    border: 2px solid var(--black);
    overflow: hidden;
    transition: transform 0.2s;
}

.gallery-item:hover {
    transform: translateY(-3px);
}

.gallery-img-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-rank {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 10px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 11px;
}

.photo-rank.rank-1 {
    background: var(--red);
}

.photo-rank.rank-2 {
    background: #f39c12;
}

.gallery-info {
    padding: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.photo-caption {
    font-weight: 600;
    font-size: 14px;
    color: var(--black);
    margin-bottom: 4px;
}

.photo-meta {
    font-size: 11px;
    color: rgba(0,0,0,0.5);
}

.photo-vote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: rgba(0,0,0,0.02);
}

.vote-btn {
    width: 32px;
    height: 32px;
    border: 2px solid var(--black);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.vote-btn:hover {
    background: var(--black);
    color: var(--white);
}

.vote-btn.voted {
    background: var(--red);
    border-color: var(--red);
    color: white;
}

.vote-arrow {
    font-size: 12px;
    line-height: 1;
}

.vote-count {
    font-family: 'Archivo Black', sans-serif;
    font-size: 16px;
    min-width: 30px;
    text-align: center;
    color: var(--black);
}

/* Add Photo Card */
.add-photo-card {
    border-style: dashed;
    background: rgba(0,0,0,0.02);
}

.add-photo-card:hover {
    background: rgba(0,0,0,0.05);
}

.add-photo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 200px;
    padding: 30px;
    cursor: pointer;
    text-align: center;
}

.add-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.add-text {
    font-family: 'Archivo Black', sans-serif;
    font-size: 14px;
    color: var(--black);
    margin-bottom: 5px;
}

.add-hint {
    font-size: 12px;
    color: rgba(0,0,0,0.5);
}

/* Banner Photo Styles */
.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.banner-photo-credit {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0,0,0,0.7);
    padding: 8px 15px;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    z-index: 10;
}

.btn-small-link {
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
}

.btn-small-link:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-info {
        padding: 8px;
    }
    
    .photo-caption {
        font-size: 12px;
    }
    
    .photo-meta {
        display: none;
    }
    
    .vote-count {
        font-size: 14px;
    }
    
    .banner-photo-credit {
        flex-direction: column;
        gap: 5px;
        bottom: 10px;
        right: 10px;
        padding: 6px 10px;
    }
}

/* ============ ABOUT SECTION EDITING ============ */
.edit-about-btn {
    padding: 6px 12px;
    border: 2px solid rgba(255,255,255,0.3);
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-family: 'Special Elite', monospace;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s;
}

.edit-about-btn:hover {
    border-color: var(--white);
    color: var(--white);
}

#about-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--black);
    background: var(--white);
    font-family: 'Lora', Georgia, serif;
    font-size: 14px;
    line-height: 1.6;
    resize: vertical;
    min-height: 150px;
}

#about-textarea:focus {
    outline: none;
    border-color: var(--red);
}

.edit-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.edit-actions .btn {
    padding: 10px 20px;
}

.edit-actions .btn-outline {
    background: var(--white);
    color: var(--black);
    border-color: var(--black);
}

.edit-actions .btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

.edit-note {
    font-size: 12px;
    color: rgba(0,0,0,0.5);
    margin-top: 15px;
    padding: 10px;
    background: rgba(0,0,0,0.03);
    border-left: 3px solid var(--red);
}

/* Disabled vote button */
.vote-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.vote-btn:disabled:hover {
    background: var(--white);
    color: var(--black);
}

/* ============ STATIC PAGES (About, Contact, Privacy, Guidelines) ============ */

.page-header {
    background: var(--black);
    color: var(--white);
    padding: 80px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-family: 'Archivo Black', 'Anton', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1;
    margin-bottom: 10px;
}

.page-header h1 .accent {
    color: var(--red);
}

.page-header .hero-tagline {
    font-family: 'Special Elite', monospace;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    font-family: 'Archivo Black', 'Anton', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--red);
}

.content-block h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.2rem;
    margin: 25px 0 10px;
}

.content-block p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.content-block a {
    color: var(--red);
    text-decoration: none;
    border-bottom: 1px solid var(--red);
    transition: opacity 0.2s;
}

.content-block a:hover {
    opacity: 0.7;
}

.content-block blockquote.dirtbag-quote {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.5rem;
    color: var(--red);
    text-align: center;
    padding: 30px;
    margin: 30px 0;
    background: rgba(214,40,40,0.05);
    border-left: 4px solid var(--red);
}

/* Feature List (About page) */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border: 2px solid var(--black);
}

.feature-icon {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.5rem;
    color: var(--red);
    min-width: 50px;
    text-align: center;
}

.feature-item h3 {
    margin: 0 0 8px;
}

.feature-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* Policy List (Privacy, Guidelines) */
.policy-list {
    list-style: none;
    margin: 20px 0;
}

.policy-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.policy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 8px;
    height: 8px;
    background: var(--red);
    transform: rotate(45deg);
}

.policy-list li:last-child {
    border-bottom: none;
}

.highlight-list li::before {
    background: #22c55e;
}

.policy-date {
    margin-top: 30px;
    color: rgba(0,0,0,0.5);
    font-size: 0.9rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-info h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-info > p {
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method h3 {
    font-family: 'Special Elite', monospace;
    font-size: 1rem;
    color: var(--red);
    margin-bottom: 5px;
}

.contact-method p {
    margin: 0;
    font-size: 0.95rem;
}

.contact-note {
    margin-top: 30px;
    padding: 15px;
    background: rgba(0,0,0,0.03);
    border-left: 3px solid var(--red);
    font-size: 0.9rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 30px;
    border: 2px solid var(--black);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-family: 'Special Elite', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--black);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--black);
    background: var(--newsprint);
    font-family: 'Lora', Georgia, serif;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--red);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form select {
    cursor: pointer;
}

/* Guidelines Page */
.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

@media (max-width: 768px) {
    .guidelines-grid {
        grid-template-columns: 1fr;
    }
}

.guideline-card {
    padding: 25px;
    background: var(--white);
    border: 2px solid var(--black);
}

.guideline-card h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.2rem;
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--black);
}

.guideline-card.do h3 {
    color: #22c55e;
    border-color: #22c55e;
}

.guideline-card.dont h3 {
    color: var(--red);
    border-color: var(--red);
}

.guideline-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.guideline-card li {
    padding: 8px 0 8px 20px;
    position: relative;
    font-size: 0.95rem;
}

.guideline-card.do li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.guideline-card.dont li::before {
    content: 'x';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: bold;
}

.good-info {
    background: var(--white);
    padding: 25px;
    border: 2px solid var(--black);
    margin: 20px 0;
}

.good-info h4 {
    font-family: 'Archivo Black', sans-serif;
    margin: 0 0 15px;
}

.good-info ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (max-width: 600px) {
    .good-info ul {
        grid-template-columns: 1fr;
    }
}

.good-info li {
    padding: 5px 0;
    font-size: 0.95rem;
}

/* Simple CTA */
.cta-simple {
    text-align: center;
    padding: 40px;
    margin-top: 40px;
    background: var(--black);
    color: var(--white);
}

.cta-simple p {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.cta-simple .btn {
    display: inline-block;
}

/* ============ NEAR ME & FILTERS ============ */
.near-me-header,
.filter-notice,
.error-notice,
.no-results {
    background: var(--white);
    border: 2px solid var(--black);
    padding: 15px 20px;
    margin-bottom: 20px;
    font-family: 'Lora', serif;
}

.near-me-header p,
.filter-notice p,
.error-notice p,
.no-results p {
    margin: 0;
}

.error-notice {
    border-color: var(--red);
}

.error-notice a,
.no-results a {
    color: var(--red);
}

.distance-badge {
    font-family: 'Special Elite', monospace;
    font-size: 11px;
    background: var(--black);
    color: var(--white);
    padding: 3px 8px;
}

.new-badge {
    font-family: 'Special Elite', monospace;
    font-size: 11px;
    color: var(--red);
}

.no-routes,
.no-nearby {
    text-align: center;
    padding: 20px;
    color: #666;
}

.no-routes a,
.no-nearby a {
    color: var(--red);
}
