  /* GE-Zodiac Font this is new*/
        @font-face {
            font-family: 'GE_Zodiac';
            src: url('../font/GeZodiac.ttf') format('woff2');
            font-weight: normal;
            font-style: normal;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Lato', sans-serif;
            background: #ffffff;
            color: #313957;
            overflow-x: hidden;
        }
        
        /* Scrollbar hiding */
        .hide-scrollbar::-webkit-scrollbar {
            display: none;
        }
        .hide-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
        }
        
        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 72px;
            background: white;
            box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
            z-index: 50;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 16px;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            height: 100%;
            transform: scale(0.53);
            transform-origin: left center;
        }
        
        @media (min-width: 768px) {
            .navbar {
                padding: 0 32px;
            }
            .logo-container {
                transform: scale(1);
            }
        }
        
        .logo-text {
            font-family: 'Pacifico', cursive;
            font-size: 30px;
            color: #313957;
            line-height: 35.659px;
        }
        
        .menu-icon {
            width: 40px;
            height: 40px;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        
        .menu-icon:hover {
            opacity: 0.7;
        }
        
        /* Menu Overlay */
        .menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(49, 57, 87, 0.5);
            z-index: 60;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        
        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Slide-out Menu */
        .menu-panel {
            position: fixed;
            top: 0;
            right: 0;
            width: 300px;
            height: 100%;
            background: white;
            box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
            z-index: 70;
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
        }
        
        .menu-panel.active {
            transform: translateX(0);
        }
        
        .menu-close {
            display: flex;
            justify-content: flex-end;
            padding: 24px;
        }
        
        .close-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            background: transparent;
            border-radius: 50%;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .close-btn:hover {
            background: #f4f4f4;
        }
        
        .menu-items {
            display: flex;
            flex-direction: column;
            padding: 0 24px;
            gap: 8px;
        }
        
        .menu-item {
            font-family: 'Lato', sans-serif;
            font-size: 18px;
            color: #313957;
            padding: 16px;
            text-decoration: none;
            border-radius: 8px;
            transition: background 0.3s;
        }
        
        .menu-item:hover {
            background: #f4f4f4;
        }
        
        /* Hero Section */
        .hero-section {
            background: #f4f4f4;
            /*background-image: url('../img/wallpaper.jpg'); */
            background-size: cover;
            background-position: center;
            position: relative;
            width: 100%;
            padding-top: 120px;
            padding-bottom: 88px;
        }
        
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.8);
        }
        
        .hero-content {
            max-width: 1044px;
            margin: 0 auto;
            padding: 0 16px;
            position: relative;
            z-index: 10;
        }
        
        .daily-reading {
            text-align: center;
            font-weight: bold;
            color: #666666;
            font-size: 18px;
            margin-bottom: 16px;
        }
        
        /* Zodiac Pills */
        .zodiac-container {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding-bottom: 8px;
            touch-action: pan-x;
        }
        
        @media (min-width: 768px) {
            .zodiac-container {
                flex-wrap: wrap;
                justify-content: space-between;
            }
        }
        
        .zodiac-pill {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            min-width: 66px;
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .zodiac-pill:hover {
            transform: scale(1.05);
        }
        
        .zodiac-circle {
            width: 66px;
            height: 66px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.12);
            transition: all 0.3s;
        }
        
        .zodiac-circle.active {
            background: #FF9925;
            box-shadow: 0px 4px 12px rgba(255, 153, 37, 0.4);
        }
        
        .zodiac-symbol {
            font-family: 'GE_Zodiac', sans-serif;
            font-size: 32px;
            color: #FF9925;
        }
        
        .zodiac-circle.active .zodiac-symbol {
            color: white;
        }
        
        .zodiac-name {
            font-size: 14px;
            color: #000000;
            text-align: center;
        }
        
        /* Horoscope Content */
        .horoscope-section {
            margin-top: 31px;
        }

        .horoscope-content {
            display: none;
        }

        .horoscope-content.active {
            display: block;
            animation: dissolve 0.6s ease-in-out;
        }
        
        .horoscope-card {
            background: white;
            border-radius: 16px;
            box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.08);
            padding: 24px;
            min-height: 240px;
        }
        
        .card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 16px;
        }
        
        .zodiac-info {
            display: flex;
            gap: 8px;
            align-items: center;
        }
        
        .zodiac-badge {
            width: 34px;
            height: 34px;
            background: #FF9925;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .badge-symbol {
            font-family: 'GE_Zodiac', sans-serif;
            font-size: 20px;
            color: white;
        }
        
        .zodiac-details h3 {
            font-size: 16px;
            font-weight: bold;
            color: #313957;
            margin-bottom: 3px;
        }
        
        .zodiac-date {
            font-size: 12px;
            color: #333333;
        }
        
        .tabs {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        
        .tab {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 6px 10px;
            border-radius: 4px;
            background: #f4f4f4;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
        }
        
        .tab:hover {
            opacity: 0.8;
        }
        
        .tab.active {
            background: #313957;
        }
        
        .tab svg {
            width: 14px;
            height: 14px;
        }
        
        .tab-text {
            font-size: 14px;
            color: #313957;
        }
        
        .tab.active .tab-text {
            color: white;
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }
        
        .horoscope-text {
            font-size: 20px;
            line-height: 1.35;
            color: #333333;
        }
        
        /* Info Cards */
        .info-cards {
            display: flex;
            gap: 23px;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 19px;
        }
        
        @media (min-width: 1280px) {
            .info-cards {
                flex-wrap: nowrap;
            }
        }
        
        .info-card {
            background: white;
            border-radius: 24px;
            box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.08);
            padding: 24px;
            width: 100%;
            max-width: 332px;
            min-height: 220px;
            flex: 1;
        }
        
        @media (min-width: 1280px) {
            .info-card {
                max-width: none;
            }
        }
        
        .info-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 24px;
        }
        
        .info-icon {
            width: 34px;
            height: 34px;
            background: #313957;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .info-title {
            font-weight: bold;
            font-size: 14px;
            color: #313957;
            white-space: nowrap;
        }
        
        .info-text {
            font-size: 16px;
            line-height: 1.35;
            color: #313957;
        }
        
        /* Main Content */
        .main-content {
            padding: 40px 0;
        }
        
        .content-wrapper {
            max-width: 1044px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            gap: 60px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .latest-reads {
            flex: 1;
            min-width: 300px;
            max-width: 597px;
        }
        
        .section-title {
            font-family: 'Pacifico', cursive;
            font-size: 32px;
            color: #313957;
            margin-bottom: 41px;
        }
        
        /* Blog Posts */
        .blog-posts {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }
        
        @media (min-width: 768px) {
            .blog-posts {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .blog-post {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.08);
            cursor: pointer;
            transition: box-shadow 0.3s;
            display: none;
        }

        .blog-post.visible {
            display: block;
        }
        
        .blog-post:hover {
            box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.12);
        }
        
        @media (min-width: 768px) {
            .blog-post {
                grid-column: span 2;
            }
            .blog-post.visible {
                display: flex;
                flex-direction: row;
            }
        }
        
        .blog-image {
            width: 100%;
            height: 200px;
            background: #e0e0e0;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        @media (min-width: 768px) {
            .blog-image {
                width: 280px;
                height: auto;
                min-height: 180px;
            }
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .blog-post:hover .blog-image img {
            transform: scale(1.05);
        }
        
        .blog-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        @media (min-width: 768px) {
            .blog-content {
                flex: 1;
                justify-content: center;
            }
        }
        
        .blog-title {
            font-weight: bold;
            font-size: 20px;
            line-height: 1.35;
            color: #313957;
            transition: color 0.3s;
        }
        
        .blog-post:hover .blog-title {
            color: #FF9925;
        }
        
        .blog-tags {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
        }
        
        .blog-tag {
            font-size: 12px;
            padding: 4px 10px;
            border-radius: 4px;
            background: #FFE5CC;
            color: #313957;
        }
        
        .blog-date {
            font-size: 14px;
            line-height: 1.35;
            color: #999999;
        }
        
        .load-more {
            background: #FF9925;
            color: white;
            border: none;
            padding: 12px 32px;
            border-radius: 8px;
            font-family: 'Lato', sans-serif;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s;
            margin: 16px auto;
            display: block;
        }
        
        .load-more:hover {
            background: #FF8A00;
        }
        
        /* Sidebar */
        .sidebar {
            width: 331px;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            gap: 32px;
        }
        
        .find-zodiac-card {
            background: #f6f6f6;
            border-radius: 16px;
            padding: 24px;
        }
        
        .card-title {
            font-family: 'Pacifico', cursive;
            font-size: 24px;
            color: #313957;
            margin-bottom: 24px;
        }
        
        .zodiac-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .form-input {
            width: 100%;
            padding: 10px 13px;
            background: white;
            border: 1px solid #666666;
            border-radius: 4px;
            font-family: 'Lato', sans-serif;
            font-size: 14px;
            color: #333333;
            cursor: pointer;
        }
        
        .form-input:focus {
            outline: none;
            border-color: #FF9925;
        }
        
        .submit-btn {
            width: 100%;
            padding: 10px 13px;
            background: #FF9925;
            border: none;
            border-radius: 4px;
            color: white;
            font-family: 'Lato', sans-serif;
            font-size: 14px;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        
        .submit-btn:hover {
            opacity: 0.9;
        }
        
        /* Read by Zodiac */
        .zodiac-list {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        
        .zodiac-item {
            border-bottom: 1px solid #f4f4f4;
            padding: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .zodiac-item:hover {
            background: #f4f4f4;
        }
        
        .zodiac-item-symbol {
            font-family: 'GE_Zodiac', sans-serif;
            font-size: 16px;
            color: #313957;
        }
        
        .zodiac-item-name {
            font-size: 16px;
            color: #313957;
        }
        
        /* Birthday Horoscope */
        .birthday-section {
            background: white;
            padding: 40px 0;
        }
        
        .birthday-content {
            max-width: 1044px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .birthday-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .birthday-title {
            font-family: 'Pacifico', cursive;
            font-size: 32px;
            color: #313957;
        }
        
        @media (max-width: 767px) {
            .birthday-title {
                font-size: 24px;
            }
        }
        
        .desktop-nav {
            display: none;
            gap: 16px;
        }
        
        @media (min-width: 768px) {
            .desktop-nav {
                display: flex;
            }
        }
        
        .nav-btn {
            width: 40px;
            height: 40px;
            border: 1px solid #313957;
            border-radius: 50%;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .nav-btn:hover {
            background: #f4f4f4;
        }
        
        /* Calendar Grid */
        .calendar-container {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            padding-bottom: 16px;
            margin: 0 -12px 0 -12px;
        }
        
        @media (min-width: 768px) {
            .calendar-container {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                overflow: visible;
            }
        }
        
        @media (min-width: 1280px) {
            .calendar-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .calendar-card {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 16px;
            padding: 24px;
            min-width: calc(100vw - 120px);
            flex-shrink: 0;
        }
        
        @media (min-width: 768px) {
            .calendar-card {
                min-width: 0;
            }
        }
        
        .month-name {
            text-align: center;
            font-size: 18px;
            color: #313957;
            margin-bottom: 16px;
        }
        
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 4px;
        }
        
        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border-radius: 4px;
            transition: background 0.3s;
        }
        
        .calendar-day:hover {
            background: #f4f4f4;
        }
        
        .day-number {
            font-size: 14px;
            color: #313957;
        }
        
        /* Mobile Navigation */
        .mobile-nav {
            display: flex;
            gap: 12px;
            align-items: center;
            justify-content: center;
            margin-top: 24px;
        }
        
        @media (min-width: 768px) {
            .mobile-nav {
                display: none;
            }
        }
        
        .mobile-nav-btn {
            width: 32px;
            height: 32px;
            border: 1px solid #313957;
            border-radius: 50%;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .mobile-nav-btn:hover {
            background: #f4f4f4;
        }
        
        /* Footer */
        .footer {
            background: #313957;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 80px;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        
        .footer-logo-text {
            font-family: 'Pacifico', cursive;
            font-size: 30px;
            color: white;
        }
        
        .footer-url {
            font-size: 14px;
            color: white;
        }
        
        /* Animation */
        @keyframes dissolve {
            0% {
                opacity: 0;
                transform: translateY(10px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }