/* Reset og grunnleggende styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Header og navigasjon */
header {
    background-color: #2c3e50;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-links a.active {
    border-bottom: 2px solid white;
    padding-bottom: 0.25rem;
}

/* Spillsidene.no boks - TYDELIG OG FREMTREDENDE */
.spillsidene-box {
    background-color: #e8f5e9;
    border: 4px solid #4caf50;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    position: relative;
}

.spillsidene-box::before {
    content: "🎮";
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: #4caf50;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1.5rem;
}

.spillsidene-box h3 {
    color: #2e7d32;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.spillsidene-box p {
    color: #2e7d32;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.spillsidene-box p:last-child {
    margin-bottom: 0;
}

.spillsidene-box strong {
    font-weight: 700;
    font-size: 1.15rem;
    color: #1b5e20;
}

.btn-spillsidene {
    display: inline-block;
    background-color: #4caf50;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.btn-spillsidene:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Disclaimer-boks - TYDELIG OG FREMTREDENDE */
.disclaimer-box {
    background-color: #fff3cd;
    border: 4px solid #ffc107;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    position: relative;
}

.disclaimer-box::before {
    content: "⚠️";
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: #ffc107;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1.5rem;
}

.disclaimer-box h3 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.disclaimer-box p {
    color: #856404;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

.disclaimer-box strong {
    font-weight: 700;
    font-size: 1.15rem;
    color: #856404;
}

/* Main content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero-seksjon */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Counter-seksjon */
.counter-section {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.counter-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.counter-container h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.counter-display {
    font-size: 4rem;
    font-weight: bold;
    margin: 1.5rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#counter-value {
    display: inline-block;
    transition: transform 0.3s ease;
}

.counter-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 1rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Content-seksjon */
.content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.content h1 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.content h2 {
    color: #34495e;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.intro {
    margin-bottom: 2rem;
}

.intro p {
    font-size: 1.1rem;
    color: #555;
}

/* Quick links / Cards */
.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.card p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Knapper */
.btn {
    display: inline-block;
    background-color: #667eea;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: 500;
}

.btn:hover {
    background-color: #5568d3;
}

.btn-social {
    display: inline-block;
    background-color: #667eea;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: 500;
    margin-top: 1rem;
}

.btn-social:hover {
    background-color: #5568d3;
}

/* Historikk-innhold */
.history-content {
    line-height: 1.8;
}

.history-content p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.05rem;
}

/* Sosiale medier */
.social-content {
    line-height: 1.8;
}

.social-content > p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #555;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.social-card p {
    color: #666;
    margin-bottom: 1rem;
}

.note {
    font-style: italic;
    color: #888;
    font-size: 0.95rem;
    padding: 1rem;
    background-color: #f0f0f0;
    border-left: 4px solid #667eea;
    border-radius: 4px;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 2rem 2rem;
    margin-top: 3rem;
}

footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

footer .footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

footer .footer-section ul {
    list-style: none;
    padding: 0;
}

footer .footer-section ul li {
    margin-bottom: 0.5rem;
}

footer .footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

footer .footer-section a:hover {
    color: #667eea;
}

footer .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    max-width: 1200px;
    margin: 0 auto;
}

