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

/* Body */
body {
    font-family: 'Arial', sans-serif;
    background-color: #000000; /* Black background */
    color: white; /* White text */
    padding: 0;
    margin: 0;
}

/* Header */
header {
    background-color: #1a1a1a;
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}

header .logo img {
    width: 80px; /* Logo size */
    height: 80px;
    border-radius: 50%;
}

header .header-actions {
    display: flex;
    align-items: center;
}

header .header-actions a {
    margin-left: 20px;
    padding: 10px 5px;
    font-size: 1em;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

header .header-actions .btn-login {
    background-color: #4CAF50;
    padding: 10px 10px;
}

header .header-actions .btn-register {
    background-color: #ff6f61;
}

header .header-actions a:hover {
    background-color: #333;
}

header .menu-toggle {
    display: none;
    font-size: 2em;
    cursor: pointer;
}

/* Navigation Menu */
.nav-menu {
    display: none;
    background-color: #1a1a1a;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    padding: 20px;
}

.nav-menu.active {
    display: block;
}

.nav-menu ul {
    list-style: none;
    padding: 0;
}

.nav-menu ul li {
    margin-bottom: 10px;
}

.nav-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

.nav-menu ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
#hero {
    background: url('https://ameyawdebrah.com/wp-content/uploads/2023/05/PG-Slot-scaled-1.webp') no-repeat center center/cover;
    color: black;
    padding: 20px 0;
    text-align: center;
}

#hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

#hero p {
    font-size: 2em;
    margin-bottom: 30px;
}

button {
    background-color: #ff6f61;
    color: white;
    padding: 15px 25px;
    font-size: 1.3em;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #e55a4f;
}

/* Game Section */
#game {
    text-align: center;
    margin: auto;
}

#game h2{
    padding-bottom: 10px;
}

#game iframe {
    max-width: 100%;
    border: none;
}

/* Game Description Section */
#description {
    background-color: #1a1a1a; /* Dark background */
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}

#description h2 {
    color: #ff6f61;
    font-size: 2em;
    margin-bottom: 20px;
}

/* Videos Section */
#videos {
    text-align: center;
    margin-bottom: 30px;
}

#videos iframe {
    width: 30%;
    height: 300px;
    margin: 10px;
    border-radius: 8px;
}

.video-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Reviews Section */
#reviews {
    background-color: #1a1a1a; /* Dark background */
    padding: 20px;
    margin-top: 30px;
}

.review {
    background-color: #333; /* Darker card background */
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.review p {
    font-size: 1.1em;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

footer a:hover {
    text-decoration: underline;
}

.social-links a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

.social-links a:hover {
    text-decoration: underline;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu ul {
        display: block;
    }

    .nav-menu ul li {
        margin-bottom: 15px;
    }

    #videos iframe {
        width: 80%;
        height: 250px;
        margin: 10px 0;
    }

    button {
        font-size: 1.2em;
    }

    #hero h2 {
        font-size: 2.5em;
    }

    #hero p {
        font-size: 1.8em;
    }
}

/* Blog Section */
#blog {
    margin-top: 100px; /* Space for header */
    padding: 20px;
}

.blog-post {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
}

.blog-title {
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
}

.blog-meta {
    color: #ccc;
    font-size: 1em;
    margin-bottom: 20px;
}

.blog-meta .author, .blog-meta .date {
    margin-right: 10px;
}

.blog-image {
    text-align: center;
    margin-bottom: 30px;
}

.blog-image img {
    width: 100%;
    /* height: 50%; */
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.blog-content {
    font-size: 1.2em;
}

.blog-content h2 {
    margin-top: 20px;
    color: #ff6f61;
}
.blog-content a{
    color: #ffffff;
}

.comments {
    margin-top: 40px;
}

.comment {
    background-color: #333;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
}

.comment-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1.1em;
    border-radius: 5px;
    margin-bottom: 10px;
}

.comment-form button {
    background-color: #ff6f61;
    color: white;
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.comment-form button:hover {
    background-color: #e55a4f;
}
/* Floating "Iniciar Jogo" Button */
.floating-button {
    /* background: url('https://img.poki-cdn.com/cdn-cgi/image/quality=78,width=314,height=314,fit=cover,f=auto/0235b530eec4f17ad60137f6b245a988.jpeg') no-repeat center center/cover; */
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #ff6f61;
    color: white;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    font-size: 1em;
    text-align: center;
}

.floating-button a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    display: block;
}

.floating-button:hover {
    background-color: #e55a4f;
}