
body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff; /* White text */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #111;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}
.blog-post h1{
    font-size: 2.6rem;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(45deg, #d32f2f, #c2185b);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.blog-post h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(45deg, #d32f2f, #c2185b);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.blog-post p {
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 10px 0;
    color: #fff;
    text-align: justify;

}
.blog-post p strong{
    font-size: 1.2rem;
    margin-right: 10px;
}
.blog-post section {
    margin: 30px 0;
}

.blog-post h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #c2185b;
    display: inline-block;
    padding-bottom: 5px;
    background: linear-gradient(45deg, #d32f2f, #c2185b);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.blog-post ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.blog-post ul li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.blog-post ul li img {
    width: 80px;
    height: 80px;
    margin-right: 15px; /* Adds space between image and text */
    border-radius: 8px;
    border: 2px solid #f9d342;
    align-self: flex-start; /* Ensures image stays aligned to the top of the text block */
}

.blog-post ul li strong {
    font-size: 1.2rem;
    margin-right: 10px;
    color: #fff;
}

.blog-post ul li p {
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
    color: #ccc;
    flex: 1; /* Ensures the text spans flexibly next to the image */
}

.blog-post ul li::before {
    content: "•";
    font-size: 1.1rem;
    margin-right: 15px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.blog-post a {
    color: #f9d342;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.blog-post a:hover {
    color: #fff;
}   

.blog-post img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.highlighted-games {
    margin: 30px 0;
    padding: 20px;
    background-color: #111;
}

/* Styling the section heading */
.highlighted-games h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #c2185b;
    display: inline-block;
    padding-bottom: 5px;
    background: linear-gradient(45deg, #d32f2f, #c2185b);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* List styles */
.highlighted-games-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Individual game item */
.highlighted-game-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

/* Image styles */
.highlighted-game-item img {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    border-radius: 8px;
    border: 2px solid #f9d342;
}

/* Game details */
.highlighted-game-item div {
    flex: 1;
    color: #ccc;
}

/* Game title (strong element) */
.highlighted-game-item strong {
    font-size: 1.2rem;
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .blog-post ul {
        padding-left: 20px;
    }

    .blog-post ul li {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        list-style-type: disc;
    }

    .blog-post ul li strong {
        margin-bottom: 10px;
        min-width: unset;
    }

    .blog-post ul li img {
        margin-bottom: 10px;
    }

    main {
        padding: 15px;
    }

    .highlighted-game-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .highlighted-game-item img {
        margin-bottom: 10px;
        margin-right: 0;
    }

    header {
        flex-direction: column;
        text-align: left;
    }

    nav {
        align-items: flex-start;
        text-align: left;
    }

    nav a {
        padding: 5px;
        font-size: 12px;
    }

    .featured-image img {
        width: 100%;
        height: 200px;
    }

    .blog-post {
        text-align: left; /* Align text to the left */
    }

    .blog-post h1, 
    .blog-post h2 {
        font-size: 1.4rem;
    }

    .blog-post p {
        font-size: 1rem;
    }

    .footer-row {
        flex-direction: column;
    }

    footer .column {
        flex: 1 1 auto;
        margin-bottom: 10px;
    }

    footer img {
        max-width: 60px;
    }
}



