Responsive Homepage /* General Reset */ * { margin: 0; padding: 0; box-sizing: border-box; }body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }a { text-decoration: none; color: inherit; }ul { list-style-type: none; padding: 0; }/* Header Styles */ .main-header { display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; background-color: #fff; padding: 10px 20px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); z-index: 1000; }.main-header .logo img { height: 50px; }.main-header .main-nav ul { display: flex; gap: 15px; }.main-header .main-nav a { font-weight: bold; color: #333; }.hamburger-menu { display: none; cursor: pointer; }.hamburger-menu .bar { width: 25px; height: 4px; background-color: #333; margin: 5px 0; }@media (max-width: 768px) { .main-header .main-nav { display: none; flex-direction: column; background-color: #fff; position: absolute; top: 60px; right: 10px; width: 200px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); }.main-header .main-nav.active { display: flex; }.hamburger-menu { display: block; } }/* Content Section Styles */ .content-wrapper { padding: 20px; }.celebrity-style, .exclusive-videos, .movie-reviews, .entertainment { margin-bottom: 30px; }.celebrity-style { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; }.celebrity-style img { width: 100%; height: auto; }.video-grid, .review-grid, .entertainment-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }.video-item, .review-item { text-align: center; }.video-item img, .review-item img { width: 100%; height: auto; }.fashion, .health-beauty { display: grid; gap: 20px; }/* Footer Styles */ .main-footer { background-color: #f8f8f8; padding: 20px 0; text-align: center; }.footer-nav ul { display: flex; justify-content: center; gap: 20px; }.footer-nav a { font-weight: bold; }.social-media a { margin: 0 10px; color: #333; }

Featured Celebrity Style

Celebrity Style

Featured article details...

Exclusive Videos

Video 1

Video Title 1

Video 2

Video Title 2

Movie Reviews

Movie

Rating: 4/5

Review Snippet...

Entertainment

Bollywood

Hollywood

TV

South

// Hamburger menu toggle for mobile screens document.querySelector('.hamburger-menu').addEventListener('click', function() { const nav = document.querySelector('.main-nav'); nav.classList.toggle('active'); });