/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background: #006100;
}

a {
	color:darkred
}
a:hover {
	text-decoration:none
}

.note {
	border:1px solid #999;
	padding:.5rem .5rem .5rem 3rem;
	margin:2rem 0;
	background-color:#AFE1AF;
	position:relative
}
.tip {
	border:1px solid #999;
	padding:.5rem .5rem .5rem 3rem;
	margin:2rem 0;
	background-color:#e8fdf5;
	position:relative
}
.warning {
	border:1px solid #999;
	padding:.5rem .5rem .5rem 3rem;
	margin:2rem 0;
	background-color:#ffdfdf;
	position:relative
}
.important {
	font-size:1.25rem;
	border-left-style:solid;
	border-width:.25rem;
	padding-left:1rem;
	margin-left:2rem;
	padding-top:.25rem;
	padding-bottom:.25rem;
	margin-top:2rem;
	margin-bottom:2rem;
	border-color:#5e2ca5
}
}
div.icon {
width:16px;
height:16px;
background-image:url(https://casinoeronline.dk/img/icons.png)
}
.note::before,.tip::before,.warning::before {
content:" ";
background-image:url(https://casinoeronline.dk/img/icons.png);
position:absolute;
top:.75rem;
left:1rem;
height:16px;
width:16px
}
.warning::before {
background-position-y:-32px
}
.note::before {
background-position-y:-48px
}
.tip::before {
background-position-y:-64px
}
.no {
color: #e7040f
}

/* Navigation */
.top-nav {
    background: linear-gradient(to right, #1a1a1a, #2d2d2d);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffd700;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

img.fluid {
	display:block;
	margin-left:auto;
	margin-right:auto;
	max-width:100%;
	height:auto
}

img.center {
	display:block;
	margin-left:auto;
	margin-right:auto;
	max-width:98%;
	height:auto;
	border:solid 3px #000
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://casinoeronline.dk/img/danske_casinoer.jpg');
    background-size: cover;
    background-position: center;
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-bottom: 4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-content {
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Content Section */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-block {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* New list styles added here */
.content-block ul,
.content-block ol {
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.content-block li {
    margin-bottom: 0.5rem;
}

.content-block h2 {
    color: #1a1a1a;
    font-size: 2rem;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.content-text p {
    margin-bottom: 1rem;
    color: #444;
}

.content-text blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid #ffd700;
    background-color: #f8f8f8;
    color: #444;
    font-style: italic;
    border-radius: 0 4px 4px 0;
}

.bold-link {
    color: #1a1a1a;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.bold-link:hover {
    color: #ffd700;
}

/* Latest Guides */
.latest-guides {
    margin-bottom: 4rem;
}

.latest-guides h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-align: center;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.guide-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.guide-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.guide-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.read-more:hover {
    color: #ffd700;
}

.read-more::after {
    content: "→";
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* Footer */
footer {
    background: linear-gradient(to right, #1a1a1a, #2d2d2d);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

.rofus-image {
    text-align: center;
    margin-top: 1rem;
}

.rofus-image img {
    transition: opacity 0.3s ease;
}

.rofus-image img:hover {
    opacity: 0.8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 2rem 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.email-link {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #fff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        height: 35vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .guide-grid {
        grid-template-columns: 1fr;
    }
}