

  body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: #0d0d14;
    color: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
    
  }

  /* HEADER */
  .mheader {
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 100%);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 2px solid #ff2d7a;
    box-shadow: 0 0 40px rgba(255, 45, 122, 0.3);
  }

  .mheader h1 {
    font-size: 3rem;
    background: linear-gradient(90deg, #ff2d7a, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
  }

  .mheader p {
    color: #b8b8d1;
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .btn-start {
    display: inline-block;
    padding: 22px 60px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(90deg, #ff2d7a, #c9186b);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 30px rgba(255, 45, 122, 0.5);
    transition: all 0.3s ease;
  }

  .btn-start:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 45, 122, 0.7);
  }

  /* STREAMS GRID */
  .streams-section {
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 20px;
  }

  .streams-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ff6b9d;
  }

  .streams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
  }

  .stream-card {
    background: #1a1a2e;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2a2a4a;
    heght:800px;
  }

  .stream-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 45, 122, 0.25);
    border-color: #ff2d7a;
  }

  .stream-thumb {
    position: relative;
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #3a1c5e, #5c2a8a);
    overflow: hidden;
    border:2px solid green;
  }
div.imgcont{
position:absolute;
top:0;
left:0;
	width:100%;
	height:100%;
	boder:2px solid red;
	display:block;
	boder-radius:16px;
	overflow:hidden;
}
div.imgcont img{
object-fit:cover;
	width:100%;
	height:100%;
	borer:1px solid red;
	
}
  .steam-thumb::before {
    content: "🎥";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0.4;
  }

  .live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff2d7a;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index:1;
  }

  .live-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .viewers {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    z-index:1;
  }

  .stream-info {
    padding: 15px;
   
  }

  .stream-nick {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ff6b9d;
    margin-bottom: 5px;
  }

  .stream-status {
    font-size: 0.85rem;
    color: #8a8aa8;
    text-transform: lowercase;
  }

  /* ARTICLE */
  .article-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 40px 30px;
    background: #15152a;
    border-radius: 16px;
    border: 1px solid #2a2a4a;
  }

  .article-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ff6b9d;
  }

  .article-section p {
    margin-bottom: 20px;
    color: #d0d0e0;
    font-size: 1.05rem;
    text-align: justify;
  }

  .article-section strong {
    color: #ff2d7a;
  }

 

  @media screen and (max-width: 801px) and (orientation: portrait){
    header h1 { font-size: 2rem; }
    .btn-start { padding: 18px 40px; font-size: 1.1rem; }
     .stream-thumb {
		 height:400px;
	 }
  }
