/*-------- CSS -------------*/
/* ------------------Reset--------------------- */
a,abbr,acronym,address,applet,article,aside,audio,b,blockquote,big,body,center,canvas,caption,cite,code,command,datalist,dd,del,details,dfn,dl,div,dt,em,embed,fieldset,figcaption,figure,font,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,keygen,label,legend,li,meter,nav,object,ol,output,p,pre,progress,q,s,samp,section,small,span,source,strike,strong,sub,sup,table,tbody,tfoot,thead,th,tr,tdvideo,tt,u,ul,var{background:transparent;border:0 none;font-size:100%;margin:0;padding:0;border:0;outline:0;vertical-align:top;}ol, ul {list-style:none;}blockquote, q {quotes:none;}table, table td {padding:0;border:none;border-collapse:collapse;}img {vertical-align:top;}embed {vertical-align:top;}
article, aside, audio, canvas, command, datalist, details, embed, figcaption, figure, footer, header, hgroup, keygen, meter, nav, output, progress, section, source, video {display:block;}
mark, rp, rt, ruby, summary, time {display:inline;}
input, textarea {border:0; padding:0; margin:0; outline: 0;}
iframe {border:0; margin:0; padding:0;}
input, textarea, select {margin:0; padding:0px;}

/*----------------- global ------------------------*/
.overlay{
            position:fixed;
            top:0;
            bottom:0;
            left:0;
            right:0;
            background:rgba(0,0,0,.7);
            transition:opacity .5s;
            visibility:visible;
            opacity:1;
            z-index:999
         }
        .overlay:target{
            visibility:hidden;
            opacity:0
        }
.popup{
            top:50%;
            left:50%;
            transform:translate(-50%,-50%);
            padding:2px;
            border-radius:5px;
            width:30%;
            position:relative;
        }
        .popup h2{
            margin-top:0;
            color:#333;
            font-family:Tahoma,Arial,sans-serif
        }
        .popup .close{
            position:absolute;
            right:5px;
            transition:.2s;
            font-size:30px;
            font-weight:700;
            text-decoration:none;
            color:#fff;
        }
            
        .popup .close:hover{
            color:#06d85f
        }
        .popup .content{
            
            overflow:auto;
            margin-top:30px
        }
        @media screen and (max-width:700px){.popup{width:85%}
}
div {
	box-sizing: border-box;
	
}


body {
	
	background: black;
	font-family: 'Oswald', sans-serif;
}

.space {
	width: 100%;
	height: 150px;
}

.container {
	width: 70%;
	margin: auto;
		
}

.floating-top {
	position: fixed;
	width: 100%;
	text-align: center;
	bottom: 1px;
	z-index: 9999;
}

.banner-float {
	position: fixed;
	width: 100%;
	text-align: center;
	bottom: 1px;
	z-index: 9999;
}

.banner-float img {
	width: 728px;
	
}

.head {
	width: 100%;
	padding: 20px;
	background: white;
	
}

.logo {
	display: block;
	width: 600px;
	height: 250px;
	background: url("../img/logo-hongkongpoolsidn.webp") center no-repeat;
	background-size: 100% 100%;
	margin: auto;
}

/* =========================
   MENU NAVIGATION
========================= */
.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  margin: 0 auto 18px;
}

.menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid #8b1028;
  border-radius: 8px;
  background: linear-gradient(180deg, #a81635 0%, #6f071c 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.menu a:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #bd1b3d 0%, #7e0921 100%);
  box-shadow: 0 6px 16px rgba(139, 16, 40, 0.35);
}

/* =========================
   LANDSCAPE BANNER
========================= */
.live-hk-banner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 22px;
  overflow: hidden;
  border: 2px solid #8b1028;
  border-radius: 14px;
  background: #111111;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.live-hk-banner a {
  display: block;
  width: 100%;
  text-decoration: none;
}

.live-hk-banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

/* =========================
   CONTENT
========================= */
.content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px;
  box-sizing: border-box;
  border: 1px solid rgba(139, 16, 40, 0.45);
  border-radius: 14px;
  background: #151515;
  color: #eeeeee;
}

.content h1 {
  margin: 0 0 18px;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.25;
  text-align: center;
}

.content .title-head {
  color: #ffffff;
  text-decoration: none;
}

.content .title-head:hover {
  color: #e94a66;
}

