:root {
  --pink-main: #e6007e;
  --pink-dark: #c40068;
  --dark: #111111;
  --white: #ffffff;
}


* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  background: var(--gray);
  color: var(--dark);
}

.header {
  background: linear-gradient(90deg, var(--pink-main), #ff4da6);
  color: var(--white);
  padding: 20px;
  text-align: center;
}

.logo span {
  font-size: 32px;
  font-weight: bold;
}

.tagline {
  margin: 5px 0 15px;
}

.logo img {
  height: 48px;
}

.nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

.container {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 15px;
}

.featured {
  display: flex;
  background: white;
  margin-bottom: 30px;
}

.featured img {
  width: 50%;
  object-fit: cover;
}

.featured-content {
  padding: 20px;
}

.btn {
  background: var(--pink-main);
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

.content {
  width: 100%;
}


.articles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  border: 1px solid #eee;
  transition: transform 0.2s;
}

.card img {
  width: 100%;
}

.card:hover {
  transform: translateY(-3px);
}

.sidebar {
  background: var(--pink-light);
  padding: 20px;
}

.sidebar h3 {
  color: var(--white);
}

.footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 1px;
}

.top-bar {
  background: linear-gradient(90deg, var(--pink-main), var(--pink-dark));
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
}

.logo {
  height: 52px;
}

.top-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.top-links a {
  color: white;
  margin-left: 16px;
  text-decoration: none;
  font-size: 14px;
}

.social-icons a {
  color: white;
  margin-left: 12px;
  font-size: 14px;
  text-decoration: none;
}

.middle-bar {
  background: var(--dark);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  font-weight: bold;
}

.middle-left {
  font-size: 15px;
  letter-spacing: 0.5px;
}

.middle-right a {
  color: white;
  margin-left: 18px;
  text-decoration: none;
  font-size: 14px;
}

.nav-bar {
  background: var(--white);
  border-bottom: 1px solid #eee;
}

.main-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  color: var(--dark);
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
}

.main-nav .search {
  font-size: 18px;
}

.top-stories {
  background: linear-gradient(180deg, #e6007e, #c40068);
  padding: 30px 0;
}

.top-stories-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 24px;
}

.featured-article {
  position: relative;
  min-height: 420px;
  background: url("featured.jpg") center / cover no-repeat;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: flex-end;
}

.featured-article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.1) 100%
  );
}

.featured-overlay {
  position: relative;
  padding: 32px;
  max-width: 70%;
}

.featured-overlay h1 {
  font-size: 38px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.featured-overlay h1 span {
  color: #ffd1e8;
}

.featured-overlay p {
  font-size: 16px;
  margin-bottom: 20px;
}

.read-more {
  display: inline-block;
  background: #e6007e;
  padding: 10px 18px;
  font-weight: bold;
  font-size: 14px;
}

.side-articles {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-article {
  background: white;
  text-decoration: none;
  color: #111;
  display: block;
  border: 1px solid #eee;
}

.side-article img {
  width: 100%;
  display: block;
}

.side-text {
  padding: 14px;
  font-size: 14px;
  line-height: 1.3;
}

.featured-article:hover .read-more {
  background: #ff4da6;
}

.side-article:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.gossip-section {
  background: #f6e2ea;
  width: 100%;
}

.gossip-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 32px;
}



.gossip-header {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.gossip-header h2 {
  padding: 10px 16px;
  background: #e5b5c9;
  font-size: 16px;
  cursor: pointer;
}

.gossip-header .active {
  background: #e6007e;
  color: white;
}

.gossip-item {
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
  color: #111;
}

.gossip-item img {
  width: 100%;
  display: block;
}

.gossip-text h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.gossip-text p {
  color: #c40068;
  font-size: 14px;
}

.gossip-item:hover h3 {
  text-decoration: underline;
}

.hot-topics {
  background: #a7035a;
  color: white;
  padding: 20px;
  margin-bottom: 24px;
}

.hot-topics h3 {
  margin-bottom: 12px;
}

.hot-topics a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 8px;
}

.hot-topics a:hover {
  text-decoration: underline;
}

.instagram-box {
  background: linear-gradient(135deg, #e6007e, #b4005e);
  color: white;
  padding: 24px;
  text-align: center;
  text-decoration: none;
  display: block;
  margin-bottom: 24px;
}

.instagram-box svg {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.instagram-box span {
  display: block;
  font-size: 14px;
  margin-top: 6px;
}

.ad-box img {
  width: 100%;
  display: block;
  border: 1px solid #000;
}
