* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: linear-gradient(135deg, #eef2f5 0%, #dbe4ec 100%);
  color: #1a1a1a;
  line-height: 1.6;
}
header {
  background: linear-gradient(90deg, #4F46E5, #6D28D9); /* Tech Purple-Blue Gradient */
  color: white;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
header h1 {
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
nav {
  background-color: #0f172a;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
nav a {
  color: #ffffff;
  margin: 0 1.5rem;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.3s;
}
nav a:hover {
  color: #4F46E5; /* Electric Blue hover */
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}
.live-scores, .headlines, .analysis, .interviews, .events, .contact, .newsletter {
  background: #ffffff;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  animation: fadeIn 1s ease-in;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.live-scores h2, .headlines h2, .analysis h2, .interviews h2, .events h2, .contact h2, .newsletter h2 {
  color: #1e293b; /* Dark navy blue for headings */
  font-size: 2rem;
  margin-bottom: 1rem;
  border-left: 5px solid #4F46E5; /* Electric Blue border */
  padding-left: 1rem;
}
.score-box {
  background: linear-gradient(45deg, #f8fafc, #e2e8f0);
  padding: 1rem;
  margin: 0.5rem 0;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  transition: transform 0.3s;
}
.score-box:hover {
  transform: scale(1.02);
}
.marquee-container {
  overflow: hidden;
  background: #4F46E5; /* Electric Blue */
  color: white;
  padding: 0.5rem;
  border-radius: 5px;
  margin: 0.5rem 0;
}
.marquee {
  white-space: nowrap;
  animation: marquee 15s linear infinite;
  font-size: 1.1rem;
}
@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
.news-grid, .analysis-grid, .interviews-grid, .events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.news-card, .analysis-card, .interview-card, .event-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.news-card:hover, .analysis-card:hover, .interview-card:hover, .event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}
.news-card h3, .analysis-card h3, .interview-card h3, .event-card h3 {
  color: #6D28D9; /* Deep Tech Purple for titles */
  margin-bottom: 0.5rem;
}
.news-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 1rem;
}
.highlight {
  background: linear-gradient(45deg, #1e293b, #334155); /* Deep tech charcoal gradient */
  color: white;
  padding: 2rem;
  text-align: center;
  border-radius: 10px;
  margin: 2rem 0;
  font-size: 1.5rem;
  font-weight: bold;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}
.newsletter, .contact {
  text-align: center;
}
.newsletter input, .contact input, .contact textarea {
  padding: 0.5rem;
  width: 300px;
  max-width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 5px;
  margin: 0.5rem 0;
}
.contact textarea {
  resize: vertical;
  min-height: 150px;
}
.newsletter button, .contact button {
  padding: 0.5rem 1rem;
  background: #4F46E5;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}
.newsletter button:hover, .contact button:hover {
  background: #3730a3; /* Darker tech blue */
}
#newsletter-message, #contact-message {
  margin-top: 1rem;
}
footer {
  background: #0f172a;
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
  border-top: 5px solid #4F46E5;
}
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }
  nav a {
    display: block;
    margin: 0.5rem 0;
    text-align: center;
  }
  .news-grid, .analysis-grid, .interviews-grid, .events-grid {
    grid-template-columns: 1fr;
  }
  .newsletter input, .contact input, .contact textarea {
    width: 100%;
  }
}
