/* General Styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #e0ffcd, #b8e986);
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

/* Header Styles */
header {
    text-align: center;
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

header h1 {
    font-family: 'Bungee', cursive;
    font-size: 48px;
    color: #2ecc71;
    margin: 0;
}

header h1 span {
    color: #e74c3c;
}

header p {
    font-size: 18px;
    color: #555;
    margin: 10px 0;
}

header .hop-text {
    font-size: 20px;
    color: #e74c3c;
    font-weight: bold;
    margin: 15px 0 10px;
}

/* Search Bar Styles */
#search-bar {
    width: 80%;
    max-width: 500px;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #2ecc71;
    border-radius: 25px;
    outline: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s;
}

#search-bar:focus {
    border-color: #e74c3c;
}

/* Deals Section */
.deals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.deal-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.deal-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.deal-link:hover .deal-card {
    transform: scale(1.05);
}

.deal-header {
    padding: 10px;
    text-align: center;
    color: #fff;
}

.deal-header h2 {
    margin: 0;
    font-size: 20px;
    font-family: 'Bungee', cursive;
}

.deal-body {
    padding: 15px;
    text-align: center;
}

.deal-body h3 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #2ecc71;
}

.deal-body p {
    margin: 5px 0;
    font-size: 16px;
}

.deal-body .savings {
    font-weight: bold;
    color: #e74c3c;
    font-size: 18px;
}

/* No Results Message */
.no-results {
    text-align: center;
    font-size: 18px;
    color: #e74c3c;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
footer {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer p {
    margin: 5px 0;
    font-size: 16px;
    color: #555;
}

footer .disclaimer {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 600px) {
    header h1 {
        font-size: 36px;
    }

    header .hop-text {
        font-size: 16px;
    }

    .deal-body h3 {
        font-size: 20px;
    }

    .deal-body p {
        font-size: 14px;
    }

    #search-bar {
        width: 90%;
    }

    .no-results {
        font-size: 16px;
    }

    footer .disclaimer {
        font-size: 12px;
    }
}