body {
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
    text-align: center;
}
.container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 25px auto;
}
.channel {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}
.channel img {
    max-width: 100%;
    height: auto;
}
.live {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: white;
    padding: 3px 7px;
    font-size: 12px;
    border-radius: 5px;
}
.adsense-slot {
    grid-column: 3 / 5; /* იწყება მესამე სვეტიდან და მთავრდება მეხუთე სვეტის ხაზზე */
    grid-row: 2 / 4;    /* იწყება მეორე ხაზიდან და მთავრდება მეოთხე ხაზზე */
    background-color: #e0e0e0; /* ან სხვა ფერი, რეკლამის ადგილის გამოსაყოფად */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    font-weight: bold;
   /* padding: 50px; */
  	overflow: hidden;
}

.adsense-horizontal { /* თუ გსურთ კონკრეტული სტილები ჰორიზონტალური რეკლამისთვის */
    /* შეგიძლიათ დაამატოთ აქ */
}

.menu-slot{
    grid-column: 1 / 2; /* იწყება მესამე სვეტიდან და მთავრდება მეხუთე სვეტის ხაზზე */
    grid-row: 1 / 3;    /* იწყება მეორე ხაზიდან და მთავრდება მეოთხე ხაზზე */
    background-color: #e0e0e0; /* ან სხვა ფერი, რეკლამის ადგილის გამოსაყოფად */
    /* display: flex; */
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    font-weight: bold;
}

.channel {
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* ანიმაცია ეფექტებისთვის */
}

.channel:hover {
    transform: translateY(-2px); /* აწევა ზემოთ hover-ის დროს */
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2); /* გაძლიერებული ჩრდილი hover-ის დროს */
}
.logo{
    
    border-radius: 10px;
    display: block;
    margin-top: 6px;
}
.logo img{
    max-width: 136px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* ანიმაცია ეფექტებისთვის */
}
.logo:hover img{
    transform: translateY(-5px); /* აწევა ზემოთ hover-ის დროს */
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2); /* გაძლიერებული ჩრდილი hover-ის დროს */
}
ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: left;
}
ul li{
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* ანიმაცია ეფექტებისთვის */
}
ul li a{
    text-decoration: none;
    color: #000000;
    font-size: 15px;
    font-family: sans-serif;
   /* text-transform: uppercase; */
    display: block;
    padding: 8px 0px 8px 10px;
}
ul li:hover{
    border-left: 5px solid red;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2); /* გაძლიერებული ჩრდილი hover-ის დროს */
}
nav{
    margin-top: 10px;
}
.channel-title{
    display: none;
    position: relative;
}
.channel-list:hover .channel-title{
    display: block;
    position: absolute;
    bottom: 0px;
    width: 100%;
    color: #373535;
    background: #c5c4c482;
    left: 0px;
    padding: 6px 0px;
    font-size: 16px;
    font-weight: bold;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.footer{
    grid-column: 1 / 7;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: justify;
    font-family: system-ui;
}
#tv_box,
.plyr,
.plyr__video-wrapper{
	aspect-ratio: 16 / 9 !important;
}
.languages{
    margin-top: 10px;
}
.languages a {
    display: inline-block;
    width: 0px;
    height: 15px;
    margin: 2px 0px;
}
.en {
    background: url("images/language_sprite_small.png") no-repeat -28px -31px;
    padding: 2px 12px;
}
.ka {
    background: url("images/language_sprite_small.png") no-repeat -1px -2px;
    padding: 2px 12px;
}
.ru {
    background: url("images/language_sprite_small.png") no-repeat -28px -81px;
    padding: 2px 12px;
}
.en:hover {
    background: url("images/language_sprite_small.png") no-repeat -28px -1px;
}
.ka:hover {
    background: url("images/language_sprite_small.png") no-repeat -1px -32px;
}
.ru:hover {
    background: url("images/language_sprite_small.png") no-repeat -28px -56px;
}
.about{
	grid-column: 2 / 7;
}
@media screen and (max-width: 600px){
	.menu-slot{
		display: none;
	}
	.adsense-horizontal{
		grid-column: 1 / 4;
    	grid-row: 7 / 7;
	}
	.container {
	    grid-template-columns: repeat(3, 1fr);
	    gap: 15px;
	}
	.footer{
		grid-column: 1 / 4;
	}
	.adsense-player-left{
		display: none !important;
	}
	#tv_box{
		grid-column: 1 / 4 !important;
	}
	.adsense-player-bottom{
		grid-column: 1 / 4 !important;
	}
	.player-bottom-channels{
		grid-column: 1 / 4 !important;
	}
}



