footer .footer-bottom p {
    margin: 0;
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Ruteinformasjon */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.info-value {
    font-size: 2rem;
    font-weight: bold;
    color: #667eea;
    margin: 0.5rem 0;
}

.info-desc {
    color: #666;
    font-size: 0.9rem;
}

.route-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.point-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.landmark-list {
    list-style: none;
    padding-left: 0;
}

.landmark-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.landmark-list li:last-child {
    border-bottom: none;
}

/* Kart */
.map-placeholder {
    background-color: #f8f9fa;
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    margin: 2rem 0;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gps-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.gps-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.download-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.directions {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.directions h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.directions h3:first-child {
    margin-top: 0;
}

/* Praktisk informasjon */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.checklist-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.checklist-card ul {
    list-style: none;
    padding-left: 0;
}

.checklist-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.checklist-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.season-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.season-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.safety-tips {
    background-color: #e8f4f8;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    margin: 2rem 0;
}

.safety-tips ul {
    list-style: none;
    padding-left: 0;
}

.safety-tips li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.safety-tips li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 1.5rem;
    line-height: 1;
}

.rules-list {
    list-style: none;
    padding-left: 0;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.rules-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.rules-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
}

.facilities {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

/* Arrangementer */
.events-list {
    margin: 2rem 0;
}

.event-card {
    display: flex;
    gap: 2rem;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 2rem;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #667eea;
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    min-width: 100px;
}

.date-day {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.date-month {
    font-size: 1rem;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.event-details {
    flex: 1;
}

.regular-events {
    margin: 2rem 0;
}

.regular-event-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 1rem;
}

/* Nyheter */
.news-content {
    margin: 2rem 0;
}

.news-article {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 2rem;
}

.article-header {
    margin-bottom: 1rem;
}

.article-date {
    color: #888;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.news-article h2 {
    margin-top: 0;
    color: #2c3e50;
}

.btn-read-more {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
}

.btn-read-more:hover {
    text-decoration: underline;
}

.news-archive {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

/* Om oss */
.board-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.member-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

/* Kontakt */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* FAQ */
.faq-content {
    margin: 2rem 0;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 1rem;
}

.faq-question {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-answer {
    color: #555;
    line-height: 1.8;
}

/* Medlemskap */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.membership-fees {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.fee-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.fee-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #667eea;
    margin: 1rem 0;
}

.membership-form {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

/* Partnere */
.partners-grid,
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.partner-card,
.sponsor-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

/* Rapporter problem */
.report-types {
    list-style: none;
    padding-left: 0;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.report-types li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.report-types li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 1.5rem;
    line-height: 1;
}

.report-form {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.report-note {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.report-note h3 {
    color: #856404;
    margin-bottom: 0.5rem;
}

.report-note p {
    color: #856404;
    margin: 0;
}

/* Bilder og media */
.gallery-placeholder,
.video-placeholder {
    background-color: #f8f9fa;
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    margin: 2rem 0;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.press-releases {
    margin: 2rem 0;
}

.press-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 1.5rem;
}

.press-date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Spill-lenker seksjon */
.spill-links-section {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.spill-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.spill-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.spill-link:hover {
    background-color: #5568d3;
}

/* Spill-innhold spesifikke klasser */
.spill-content {
    line-height: 1.8;
}

.spill-content p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.05rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.advantage-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.advantage-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: #666;
    margin: 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.category-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.category-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-category {
    display: inline-block;
    background-color: #667eea;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: 500;
}

.btn-category:hover {
    background-color: #5568d3;
}

.popular-games-list {
    margin: 2rem 0;
}

.game-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.game-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.game-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.game-item p {
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-small {
    display: inline-block;
    background-color: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: 500;
    font-size: 0.9rem;
}

.btn-small:hover {
    background-color: #5568d3;
}

.tips-section {
    margin: 2rem 0;
}

.tip-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 1.5rem;
}

.tip-card h3 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.tip-card p {
    color: #666;
    margin: 0;
}

.tips-list {
    list-style: none;
    padding-left: 0;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.tips-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.tips-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.steps-list {
    list-style: none;
    padding-left: 0;
    counter-reset: step-counter;
    margin: 2rem 0;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    color: #555;
    margin-bottom: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 1rem;
    background-color: #667eea;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.age-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.age-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.age-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.age-card h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.age-card p {
    color: #666;
    margin-bottom: 1rem;
}

.age-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.age-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.age-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 1.5rem;
    line-height: 1;
}

.cta-box {
    background-color: #e8f5e9;
    border: 2px solid #4caf50;
    border-radius: 10px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.cta-box h3 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

.cta-box p {
    color: #2e7d32;
    margin-bottom: 1.5rem;
}

.external-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.external-link:hover {
    text-decoration: underline;
}

/* Spillguider spesifikke klasser */
.guide-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.guide-category-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.guide-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.guide-category-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.guide-category-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tips-grid .tip-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.tips-grid .tip-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.tips-grid .tip-card ul {
    list-style: none;
    padding-left: 0;
}

.tips-grid .tip-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.tips-grid .tip-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 1.5rem;
    line-height: 1;
}

/* Spill etter enhet spesifikke klasser */
.device-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.device-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.device-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.device-card h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.device-card p {
    color: #666;
    margin-bottom: 1rem;
}

.device-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.device-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.device-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.controls-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.control-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.control-item h3 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.control-item p {
    color: #666;
    margin: 0;
}

/* Hvordan spille spesifikke klasser */
.steps-guide {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.step-number {
    background-color: #667eea;
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: #666;
    margin: 0;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.requirement-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.requirement-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.requirement-card h3 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.requirement-card p {
    color: #666;
    margin: 0;
}

.troubleshooting {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.trouble-item {
    background-color: #fff3cd;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.trouble-item h3 {
    color: #856404;
    margin-bottom: 0.75rem;
}

.trouble-item p {
    color: #856404;
    margin: 0;
}

.features-list {
    list-style: none;
    padding-left: 0;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.features-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.social-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.feature-item h3 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .counter-display {
        font-size: 2.5rem;
        min-height: 60px;
    }
    
    .counter-container {
        padding: 2rem 1.5rem;
    }
    
    .counter-container h2 {
        font-size: 1.2rem;
    }
    
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .content h1 {
        font-size: 2rem;
    }
    
    .quick-links,
    .social-links,
    .info-grid,
    .route-points,
    .gps-info,
    .checklist-grid,
    .season-info,
    .board-members,
    .contact-info,
    .benefits-grid,
    .membership-fees,
    .partners-grid,
    .sponsors-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        align-self: flex-start;
    }
    
    .download-links {
        flex-direction: column;
    }
    
    .download-links .btn {
        width: 100%;
        text-align: center;
    }
    
    .disclaimer-box {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .disclaimer-box h3 {
        font-size: 1.25rem;
    }
    
    .disclaimer-box p {
        font-size: 1rem;
    }
    
    .disclaimer-box strong {
        font-size: 1.05rem;
    }
    
    .spillsidene-box {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .spillsidene-box h3 {
        font-size: 1.25rem;
    }
    
    .spillsidene-box p {
        font-size: 1rem;
    }
    
    .spillsidene-box strong {
        font-size: 1.05rem;
    }
    
    .btn-spillsidene {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
        display: block;
    }
    
    main {
        padding: 1rem;
    }
}

/* Breadcrumbs */
.breadcrumbs {
    max-width: 1200px;
    margin: 1rem auto;
    padding: 0 2rem;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
}

.breadcrumbs li::after {
    content: "›";
    margin-left: 0.5rem;
    color: #999;
}

.breadcrumbs li:last-child::after {
    display: none;
}

.breadcrumbs a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: #5568d3;
    text-decoration: underline;
}

.breadcrumbs li:last-child {
    color: #333;
    font-weight: 500;
}

@media (max-width: 768px) {
    .breadcrumbs {
        padding: 0 1rem;
        font-size: 0.85rem;
    }
    
    footer .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    footer {
        padding: 2rem 1rem 1.5rem;
    }
    
    .advantages-grid,
    .categories-grid,
    .age-groups,
    .device-grid,
    .guide-categories,
    .tips-grid,
    .controls-info,
    .requirements-grid,
    .troubleshooting,
    .social-features {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-number {
        align-self: flex-start;
    }
}

