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

body {
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    color: #333;
}

header {
    background-color: #000;
    padding: 15px 0;
    border-bottom: 5px solid #ff0000; 
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 60px;
    width: auto;
    border-radius: 8px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #ff0000;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ffffff;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 8px 16px;
    border: 2px solid #ffffff;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none; 
    display: inline-block; 
}

.btn-primary {
    background-color: #000000;
    color: #ff0000;
}

.btn-primary:hover {
    background-color: #ff0000;
    color: #ffffff;
}

.btn-secondary {
    background-color: #000000;
    color: #ff0000;
}

.btn-secondary:hover {
    background-color: #ff0000;
    color: #ffffff;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .auth-buttons {
        width: 100%;
        justify-content: center;
    }
}

.hero-section {
    background-color: #000;
    padding: 40px 0;
    border-bottom: 5px solid #ff0000;
}
.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-image {
    position: relative;
    flex: 0 0 40%;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff0000, #fffb00);
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.5);
}

.hero-content {
    flex: 1;
    padding: 20px;
}

.content-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.content-box h2 {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.3;
    text-transform: uppercase;
}

.content-box p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.content-box p strong {
    color: #ff0000;
    font-weight: bold;
}

.dmca-badge img {
    height: 20px;
    width: auto;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        flex: 0 0 100%;
        max-width: 300px;
    }

    .hero-content {
        flex: 0 0 100%;
    }

    .content-box {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 20px 0;
    }

    .content-box {
        padding: 20px;
    }

    .cta-button {
        font-size: 16px;
        padding: 10px 20px;
    }
}
.review-section {
    padding: 40px 20px;
    background-color: #000;
    color: white;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title-wrapper {
    margin-top: 40px;
}

.section-title {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    margin: 0;
    padding-left: 20px; 
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.review-card {
    background-color: #fffb00;
    border: 1px solid #fffb00;
    border-radius: 8px;
    padding: 25px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fffb00;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; 
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.2);
    border-color: #fffb00;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.review-header h3 {
    font-size: 18px;
    font-weight: bold;
    color: #fffb00;
    margin: 0;
    text-transform: uppercase;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ff0000;
    object-fit: cover;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
    margin: 20px 0;
    font-style: italic;
    flex-grow: 1; 
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #33ff00;
}

.date {
    font-size: 12px;
    color: #aaa;
}

.review-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.review-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.review-box {
    background-color: #111;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.3);
    transition: transform 0.2s;
}

.review-box:hover {
    transform: translateY(-5px);
}

.review-box h3 {
    color: #ff0000;
    margin-top: 0;
    font-size: 18px;
    text-transform: uppercase;
}

.review-box p {
    font-size: 14px;
    line-height: 1.6;
    margin: 15px 0;
    color: #ccc;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-size: 12px;
    color: #ffffff;
}

.stars {
    color: #ffe600;
    font-size: 16px;
}

.stars i {
    margin: 0 2px;
}

.copyright-footer {
    margin-top: 40px;
    font-size: 12px;
    color: #ffffff;
    border-top: 1px solid #333;
    padding-top: 15px;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .review-card {
        padding: 20px;
    }

    .section-title {
        font-size: 24px;
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .reviews-section {
        padding: 30px 0;
    }

    .review-card {
        padding: 15px;
        width: 100%;
        max-width: 350px;
    }

    .review-header h3 {
        font-size: 16px;
    }

    .avatar {
        width: 40px;
        height: 40px;
    }

    .review-text {
        font-size: 13px;
    }

    .copyright {
        text-align: center;
        padding-right: 0;
        margin-right: 0;
    }

    .section-title {
        text-align: center;
        padding: 0;
    }
}