﻿#navMenu a:hover {
    color: #fff;
    border-bottom: 2px solid #fff;
	text-decoration:none!important;
}

#navMenu a.active {
    color: #fff;
    border-bottom: 2px solid #fff;
}

.forgot-link {
    border-bottom: 1px solid #fff6;
    color: #fff;
    font-size: .75rem;
    font-weight: 400;
    text-align: right;
}

    .forgot-link:hover {
        cursor:pointer;
        text-decoration:none;
    }

    .gameImageTab {
        width: 100%;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        column-count: 4;
    }

    @media (max-width: 800px) {
        .gameImageTab {
            display: grid;
            gap: 10px;
            grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
            margin-top: 15px;
        }

            .gameImageTab .game-card {
                max-width: 170px !important;
                height: auto !important;
                padding: 5px;
            }

            .gameImageTab img {
                max-width: 170px;
                height: 167px!important;
                object-fit: cover;
                display: block;
                border-radius: 15px;
            }

            .gameImageTab .card-overlay {
                position: absolute;
                inset: 0;
                background: rgba(0,0,0,0.5);
                color: #fff;
                opacity: 0;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: 0.3s ease;
            }

}

/*.play-button {
    text-decoration: none;
    padding: 0.5rem 2.0rem;
}*/

.play-button2 {
    text-decoration: none;
    text-align: center;
}

.card-overlay a.play-button {
    background: #4caf50;
    border: none;
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 13px!important;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
}

.sub-footer {
    width: 100%!important;
    margin: 0px!important;
}

.footerMenu {
    font-family: "TT Rounds Bold", Arial, sans-serif;
    padding: 1em 0 4em;
}

    .footerMenu li {
        font-size: 0.84rem;
        line-height: 1.34em;
    }

.footer-column li a {
    font-size: 0.9rem;
    color: #4d4d4d !important;
    -webkit-text-decoration: none;
    text-decoration: none;
}

    .footer-column li a:hover {
        color: #4d4d4d !important;
        -webkit-text-decoration: underline;
        text-decoration: underline;
    }


.marquee-container {
    width: 100%;
    height: 60px;
    overflow: hidden;
    position: relative;
    background: transparent;
}

.marquee-content {
    display: flex;
    height: 60px;
    gap: 10px;
    animation: scrollLeft 20s linear infinite; /* Adjust speed */
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.card {
    min-width: 250px;
    height: 60px;
    padding: 10px;
    background: #fff;
    border-radius: 6px;
    box-sizing: border-box;
    border-bottom: 2px solid transparent; /* default no border */
    transition: border-color 0.2s ease;
    position:relative;
}

.card-content {
    width: auto;
    position: absolute;
    left: 95px;
    max-height: 40px;
    overflow: hidden;
    top:5px;
}
    .card-content h4 {
        color:#444;
    }
.card-content p {
   font-size:7px;
}

    .card:hover {
        border-bottom: 2px solid red !important;
    }

@media (max-width: 768px) {
    .marquee-content {
        animation: scrollLeft 10s linear infinite; /* Adjust speed */
    }
}


.tc-tabs {
    font-family: Arial, sans-serif;
}

.tc-tab-links {
    display: flex;
    gap: 8px;
    margin: 0 0 8px 0;
    padding: 0;
    list-style: none;
}

    .tc-tab-links li {
        padding: 6px 12px;
        cursor: pointer;
        background: #f2f4f7;
        border-radius: 6px;
        border: 1px solid #e1e4e8;
    }

        .tc-tab-links li.tc-active {
            background: #fff;
            color: #007bff;
            font-weight: 600;
            border-bottom: 2px solid #fff;
        }

.tc-tab-content {
    border: 1px solid #e1e4e8;
    border-radius: 6px;
    padding: 12px;
    background: #fff;
}

.tc-tab {
    display: none;
}

    .tc-tab.tc-active {
        display: block;
    }

.last-main {
    text-align: center;
}


.window-header {
    height: 40px;
    background: #000;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 10px;
    justify-content: space-between;
    font-family: Arial, sans-serif;
}

.window-frame {
    width: 100%!important;
    height: 700px;
    background: #000;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
}

#game-container {
    width: 100%;
    height: 100%;
}

.window-content1 {
    flex: 1 1 auto;
    padding: 1px;
    overflow: hidden;
    background: #000;
}

iframe {
    width: 100%;
    height: 100%;
    /*border: none;*/
}

.relative {
    position: relative;
}

.popup {
    position: absolute;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999999;
}

.Ad-inner {
    width: 100%;
    margin-top: 10px;
    overflow: hidden;
}

.Ad-inner img {
	max-height:650px;
}

.popup button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    vertical-align: text-top;
}

.popup i {
    color: red;
}

/* Positioning Classes */
.top-left {
	position: fixed;
    top: 10px;
    left: 10px;
}

.top-center {
	position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.top-right {
	position: fixed;
    top: 10px;
    right: 10px;
}

.center-left {
	position: fixed;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
}

.center {
	position: fixed; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center-right {
	position: fixed;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.bottom-left {
	position: fixed;
    bottom: 10px;
    left: 10px;
}

.bottom-center {
	position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.bottom-right {
	position: fixed;
    bottom: 10px;
    right: 10px;
}
