* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    background-color: #fff;
}
.container {
    max-width: 800px;
    margin: 15px auto;
    padding: 15px;
    background-color: #dbe9f4;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.0);
}
header {
    text-align: center;
    margin-bottom: 10px;
}
.logo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2px;
}
h1 {
    color: #333;
}
.links {
    width: 100%;
    text-align: center;
}
.links h2 {
    font-size: 17px;
    text-align: center;
    font-weight: bold;
    color: #000000;
    background-color: rgb(255,255,255);
    padding: 6px;
    border: 0px solid #000000;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.links a {
    display: block;
    text-decoration: none;
    color: #007bff;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}
.links a:hover {
    background-color: rgba(255, 255, 255, 0.9);
}
.image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    max-width: 800px;
    margin: 0 auto;
}
.image-grid a {
    flex: 1 1 calc(33.333% - 10px);
    max-width: calc(33.333% - 10px);
    border: 1px solid #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s;
    box-sizing: border-box;
}
.image-grid a:hover {
    transform: scale(1.05);
}
.image-grid img {
    width: 100%;
    height: auto;
    display: block;
}
.image-name {
    margin: 4px 10px;
    font-size: 15px;
    color: #000080;
}
footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px 0;
    background-color: #fef2e2;
    border-top: 1px solid #fef2e2;
}
.ad-container {
    width: 100%;
    margin: 20px 0;
    padding: 0;
    background-color: transparent;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.ad-container img,
.ad-container iframe {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
.popup-content {
    background: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    width: 90%;
    position: relative;
    text-align: center;
}
.popup-content h2 {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 20px;
}
.region-selector {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.region-selector label {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 6px 0;
    border-radius: 5px;
    font-size: 19px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    width: 196px;
    text-align: center;
}
.region-selector input[type="radio"] {
    display: none;
}
.region-selector input[type="radio"]:checked + label {
    background: #0056b3;
}
.region-selector label:hover {
    background: #0056b3;
}
.store-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}
.store-grid.active {
    display: grid;
}
.store-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: perspective(500px) translateZ(0);
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 10px;
}
.store-card:hover {
    transform: perspective(500px) translateZ(10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3), 0 12px 24px rgba(0, 0, 0, 0.2);
}
.store-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.store-option img {
    width: 196px;
    height: 98px;
    object-fit: contain;
    display: block;
}
.store-option a {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 6px 0;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.3s;
    width: 196px;
    text-align: center;
}
.store-option a:hover {
    background: #0056b3;
}
.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #333333;
    cursor: pointer;
    background: none;
    border: none;
}
.custom-header .logo-strip {
    background-color: #fef2e2;
    padding: 10px;
    text-align: center;
}
.custom-header .header-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.custom-header .header-logo {
    max-width: 100%;
    height: auto;
    width: 270px;
}
.custom-header .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.custom-header .link-list-strip {
    background-color: #131A22;
    padding: 1px;
    text-align: center;
}
.custom-header .header-nav {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.custom-header .header-nav li {
    margin: 5px 15px;
    position: relative;
}
.custom-header .header-nav a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}
.custom-header .header-nav a:hover {
    color: #ff9900;
}
.mega-menu-strip {
    background-color: #F6F4FF;
    padding: 10px;
    display: none;
}
.mega-menu {
    overflow-x: scroll;
    padding: 20px;
    box-sizing: border-box;
}
.mega-menu-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
}
.mega-menu-column {
    flex: 0 0 16%;
    min-width: 150px;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
}
.mega-menu-column:first-child {
    border-left: none;
}
.mega-menu-column:last-child {
    border-right: none;
}
.mega-menu-column h3 {
    font-size: 16px;
    margin-bottom: 5px;
}
.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mega-menu-column li {
    margin-bottom: 3px;
    padding: 5px 0;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #ccc;
}
.mega-menu-column li:last-child {
    border-bottom: none;
}
.mega-menu-column a {
    color: #000080;
    text-decoration: none;
}
.mega-menu-column a:hover {
    color: #ff9900;
}
.custom-header .menu-toggle {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 20px;
    cursor: pointer;
    margin-bottom: 10px;
    display: none;
}
.link-list-strip {
    background-color: #131A22;
    padding: 1px;
}
.footer-nav {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.footer-nav li {
    margin: 5px 15px;
}
.footer-nav a {
    color: #fef2e2;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-nav a:hover {
    color: #ff9900;
}
.social-media-strip {
    margin-top: 15px;
    padding: 10px 0;
    background-color: #232f3e;
}
.social-media-links {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}
.social-media-links li {
    margin: 0 10px;
}
.social-media-links img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}
.social-media-links img:hover {
    transform: scale(1.1);
}
.copyright-strip {
    background-color: #232f3e;
    padding: 10px;
}
.copyright-strip p {
    margin: 0;
    font-size: 15px;
    font-weight: bold;
    color: #fef2e2; /* Updated to match footer-nav a color */
}
.copyright-link {
    color: #fef2e2; /* Updated to match footer-nav a color */
    text-decoration: none;
    transition: color 0.3s ease;
}
.copyright-link:hover {
    color: #ff9900;
}
.share-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 49;
}
.share-button button {
    background-color: #2c333F;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 16px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.share-button button:hover {
    background-color: orange;
}
/* Media Queries */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    .links a {
        padding: 12px;
        font-size: 16px;
    }
    .image-grid a {
        flex: 1 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    .image-grid a:hover {
        transform: none;
    }
    .custom-header .header-logo {
        width: 120px;
    }
    .custom-header .header-nav {
        display: none;
        flex-direction: column;
    }
    .custom-header .header-nav.active {
        display: flex;
    }
    .custom-header .menu-toggle {
        display: block;
    }
    .mega-menu-column {
        flex: 1 1 100%;
    }
    .footer-nav {
        flex-direction: row;
    }
    .footer-nav li {
        margin: 5px 10px;
    }
    .social-media-links img {
        width: 25px;
        height: 25px;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    .links a {
        padding: 10px;
        font-size: 14px;
    }
    .image-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        max-width: 800px;
        margin: 0 auto 1px;
    }
    .image-grid a {
        flex: 1 1 calc(100% - 10px);
        max-width: calc(100% - 10px);
    }
    .image-grid a:hover {
        transform: none;
    }
    .custom-header .header-logo {
        width: 200px;
    }
    .custom-header .header-nav li {
        margin: 5px 10px;
    }
    .mega-menu-column {
        flex: 1 1 100%;
    }
    .social-media-links img {
        width: 20px;
        height: 20px;
    }
    .popup-content {
        width: 95%;
        padding: 15px;
    }
    .store-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
    .store-card {
        padding: 8px;
    }
    .store-option img {
        width: 160px;
        height: 80px;
    }
    .store-option a {
        width: 160px;
    }
    .region-selector {
        justify-content: space-between;
        flex-direction: row;
    }
    .region-selector label {
        width: 160px;
        padding: 5px 0;
        font-size: 16px;
    }
}