/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}
a {
  color: #0077cc;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
h1, h2, h3 {
  margin-bottom: 1rem;
}

/* Header */
.header {
  background: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: relative;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0077cc;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.nav a:hover {
  color: #0077cc;
}

/* Hamburger Menu */
.menu-icon {
  font-size: 2rem;
  display: none;
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #0077cc, #00bfff);
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
}
.hero p {
  margin: 1rem 0;
}
.btn {
  background: #fff;
  color: #0077cc;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
}
.btn:hover {
  background: #f0f0f0;
}

/* Sections */
.section {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.responsive-img {
  margin-top: 1rem;
  border-radius: 8px;
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
th, td {
  border: 1px solid #ccc;
  padding: 0.75rem;
  text-align: left;
}
th {
  background: #f0f0f0;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Footer */
footer {
  background: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  box-shadow: 0 -1px 4px rgba(0,0,0,0.05);
}

/* Responsive Nav */
@media (max-width: 768px) {
.menu-icon {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    display: none;
    flex-direction: column;
    padding: 1rem;
  }

  .nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .menu-toggle:checked + .menu-icon + .nav {
    display: flex;
  }

}


/* My Addon to this theme */
.headTop{
  margin-top: 10px;
  margin-bottom: 0;
  background-color: #e9e8e8;
  border-radius: 12px;
  padding-left: 10px;
  text-align: center;
  border: 1px solid black;
}

.winningNumbersP {
  text-align: center;
  word-spacing:15px;
  font-size: 20px;
}

.topPrizes{
  color:blue;
  font-size:20px;
  line-height: 1.3;
  text-align:center;
}

  .live-now{
    position:fixed;
	width:60px;
	height:60px;
	top:60px;
	right:40px;
	text-align:center;
}
.live-now img{
    height:70px;
}

.btn1{
    background-color: red;
      width:200px;
      text-align:center;
      border-radius:10px;
      padding:5px;
    } 
.btn1:hover{
    color: #fa0000;
    background-color: white;
    vertical-align: middle;
    border: 1.6px solid #fa0000;
    }

.yt{
    color: white;
    text-decoration:none;
    margin: 2px;
  }
  
  .yt:hover{
    color:#fa0000;
    text-decoration:none;
  }

  .liveImg{
  width:40px;
	height:40px;
  }

  .clear {
    clear: both;
  }