:root {
    --primary-bg: #0D1117;
    --secondary-bg: #161B22;
    --header-bg: #161B22;
    --border-color: rgba(255, 255, 255, 0.1);
    --text-color: #E0E6ED;
    --text-muted: #A0AABA;
    --accent-color: #0072ff;
    --accent-green: #00f260;
    --font-family: 'Poppins', sans-serif;
    --border-radius: 1rem;
    --box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

body {
    font-family: var(--font-family);
    background-color: var(--primary-bg);
    color: var(--text-color);
}

.navbar {
    background-color: var(--header-bg);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
}

.navbar ul { list-style: none; display: flex; gap: 2rem; }
.navbar ul a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}
.navbar ul a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-green);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-in-out;
}
.navbar ul a:hover::after, .navbar ul a:focus::after { transform: scaleX(1); transform-origin: left; }
.navbar ul a:hover, .navbar ul a:focus { color: white; }

.hero-background {
    background: linear-gradient(rgba(13, 17, 23, 0.8), rgba(13, 17, 23, 0.8)), url('../images/background.jpg') no-repeat center center;
    background-size: cover;
    padding: 6rem 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    animation: fadeIn 1s 0.2s forwards;
    opacity: 0;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.hero-logo {
    width: 150px;
    height: auto;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 242, 96, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 1rem auto 2rem auto;
    line-height: 1.6;
}

.hero-button {
    display: inline-block;
    background-image: linear-gradient(45deg, #00f260, #0575e6);
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(0, 242, 96, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 242, 96, 0.5);
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.updates-section { flex: 2.5; display: flex; flex-direction: column; gap: 2.5rem; }
.sidebar { flex: 1; min-width: 300px; display: flex; flex-direction: column; gap: 2.5rem; }

.post, .box, .featured-product-box {
    background: var(--secondary-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
}

.post-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.author-photo { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border-color); }
.author-name { font-weight: 600; font-size: 1.1rem; color: white; }
.publish-date { font-size: 0.9rem; color: var(--text-muted); }

.post-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: white;
}

.post-content p {
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #C0CADA;
}

.post-content ul { list-style: none; padding-left: 0; }
.post-content ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #C0CADA;
}
.post-content ul li::before {
    content: ''; 
    display: inline-block;
    width: 12px;
    height: 12px;
    min-width: 12px;
    border-radius: 50%;
    background-color: var(--accent-green);
    box-shadow: 0 0 8px var(--accent-green), 0 0 15px var(--accent-green);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% { transform: translateY(-50%) scale(1); opacity: 1; }
    100% { transform: translateY(-50%) scale(1.1); opacity: 0.8; }
}

.box { text-align: center; }
.box h2 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: -2rem -2rem 1.5rem -2rem;
    padding: 1.2rem;
    background-color: var(--primary-bg);
    border-bottom: 1px solid var(--border-color);
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}
.box .server-ip {
    font-size: 1.2rem;
    font-weight: 600;
    background: var(--primary-bg);
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    user-select: all;
    color: var(--text-muted);
}
#player-count { margin: 1.5rem 0; font-size: 1rem; color: var(--text-muted); }

.copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-image: linear-gradient(45deg, #00c6ff, #0072ff);
    color: white;
    border: none;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 198, 255, 0.3);
}

.copy-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 198, 255, 0.5);
}

.featured-product-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-product-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 242, 96, 0.15);
}

.featured-product-box h2 {
    color: var(--accent-green);
    background-color: var(--primary-bg);
    border-bottom: 1px solid var(--border-color);
    margin: -2rem -2rem 1rem -2rem;
    padding: 1.2rem;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.featured-product-box .product-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    border: 2px solid var(--accent-green);
    border-radius: 8px;
}

.featured-product-box .product-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.featured-product-box .product-price {
    font-size: 1.1rem;
    color: var(--text-color);
}
.featured-product-box .price-monthly {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: normal;
}

.featured-product-box .buy-now-btn {
    background-image: linear-gradient(45deg, #00f260, #0575e6);
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0, 242, 96, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-product-box .buy-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 242, 96, 0.5);
}

.social-links { display: flex; justify-content: center; gap: 1.5rem; padding: 1rem 0; flex-wrap: wrap; }
.social-links a {
    display: inline-block;
    transition: transform 0.3s ease;
}
.social-links a:hover { transform: translateY(-5px); }
.social-links img { width: 50px; height: 50px; border-radius: 50%; }

footer {
    text-align: center;
    background-color: var(--header-bg);
    color: var(--text-muted);
    padding: 2rem 0;
    margin-top: 2rem;
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
}

strong { color: white; font-weight: 600; }

@media (max-width: 768px) {
    .nav-container { flex-direction: column; gap: 1rem; }
    .container { flex-direction: column; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
}

.post-content.post-preview {
    max-height: 350px;
    overflow: hidden;
    position: relative;
    padding-bottom: 1rem;
}

.post-content.post-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, transparent, var(--secondary-bg));
    pointer-events: none;
}

.post-content.post-preview ul {
    max-height: 250px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    color: var(--primary-bg);
    box-shadow: 0 0 25px rgba(0, 242, 96, 0.5);
    transform: translateY(-3px);
}

.read-more-btn i {
    margin-left: 0.2rem;
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

.post-container {
    flex-direction: column;
    align-items: center;
}

.post-full {
    width: 100%;
    max-width: 900px;
    background: var(--secondary-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
    animation: fadeIn 0.5s 0.1s forwards;
    opacity: 0;
}

.post-full .post-title {
    font-size: 2.5rem;
    text-align: center;
}

.post-full .post-header {
    justify-content: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.post-full .post-content {
    margin-top: 1.5rem;
}

.back-btn {
    display: inline-block;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.back-btn:hover {
    color: white;
    transform: translateX(-5px);
}

.back-btn i {
    margin-right: 0.5rem;
}

.container {
    align-items: flex-start;
}
.author-line {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 2px;
}

.author-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.author-badge.partner {
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 0 10px rgba(0, 114, 255, 0.4);
}

.post.fixed {
    position: relative;
    border: 1px solid var(--accent-green);
    box-shadow: 0 0 25px rgba(0, 242, 96, 0.1);
}

.post.fixed .post-title {
    color: var(--accent-green);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.post.fixed .post-title::before {
    content: "FIXADO";
    font-family: var(--font-family);
    background-color: var(--accent-green);
    color: var(--primary-bg);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
}