* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
}

.logo img {
    height: 70px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: none;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-text {
    background: none;
    border: none;
    color: #667eea;
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-text:hover {
    color: #764ba2;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c3e50;
}

/* Update your .background-banner in common.css */
.background-banner {
    height: 150px;
    background-image: url("./images/entertainment2.PNG"); /* Start with the first image */
    background-size: contain; /* Image will be fully contained within the banner, no cropping */
    background-position: center center; /* Image will be centered horizontally and vertically */
    background-repeat: no-repeat; /* Ensure image doesn't repeat */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden; /* Important to hide any overflow if image aspect ratio makes it too tall */
    animation: cycleImages 5s linear infinite; /* Adjust duration as needed */
}

/* The existing shimmer effect should be preserved */
.background-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 2s infinite;
}

/* Updated @keyframes cycleImages in common.css */
@keyframes cycleImages {
    0% {
        background-image: url("./images/entertainment2.PNG");
        background-size: contain;
        background-position: center center;
    }
    33% {
        background-image: url("./images/entertainment2.PNG");
        background-size: contain;
        background-position: center center;
    }
    34% {
        background-image: url("./images/wellness2.png");
        background-size: contain;
        background-position: center center;
    }
    66% {
        background-image: url("./images/wellness2.png");
        background-size: contain;
        background-position: center center;
    }
    67% {
        background-image: url("./images/food2.PNG");
        background-size: contain;
        background-position: center center;
    }
    100% {
        background-image: url("./images/food2.PNG");
        background-size: contain;
        background-position: center center;
    }
}

/* The shimmer animation remains unchanged */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Main Content */
main {
    background: white;
    border-radius: 30px 30px 0 0;
    margin-top: -30px;
    position: relative;
    z-index: 10;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    padding-bottom: 3rem; /* Added for general main content */
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.logo-section {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
}

.logo-section img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-contact p {
    margin-bottom: 1rem;
    color: #bdc3c7;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.link-column h4 {
    margin-bottom: 1rem;
    color: #667eea;
}

.link-column ul {
    list-style: none;
}

.link-column li {
    margin-bottom: 0.5rem;
}

.link-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-column a:hover {
    color: #667eea;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.social-icons img {
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Modals (Login/Register) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 200; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.modal-content h2 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 1.8rem;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-content input[type="email"],
.modal-content input[type="password"],
.modal-content input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.modal-content .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
    cursor: pointer;
}

.modal-content .close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal-content .close:hover,
.modal-content .close:focus {
    color: #2c3e50;
    text-decoration: none;
}

.error-message {
    color: #dc3545;
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .cta-buttons {
        display: none;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu.active .cta-buttons {
        display: flex;
        margin-top: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
/* For the 'AboutUs' image in the About section */
.about-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    /* Existing shadow, enhance if needed or add another for more contrast */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.4)); /* Added for contrast */
}

/* For the 'Blog' image in the Blog section */
.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    /* Existing shadow, enhance if needed or add another for more contrast */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.4)); /* Added for contrast */
}

/* For the 'emailIcon' in the footer contact item */
.contact-item img {
    border-radius: 50%; /* This might not be needed for emailIcon specifically as it's not a round social icon */
    /* Remove or adjust existing box-shadow if it's causing issues */
    box-shadow: none; /* Removing existing box-shadow if it conflicts */
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5)); /* Added for contrast, adjust values */
    background-color: rgba(255, 255, 255, 0.1); /* Optional: a very subtle transparent background */
    padding: 2px; /* Optional: adds a little space for the shadow to show */
}

/* Category Selector Styles */
.category-selector {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.selector-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.category-dropdown {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    background: white;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #667eea 50%), linear-gradient(135deg, #667eea 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.category-dropdown:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.category-dropdown:hover {
    border-color: #667eea;
}

.category-content {
    display: none;
}

.category-content.active {
    display: block;
    animation: fadeInUp 0.6s ease forwards;
}

.no-selection {
    text-align: center;
    padding: 4rem 2rem;
    color: #6c757d;
    font-size: 1.2rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Original styles that might be needed if not in common.css */
.subscription-section {
    padding: 4rem 0;
}

.subscription-header {
    text-align: center;
    margin-bottom: 3rem;
}

.subscription-description p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.9rem;
    color: #dc3545;
    font-weight: 500;
}

.category-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 3rem 0 1.5rem 0;
    position: relative;
    padding-left: 20px;
}

.category-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.table-responsive {
    overflow-x: auto;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.subscription-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.subscription-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.subscription-table th,
.subscription-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.subscription-table th {
    font-weight: 600;
    font-size: 1.1rem;
}

.subscription-table tbody tr {
    transition: all 0.3s ease;
}

.subscription-table tbody tr:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    transform: scale(1.01);
}

.subscription-table a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.subscription-table a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.note {
    display: block;
    font-size: 0.8rem;
    color: #6c757d;
    font-style: italic;
    margin-top: 0.25rem;
}

/* Responsive table for mobile */
@media (max-width: 600px) {
    .subscription-table thead {
        display: none;
    }

    .subscription-table tbody tr {
        display: block;
        margin-bottom: 2rem;
        border: 1px solid #e9ecef;
        border-radius: 10px;
        padding: 1rem;
        background: white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .subscription-table td {
        display: block;
        text-align: right;
        border: none;
        padding: 0.5rem 0;
        position: relative;
        padding-left: 50%;
    }

    .subscription-table td:before {
        content: attr(data-label) ": ";
        position: absolute;
        left: 0;
        width: 45%;
        text-align: left;
        font-weight: 600;
        color: #2c3e50;
    }
}