.content p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
}

.content p:last-child {
  margin-bottom: 0;
}

/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
  .menu {
    gap: 8px;
    margin-bottom: 14px;
  }

  .menu a {
    flex: 1 1 calc(50% - 8px);
    min-width: 140px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .live-hk-banner {
    margin-bottom: 16px;
    border-radius: 10px;
  }

  .content {
    padding: 18px 16px;
    border-radius: 10px;
  }

  .content p {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {
  .menu {
    display: grid;
    grid-template-columns: 1fr;
  }

  .menu a {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .live-hk-banner {
    border-width: 1px;
    border-radius: 8px;
  }

  .live-hk-banner img {
    aspect-ratio: 16 / 9;
  }

  .content {
    padding: 16px 14px;
  }

  .content h1 {
    margin-bottom: 14px;
    font-size: 23px;
  }

  .content p {
    font-size: 14px;
    line-height: 1.65;
  }
}

/*=========================
  CONTENT AREA
==========================*/
.content{
    color:#ffffff;
}

.content h1,
.content h2,
.content h3{
    color:#ffffff;
}

.content p{
    color:#ffffff;
    line-height:1.9;
    font-size:16px;
}

.content b{
    color:#ffffff;
}

/*=========================
  TITLE
==========================*/
.title-head,
.title-footer{
    color:#ffffff;
    text-decoration:none;
    font-weight:700;
    transition:.25s;
}

.title-head:hover,
.title-footer:hover{
    color:#ffd2d8;
}

/*=========================
  PARAGRAPH LINK
==========================*/
.content p a{
    color:#ffffff;
    text-decoration:none;
    font-weight:700;
}

.content p a:hover{
    color:#ffd2d8;
}

/*=========================
  BANNER
==========================*/
.banner1{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin:25px 0;
}

.banner1 img{
    display:block;
    max-width:100%;
    border-radius:10px;
    transition:.25s;
    box-shadow:0 8px 30px rgba(0,0,0,.45);
}

.banner1 img:hover{
    transform:translateY(-4px);
}

/*=========================
  IFRAME
==========================*/
.frame{
    width:100%;
    display:flex;
    justify-content:center;
    margin:25px 0;
}

.frame iframe{
    width:100%;
    max-width:1200px;
    border:none;
    border-radius:12px;
    overflow:hidden;
    background:#111;
    box-shadow:0 12px 35px rgba(0,0,0,.45);
}

/*=========================
  MOBILE
==========================*/
@media(max-width:768px){

.content p{
    font-size:15px;
    line-height:1.8;
}

.frame iframe{
    height:700px;
}

}

@media(max-width:480px){

.content p{
    font-size:14px;
}

.frame iframe{
    height:620px;
}

}

.banner1 {
	width: 100%;
	display: table;
	box-sizing: border-box;
	text-align: center;
}

.banner1 img {
	display: inline-block;
	width: 49.8%;
	border: 1px gold solid;
	box-sizing: border-box;
}

.banner2 {
	width: 100%;
	display: table;
	box-sizing: border-box;
	text-align: center;
	margin-top: 20px;
}

.banner2 img {
	display: inline-block;
	width: 49.5%;
	border: 1px gold solid;
	box-sizing: border-box;
}

.menu {
	display: block;
	width: 100%;
	text-align: center;
	background: #e00000;
}

.menu a {
	display: inline-block;
	padding: 10px 20px;
	text-decoration: none;
	color: white;
	margin: 0px;
	font-size: 18px;
}

.menu a:hover {
	color: gold;
}

.content {
	width: 100%;
	border: 1px white solid;
}

.content{
    background:
        linear-gradient(rgba(10,10,10,.80),rgba(10,10,10,.88)),
        url("../img/live-draw-hk.webp") center center / cover no-repeat;

    color:#fff;
    border-radius:15px;
    padding:25px;
    border:1px solid rgba(255,255,255,.08);
}

h1, h2, h3 {
	text-align: center;
	
}

h3 {
	font-family: arial;
	margin: 40px 0px;
	color: white;
	font-size: 28px;
}

.title-head {
	font-size: 24px;
	text-decoration: none;
	color: white;
	
}

.title-footer {
	font-size: 28px;
	text-decoration: none;
	color: white;
}

.content p {
	text-align: left;
	font-size: 16px;
	color: white;
	margin: 10px;
}

.hk {
	width: 65%;
	margin: auto;
	
}

.hk table {
	width: 100%;
	
}

.tanggal {
	width: 100%;
	text-align: center;
	background: rgba(224,0,0,1);
background: -moz-linear-gradient(top, rgba(224,0,0,1) 0%, rgba(140,0,0,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(224,0,0,1)), color-stop(100%, rgba(140,0,0,1)));
background: -webkit-linear-gradient(top, rgba(224,0,0,1) 0%, rgba(140,0,0,1) 100%);
background: -o-linear-gradient(top, rgba(224,0,0,1) 0%, rgba(140,0,0,1) 100%);
background: -ms-linear-gradient(top, rgba(224,0,0,1) 0%, rgba(140,0,0,1) 100%);
background: linear-gradient(to bottom, rgba(224,0,0,1) 0%, rgba(140,0,0,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e00000', endColorstr='#8c0000', GradientType=0 );
color: white;
font-size: 20px;
padding: 10px 0px;
box-sizing: border-box;
border: 1px solid #989898;
}

.prize {
	width: 50%;
	text-align: center;
	background: rgba(224,0,0,1);
background: -moz-linear-gradient(top, rgba(224,0,0,1) 0%, rgba(140,0,0,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(224,0,0,1)), color-stop(100%, rgba(140,0,0,1)));
background: -webkit-linear-gradient(top, rgba(224,0,0,1) 0%, rgba(140,0,0,1) 100%);
background: -o-linear-gradient(top, rgba(224,0,0,1) 0%, rgba(140,0,0,1) 100%);
background: -ms-linear-gradient(top, rgba(224,0,0,1) 0%, rgba(140,0,0,1) 100%);
background: linear-gradient(to bottom, rgba(224,0,0,1) 0%, rgba(140,0,0,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e00000', endColorstr='#8c0000', GradientType=0 );
color: white;
font-size: 20px;
padding: 10px 0px;
border: 1px solid #989898;
}

.prizenum {
	width: 50%;
	text-align: center;
	background: white;
	font-size: 20px;
	vertical-align: middle;
	border: 1px solid #989898;
}

.prizenum img {
	width: 100px;
	height: 26px;
}

.othernum {
	width: 50%;
	height: 40px;
	text-align: center;
	background: white;
	font-size: 18px;
	vertical-align: middle;
	border: 1px solid #989898;
	
}

.othernum img {
	
	width: 100px;
	height: 26px;
	
}

.iklan {
	width: 100%;
	
}

.iklan img {
	width: 100%;
	
	
}

.lassres {
	width: 65%;
	margin: auto;
}

.lassres table {
	width: 100%;
	
}

.t1 {
	width: 40%;
	padding: 5px 0px 5px 10px;
	border: 1px solid #989898;
	background: white;
	font-size: 16px;
}

.t2 {
	width: 30%;
	padding: 5px 0px 5px 10px;
	border: 1px solid #989898;
	background: white;
	font-size: 16px;
}

.t3 {
	width: 30%;
	padding: 5px 0px 5px 10px;
	border: 1px solid #989898;
	background: white;
	font-size: 16px;
}

.kepala {
	text-align: center;
	font-size: 20px;
	background: #d7182a;
	color: white;
}

.out-link {
	list-style-type: square;
	margin:  0px 35px;
	color: white;
}

.out-link a {
	text-decoration: none;
	color: white;
}

@media only screen and (max-device-width: 1000px) {
	.container {
		width: 100%;
		
		
	}
	
	.logo {
	width: 200px;	
	height: 80px;
	}
	
	.menu a {
		display: block;
		font-size: 16px;
		border: 1px solid white;
	}
	
	.banner1 {
		display: block;
		
	}
	
	.banner1 img {
		display: block;
		width: 100%;
	}
	
	.hk {
		width: 100%;
		
	}
	
	.tanggal {
		font-size: 16px;
		
	}
	
	.banner2 {
		display: block;
		
	}
	
	.banner2 img {
		display: block;
		width: 100%;
	}
	
	.lassres {
		width: 100%;
		
	}
	
	h3 {
		font-size: 14px;
		
	}
	
	.title-footer {
		font-size: 14px;
		
	}
	
	.banner-float {
		width: 100%;
		
	}
	
	.banner-float img {
		width: 100%;
		
	}
   
}

