<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;display=swap');

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body  {
	background-color: #333;
	font-family: Arial, sans-serif;
    font-family: "Inter", sans-serif;
}

/* Header Styles */
header {
    width: 100%;
    position: sticky;
    z-index: 200;
    top:0px;
    text-shadow: 1px 1px 1px #111;
}
.header-top {
	background: rgb(17,17,17);
	background: linear-gradient(0deg, rgba(17,17,17,1) 0%, rgba(0,0,0,1) 100%);
    text-align: center;
    padding: 6px 0;
}
.logo {
	height: 100%;
	max-height: 52px;
}
.header-bottom {
    border-top: 1px solid #333;
    border-bottom: 1px solid #000;
    background-color: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    font-size: medium;
    display: flex;
    flex-direction: column;

}
.nav-links {
    display: flex;
    gap: 15px;
    width: 100%;
    max-width: 1520px;
    align-self: center;
}
.nav-left,
.nav-right {
    display: flex;
    gap: 15px;
}
.nav-right {
    margin-left: auto;
}
.nav-links a {
    color: white;
    text-decoration: none;
    position: relative;
    margin: 0 4px;
}
.nav-links a:hover::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background-color: currentColor;
    transition: all 0.3s ease;
}
.nav-links .join-now {
    color: #55d58e;
}
.join-now {
    display: inline-flex;
    gap: 5px;
}
.join-now .icon {
    width: auto;
    height: 16px;
    fill: currentColor;
    margin-left: 5px;
}

/* Grid Section */
.grid-section {
    background-color: #111;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
	width: 100%;   
	margin: 0 auto; 
}
.grid-container {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1520px;
    align-self: center;
}
.grid-item {
    position: relative;
}
.grid-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}
.grid-item .overlay img {
    max-width: 80px;
    max-height: 80px;
    
}
.grid-item:hover .overlay {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.grid-item img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    font-size: small;
}
.pagination a.page {
    border: 1px solid white;
    background: none;
    min-width: 36px;
    height: 36px;
}
.pagination a {
    color: white;
    margin: 10px;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination a:hover {
    opacity: 0.8;
}
.pagination .prev {
    color: #999;
    margin: 0px;
	padding: 0px;
	display: flex;
    justify-content: center;
    align-items: center;
}
.pagination .next {
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination .prev .chevronpage {
    width: 8px;
    height: auto;
    fill: currentColor;
    margin-right: 8px;
}
.pagination a .chevronpage {
    width: 8px;
    height: auto;
    fill: currentColor;
    margin-left: 8px;
}
.pagination .dots {
    color: #999;
    padding: 0 5px;
}

/* Join Now Button */
a.footer-btn {
	text-decoration: none;
}

.join-btn {
    display: block;
    background-color: #55d58e;
    color: #111;
    text-decoration: none;
    padding: 20px 40px;
    border: none;
    margin: 0 auto;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 2px solid #55d58e;
}
.join-btn:hover {
	color:white;
}

.join-btn .chevron {
    width: 8px;
    height: auto;
    fill: currentColor;
    margin-left: 6px;
}
.join-btn span {
	font-weight:bolder;
}

/* Footer Styles */
footer {
    background-color: #222;
    color: #777;
    text-align: center;
    padding: 20px;
    border-top: 1px solid black;
    padding-bottom: 100px;
}
.small-logo {
    opacity: 0.5;
    max-width: 160px;
    margin-bottom: 10px;
}
.footer-text {
    font-size: x-small;
}
.footer-text a {
    color: #777;
    text-decoration: none;
}
.footer-text a:hover {
    color: #999;
}

/* Responsive Breakpoints */
@media (max-width: 399px) {
    .nav-left {
        display: none;
    }
    .nav-right {
        margin: 0 auto;
    }
    .nav-links {
        justify-content: center;
    }
    .logo {
        max-height: 30px;
    }
    .grid-section {
    padding: 8px;
	}
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .pagination a.page:nth-child(3),
    .pagination a.page:nth-child(4) {
        display: none;
    }
    .join-btn {
	    font-size: medium;
	}
	.small-logo {
    opacity: 0.5;
    max-width: 120px;
    margin-bottom: 10px;
}
}
@media (min-width: 400px) and (max-width: 765px) {
    .nav-links {
        justify-content: center;
    }
    .nav-left {
        display: flex;
    }
    .nav-right {
        margin-left: 0;
    }
    .nav-left a:not(:nth-child(2)):not(:nth-child(3)) {
        display: none;
    }
    .logo {
        max-height: 36px;
    }
    .grid-section {
    	padding: 8px;
	}
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap:8px;
    }
    .join-btn {
	    font-size: large;
	}
}
@media (min-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(4, 1fr);
    }
    .join-btn {
	    font-size: x-large;
	}
    .logo {
        max-height: 52px;
    }	
}

.payment-popup a{text-decoration:none;color:#333;font-family:Roboto,sans-serif}.payment-popup{position:fixed;right:10px;bottom:10px;width:269px;height:126px;background-color:#FFF;transition:opacity 250ms ease 250ms;z-index:100}.payment-popup,.payment-popup .close{padding:0;opacity:1;text-align:center;color:#333}.payment-popup .close{position:absolute;top:0;right:4px;width:19px;height:24px;font-size:16px;line-height:17px;text-shadow:none;border:0;background:0 0;cursor:pointer}.payment-popup .black{background-color:#ececec;height:25px;width:100%}h4.payment-type-payment{font-size:19px;color:#333;margin:0;padding:0}h4.payment-type-payment strong{font-weight:700;font-style:italic;font-family:Verdana,Geneva,sans-serif}.payment-popup .credit-logo{margin-top:10px;padding:0}.payment-popup .credit-logo img{width:49px;height:26px;margin:0 2px;box-shadow:1px 1px 1px rgba(0,0,0,.2)}@media only screen and (max-width :415px){.payment-popup{position:fixed;right:0;bottom:55px;width:100%;height:126px;background-color:#FFF;transition:opacity 250ms ease 250ms;z-index:100;color:#333}}</pre></body></html>