* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #1a1a1a;
    color: white;
}

header {
    text-align: center;
    padding: 4rem 2rem;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fimages.hdqwalls.com%2Fdownload%2Fgarena-free-fire-one-more-round-4k-wj-1920x1080.jpg&f=1&nofb=1&ipt=7a30e715e63645a4b724390f2b146f6a645fb882b4c71c1cb2fc448f8583cefb&ipo=images');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

header p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-badges span {
    background-color: rgba(37, 99, 235, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.trust-badges i {
    color: #60a5fa;
    margin-right: 0.5rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    background-color: #222;
}

.feature {
    text-align: center;
}

.feature i {
    font-size: 2rem;
    color: #60a5fa;
    margin-bottom: 1rem;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.3);
}

.popular-tag, .discount-tag {
    position: absolute;
    top: 1rem;
    right: -5px;
    background-color: #2563eb;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 3px;
    font-size: 0.8rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.discount-tag {
    background-color: #3b82f6;
}

.card img {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
    filter: invert(48%) sepia(80%) saturate(2476%) hue-rotate(210deg) brightness(90%) contrast(95%);
}

.card h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #60a5fa;
    margin: 1rem 0;
}

.card-features {
    margin: 1rem 0;
    text-align: left;
    padding: 0 1rem;
}

.card-features p {
    margin: 0.5rem 0;
    color: #888;
}

.card-features i {
    color: #60a5fa;
    margin-right: 0.5rem;
}

button {
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.testimonials {
    padding: 4rem 2rem;
    background-color: #222;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 2rem;
    color: white;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.stars {
    color: #60a5fa;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial p {
    color: #ddd;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial span {
    color: #888;
    font-size: 0.9rem;
}

footer {
    background-color: #2a2a2a;
    padding: 4rem 2rem 2rem;
    margin-top: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.payment-methods, .security {
    text-align: center;
}

.payment-methods h3, .security h3 {
    color: white;
    margin-bottom: 1rem;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    color: #888;
}

.security p {
    color: #888;
    margin: 0.5rem 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    header h1 {
        font-size: 2rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
    }
}