* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Category Bar */
.top-category-bar {
    background: #000;
    padding: 0.5rem 0;
    overflow-x: auto;
    white-space: nowrap;
}

.category-scroll {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.category-tag {
    background: #333;
    color: #ccc;
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.category-tag:hover {
    background: #555;
    color: white;
}

.category-tag.active {
    background: #000;
    color: white;
    font-weight: bold;
}

/* New Header */
.header-new {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-new .container {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 2rem;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #fbbf24 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.logo-text h1 {
    font-size: 1.2rem;
    color: #667eea;
    margin: 0;
    font-weight: bold;
}

.tagline {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
}

.nav-new {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-new a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.3s;
}

.nav-new a:hover,
.nav-new a.active {
    color: #667eea;
}

.header-search {
    position: relative;
    flex: 1;
    max-width: 300px;
}

.header-search input {
    width: 100%;
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    border: 2px solid #667eea;
    border-radius: 25px;
    outline: none;
    font-size: 0.9rem;
}

.search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
}

.header-icons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.icon-btn:hover {
    background: #e0e0e0;
}

.icon-btn:first-child {
    width: auto;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: #667eea;
    color: white;
    font-weight: bold;
}

.icon-btn:first-child:hover {
    background: #5568d3;
}

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #f5576c;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Main Search Section */
.main-search-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 3rem 0;
    margin-top: 2rem;
}

.search-type-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.search-type-btn {
    padding: 1.2rem 2.5rem;
    border: 2px solid #667eea;
    border-radius: 15px;
    background: white;
    color: #667eea;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.search-type-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.search-type-btn.active {
    background: #667eea;
    color: white;
}

.btn-icon {
    font-size: 1.2rem;
}

.search-options-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.main-search-input {
    max-width: 800px;
    margin: 0 auto;
}

.main-search-input label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
    font-size: 1.1rem;
}

.input-group {
    display: flex;
    gap: 1rem;
}

.input-group input {
    flex: 1;
    padding: 1.2rem;
    border: 2px solid #667eea;
    border-radius: 10px;
    font-size: 1.2rem;
    outline: none;
}

.input-group input:focus {
    border-color: #764ba2;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.main-search-btn {
    padding: 1.2rem 3rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-search-btn:hover {
    background: #5568d3;
    transform: scale(1.05);
}

/* Price Filter Input */
.price-filter-input {
    max-width: 800px;
    margin: 0 auto;
}

.price-filter-input label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
    font-size: 1.1rem;
}

.price-input-group {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.price-input-field {
    flex: 1;
    min-width: 200px;
}

.price-input-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #666;
    font-size: 0.9rem;
}

.price-input-field input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #667eea;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
}

.price-input-field input:focus {
    border-color: #764ba2;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Business Pack Input */
.business-pack-input {
    max-width: 800px;
    margin: 0 auto;
}

.business-pack-input label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
    font-size: 1.1rem;
}

/* Category Banners Section */
.category-banners-section {
    padding: 2rem 0;
    background: white;
}

.category-banners {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
}

.category-banners::-webkit-scrollbar {
    height: 8px;
}

.category-banners::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.category-banners::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

.category-banners::-webkit-scrollbar-thumb:hover {
    background: #5568d3;
}

/* Analytics Styles */
.analytics-list {
    display: grid;
    gap: 1rem;
}

.analytics-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 5px;
    border-left: 4px solid #667eea;
}

.analytics-label {
    font-weight: bold;
    color: #333;
}

.analytics-value {
    color: #667eea;
    font-weight: 600;
}

/* Banner Management Styles */
.banners-list {
    display: grid;
    gap: 1rem;
}

.banner-item {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr auto;
    gap: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 5px;
    align-items: center;
}

