* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: #0f1419;
    color: #e6e9ec;
    line-height: 1.7;
    max-width: 1500px;
    margin: 0 auto;
    padding: 30px;
}

header {
    background: linear-gradient(145deg, #1c2526, #2e3839);
    padding: 5rem 3rem;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

header h1 {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #00ddeb, #ff4081);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

nav {
    background: #1c2526;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    border-bottom: 1px solid #2e3839;
}

nav a {
    color: #e6e9ec;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 0;
    background: #00ddeb;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #00ddeb;
}

.content {
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.section {
    background: #1c2526;
    padding: 2rem;
    border-radius: 15px;
}

.section#reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0;
    background: none;
}

.post {
    background: #1c2526;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.post:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #00ddeb, #ff4081);
}

.post h2, .section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #00ddeb;
}

.post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin: 1rem 0;
}

.post p, .section p {
    font-size: 1rem;
    opacity: 0.9;
}

.amazon-link {
    display: inline-block;
    background: linear-gradient(90deg, #00ddeb, #ff4081);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
}

.review-page {
    background: #1c2526;
    padding: 2rem;
    border-radius: 15px;
}

.review-page h3 {
    font-size: 1.5rem;
    color: #00ddeb;
    margin: 1rem 0;
}

.review-page ul {
    list-style: none;
    margin: 1rem 0;
}

.review-page ul li {
    margin: 0.5rem 0;
    font-size: 1rem;
    opacity: 0.9;
}

.disclaimer {
    background: #2e3839;
    padding: 2rem;
    border-radius: 15px;
    font-size: 0.95rem;
    opacity: 0.8;
}

footer {
    text-align: center;
    padding: 4rem 0;
    border-top: 1px solid #2e3839;
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 900px) {
    .section#reviews {
        grid-template-columns: 1fr;
    }

    header h1 {
        font-size: 2.2rem;
    }

    nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .post img {
        height: 250px;
    }
}