.banner-item-header {
    font-weight: bold;
    color: #667eea;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

/* Blog Post Card Styles */
.blog-post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.blog-post-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-content {
    padding: 1.5rem;
}

.blog-post-meta {
    display: flex;
    gap: 1rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-post-content h2 {
    margin-bottom: 1rem;
}

.blog-post-content h2 a {
    color: #667eea;
    text-decoration: none;
}

.blog-post-content h2 a:hover {
    color: #764ba2;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

/* Hero Text */
.hero-text {
    text-align: center;
    padding: 3rem 0;
    background: white;
}

.hero-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin: 0;
    font-weight: bold;
}

.highlight {
    color: #667eea;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(to right, #fbbf24, #f59e0b);
    border-radius: 4px;
    z-index: -1;
}

/* Promotional Cards */
.promo-cards-section {
    padding: 2rem 0;
    background: white;
}

.promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.promo-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.promo-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.promo-card.featured {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.card-number {
    font-size: 4rem;
    font-weight: bold;
    color: #000;
    background: #fbbf24;
    padding: 1rem 2rem;
    border-radius: 15px;
    display: inline-block;
}

.card-title {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.card-title-small {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.card-title-yellow {
    color: #fbbf24;
    font-size: 1.3rem;
    font-weight: bold;
}

.card-price {
    color: #f5576c;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.card-icon {
    font-size: 3rem;
    color: #fbbf24;
}

/* Featured Section */
.featured-section {
    padding: 3rem 0;
    background: #f5f5f5;
}

.featured-section h2 {
    text-align: center;
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Header */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav a:hover,
.nav a.active {
    background-color: rgba(255,255,255,0.2);
}

.contact-header a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255,255,255,0.2);
    border-radius: 5px;
    transition: background-color 0.3s;
}

.contact-header a:hover {
    background-color: rgba(255,255,255,0.3);
}

/* Banners */
.banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    margin: 2rem 0;
}

.banner-top {
    margin-top: 0;
}

.banner-middle {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    margin: 3rem 0;
}

.banner-bottom {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    margin-bottom: 0;
}

.banner-content h2,
.banner-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.banner-content p {
    font-size: 1.2rem;
}

.banner-content a {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}

/* Main Content */
.main-content {
    min-height: 60vh;
    padding: 2rem 0;
}

.search-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.search-section h2 {
    margin-bottom: 1.5rem;
    color: #667eea;
    text-align: center;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
}

.search-box {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.search-box input {
    flex: 1;
    padding: 1rem;
    font-size: 1.1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
}

.search-box input:focus {
    border-color: #667eea;
}

.search-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

.search-btn:hover {
    transform: scale(1.05);
}

.search-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.search-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.search-options input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Numbers Grid */
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.number-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.number-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    border-color: #667eea;
}

.number-card .number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', monospace;
}

.number-card .numerology {
    color: #764ba2;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.number-card .price {
    font-size: 1.2rem;
    color: #f5576c;
    font-weight: bold;
    margin-top: 1rem;
}

.number-card .contact-btn {
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    transition: transform 0.2s;
}

.number-card .contact-btn:hover {
    transform: scale(1.05);
}

.featured-numbers h2,
.all-numbers h2,
.search-results h2 {
    margin-bottom: 1rem;
    color: #667eea;
    text-align: center;
}

/* About Page */
.about-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-content h2 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.about-content h3 {
    color: #764ba2;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.features-list,
.services-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.features-list li,
.services-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.services-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #764ba2;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Contact Page */
.contact-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info h2,
.contact-form-section h2 {
    color: #667eea;
    margin-bottom: 1.5rem;
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    padding: 1.5rem;
    background: #f5f5f5;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.contact-item h3 {
    color: #764ba2;
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0.5rem 0;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
    font-weight: bold;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #667eea;
}

.submit-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

.submit-btn:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #667eea;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        justify-content: center;
    }

    .banner-content h2,
    .banner-content h3 {
        font-size: 1.8rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    .search-box {
        flex-direction: column;
    }

    .search-btn {
        width: 100%;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .numbers-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Styles */
.blog-listing {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.blog-listing h1 {
    color: #667eea;
    margin-bottom: 2rem;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.blog-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem;
    text-align: center;
}

.blog-icon {
    font-size: 4rem;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h2 {
    margin-bottom: 1rem;
}

.blog-content h2 a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-content h2 a:hover {
    color: #764ba2;
}

.blog-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-content p {
    margin-bottom: 1rem;
    color: #555;
}

.read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.read-more:hover {
    color: #764ba2;
}

.blog-article {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.article-header {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.article-meta {
    color: #666;
    font-size: 0.9rem;
}

.article-content h1 {
    color: #667eea;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.article-content h2 {
    color: #764ba2;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.article-content h3 {
    color: #667eea;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.article-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #333;
}

.article-content ul,
.article-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.article-content a {
    color: #667eea;
    text-decoration: none;
}

.article-content a:hover {
    text-decoration: underline;
}

.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    text-align: center;
}

.cta-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 0.5rem;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
    text-decoration: none;
}

/* Admin Panel Styles */
.admin-panel {
    min-height: 100vh;
    background: #f5f5f5;
    padding: 2rem 0;
}

.admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.admin-header h1 {
    text-align: center;
    font-size: 2rem;
}

.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.admin-nav {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.admin-nav a {
    color: #667eea;
    text-decoration: none;
    margin-right: 2rem;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.admin-nav a:hover,
.admin-nav a.active {
    background-color: #f0f0f0;
}

.admin-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.admin-section h2 {
    color: #667eea;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.admin-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.admin-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.admin-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

.admin-btn:hover {
    transform: scale(1.05);
}

.admin-btn-secondary {
    background: #6c757d;
}

.admin-btn-danger {
    background: #dc3545;
}

.numbers-list {
    display: grid;
    gap: 1rem;
}

.number-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1.5fr auto;
    gap: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 5px;
    align-items: center;
}

.vendors-list {
    display: grid;
    gap: 1rem;
}

.vendor-item {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 2fr auto;
    gap: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 5px;
    align-items: center;
}

.vendor-item-header {
    font-weight: bold;
    color: #667eea;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.vendor-name {
    font-weight: bold;
    color: #667eea;
}

.group-badge {
    padding: 0.3rem 0.8rem;
    background: #764ba2;
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    text-align: center;
    display: inline-block;
}

.number-item-header {
    font-weight: bold;
    color: #667eea;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.number-item .number {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #667eea;
}

.number-item .category {
    padding: 0.3rem 0.8rem;
    background: #667eea;
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    text-align: center;
}

.number-item .price {
    color: #f5576c;
    font-weight: bold;
}

.number-item .percentage {
    color: #764ba2;
    font-weight: bold;
}

.number-item .actions {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-small:hover {
    transform: scale(1.05);
}

.btn-edit {
    background: #667eea;
    color: white;
}

.btn-delete {
    background: #dc3545;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.stat-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    opacity: 0.9;
}

/* Cart Icon */
.cart-icon {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255,255,255,0.2);
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-left: 1rem;
}

.cart-icon:hover,
.cart-icon.active {
    background-color: rgba(255,255,255,0.3);
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Numbers Page Layout */
.numbers-page-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

.filters-sidebar {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.filter-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-section h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.category-list label,
.price-filter label,
.network-filter label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    cursor: pointer;
    font-size: 0.95rem;
}

.category-list input[type="checkbox"],
.price-filter input[type="radio"],
.network-filter input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.clear-filters-btn {
    width: 100%;
    padding: 0.8rem;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.clear-filters-btn:hover {
    background: #5a6268;
}

.numbers-content {
    min-width: 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.section-header h2 {
    margin-bottom: 0;
}

#resultsCount {
    color: #666;
    font-size: 0.9rem;
}

/* Number Card Updates */
.number-card {
    position: relative;
}

.number-card .card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    align-items: center;
}

.add-to-cart-btn,
.buy-now-btn {
    flex: 1;
    padding: 0.7rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
    font-size: 0.9rem;
}

.add-to-cart-btn {
    background: #28a745;
    color: white;
}

.add-to-cart-btn:hover {
    background: #218838;
    transform: scale(1.05);
}

.buy-now-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.buy-now-btn:hover {
    transform: scale(1.05);
}

.wishlist-btn {
    padding: 0.7rem;
    background: #f5576c;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s;
    width: 50px;
}

.wishlist-btn:hover {
    background: #dc3545;
    transform: scale(1.1);
}

.wishlist-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wishlist-actions .add-to-cart-btn {
    width: 100%;
    padding: 0.7rem;
}

.number-card {
    position: relative;
}

.sponsored-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.offer-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.offers-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.offers-section h2 {
    color: #667eea;
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.number-card .contact-btn {
    display: none;
}

/* Cart Page Styles */
.cart-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 1rem;
    align-items: center;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
}

.cart-item-number {
    font-size: 1.3rem;
    font-weight: bold;
    color: #667eea;
    font-family: 'Courier New', monospace;
    margin-bottom: 0.5rem;
}

.cart-item-details {
    font-size: 0.9rem;
    color: #666;
}

.cart-item-details span {
    margin-right: 1rem;
}

.cart-item-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #f5576c;
}

.cart-item-discount {
    color: #28a745;
    font-weight: bold;
}

.cart-item-final-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #667eea;
}

.remove-item-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s;
}

.remove-item-btn:hover {
    transform: scale(1.05);
}

.cart-summary {
    margin-top: 2rem;
}

.summary-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}

.summary-card h3 {
    color: #667eea;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-row.total {
    border-bottom: 2px solid #667eea;
    font-size: 1.2rem;
    font-weight: bold;
    color: #667eea;
    margin-top: 0.5rem;
}

.checkout-btn,
.continue-shopping-btn {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.checkout-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.checkout-btn:hover {
    transform: scale(1.05);
}

.continue-shopping-btn {
    background: #6c757d;
    color: white;
}

.continue-shopping-btn:hover {
    background: #5a6268;
}

.empty-cart-message {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.empty-cart-message h2 {
    color: #667eea;
    margin-bottom: 1rem;
}

.empty-cart-message p {
    color: #666;
    margin-bottom: 2rem;
}

/* SEO Article Styles */
.seo-article-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 3rem;
}

.seo-article h1 {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #667eea;
    padding-bottom: 0.5rem;
}

.seo-article h2 {
    color: #764ba2;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.seo-article p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #333;
}

.seo-article ul,
.seo-article ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.seo-article li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* FAQ Styles */
.faq-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.faq-section h2 {
    color: #667eea;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-item {
    background: #f9f9f9;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    transition: transform 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-question {
    color: #667eea;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-question::before {
    content: "❓";
    font-size: 1.2rem;
}

.faq-answer {
    color: #555;
    line-height: 1.8;
    margin: 0;
    padding-left: 1.8rem;
}

/* Category Management Styles */
.categories-list {
    display: grid;
    gap: 1rem;
}

.category-item {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr auto;
    gap: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 5px;
    align-items: center;
}

.category-item-header {
    font-weight: bold;
    color: #667eea;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.category-name {
    font-weight: bold;
    color: #667eea;
}

/* Blog Management Styles */
.blogs-list {
    display: grid;
    gap: 1rem;
}

.blog-item {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr 1fr auto;
    gap: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 5px;
    align-items: center;
}

.blog-item-header {
    font-weight: bold;
    color: #667eea;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.blog-title {
    font-weight: bold;
    color: #667eea;
}

/* Admin Multiple Numbers */
.multiple-numbers-section {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.multiple-numbers-input {
    width: 100%;
    min-height: 150px;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    resize: vertical;
}

.multiple-numbers-input:focus {
    outline: none;
    border-color: #667eea;
}

.multiple-numbers-hint {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Responsive Updates */
@media (max-width: 968px) {
    .numbers-page-container {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: static;
        max-height: none;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .number-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .number-item-header {
        display: none;
    }
}
