Today's Horoscope:

January 30, 2026

https://cdn.tailwindcss.com body { font-family: 'Inter', sans-serif; } .hide-scrollbar::-webkit-scrollbar { display: none; } .hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; } .transition-all { transition: all 0.3s ease; }
const horoscopeData = [ { id: 'aries', name: 'Aries', date: 'Mar 21 - Apr 19', element: 'Fire', icon: '🔥', color: 'text-red-500', bg: 'bg-red-50', content: "You'll feel called to explore all that is unknown and mysterious, dearest Aries. As the Cancer Moon aligns with the nodes of fate, seek discoveries by tapping into new worlds internally. When you step away from preconceived notions, meaningful growth can occur and stir up epiphanies. You'll feel more social throughout the second half of the day, looking for opportunities to mingle." }, { id: 'taurus', name: 'Taurus', date: 'Apr 20 - May 20', element: 'Earth', icon: '⚓', color: 'text-emerald-600', bg: 'bg-emerald-50', content: "Fated encounters could place you on a new social trajectory, dear Taurus, as the Cancer Moon and nodes of fate align. These vibes will be particularly beneficial if you've been hoping to gain traction within cultural, creative, or intellectual spheres. Use your intuition to pick up on subtle details others put out to better understand your audience." }, { id: 'gemini', name: 'Gemini', date: 'May 21 - Jun 20', element: 'Air', icon: '💨', color: 'text-yellow-600', bg: 'bg-yellow-50', content: "A bittersweet energy unfolds as you enter new eras of success, dear Gemini. As the Cancer Moon aligns with the nodes of fate, remember where you come from as you reach for greater heights. It's important to let go of the doubts instilled in you as a child, recognizing that you have the power to overcome obstacles and thrive." }, { id: 'cancer', name: 'Cancer', date: 'Jun 21 - Jul 22', element: 'Water', icon: '💧', color: 'text-blue-500', bg: 'bg-blue-50', content: "Fate's pull will be impossible to ignore, dearest Cancer, as Luna aligns with the nodes of fate. Indulge your optimistic side by connecting with your spirituality and inviting the divine into your desires. Meditating on what you want may shift your vision. Transform into the universe's natural currents." }, { id: 'leo', name: 'Leo', date: 'Jul 23 - Aug 22', element: 'Fire', icon: '☀️', color: 'text-orange-500', bg: 'bg-orange-50', content: "You'll require extra privacy as the Moon moves through Cancer and aligns with the nodes of fate, dear lion. Courage builds as you prepare to step outside your comfort zone to make important transformations. Choose paths that empower you, and steer clear of situations that dim your light." }, { id: 'virgo', name: 'Virgo', date: 'Aug 23 - Sep 22', element: 'Earth', icon: '🌿', color: 'text-green-700', bg: 'bg-green-50', content: "The Cancer Moon and nodes of fate dust up romantic and fated vibes, dearest Virgo. Be mindful of how you wish to be perceived while navigating the outside world, as your aura is sure to be out there. Put care into your image and attitude to draw in high-caliber companions." }, { id: 'libra', name: 'Libra', date: 'Sep 23 - Oct 22', element: 'Air', icon: '⚖️', color: 'text-pink-500', bg: 'bg-pink-50', content: "You'll emerge from a brief period of hibernation with a new hunger for success, darling Libra. As the Cancer Moon aspects the nodes of fate, you're cosmically required to work for your desires. Watch for opportunities to demonstrate leadership capabilities." }, { id: 'scorpio', name: 'Scorpio', date: 'Oct 23 - Nov 21', element: 'Water', icon: '🦂', color: 'text-purple-700', bg: 'bg-purple-50', content: "The Cancer Moon and nodes of fate urge you to honor what the heart desires, dear Scorpio. Though external circumstances beyond your control may have caused a few snags in your story, the only acceptable path forward is the one illuminated by intuitive knowing." }, { id: 'sagittarius', name: 'Sagittarius', date: 'Nov 22 - Dec 21', element: 'Fire', icon: '🏹', color: 'text-indigo-600', bg: 'bg-indigo-50', content: "Lower your guard with those who know you best, dearest Sagittarius. Your spirit craves relief that can only be found when burdens are relinquished, and nurturing begins. Valuable insights can be gained by being vulnerable." }, { id: 'capricorn', name: 'Capricorn', date: 'Dec 22 - Jan 19', element: 'Earth', icon: '🐐', color: 'text-stone-600', bg: 'bg-stone-50', content: "Speak from the heart while the Cancer Moon aligns with the nodes of fate, dear Capricorn. You'll crave connection, security, and balance, but will need to use your voice to ensure these needs are met. Flirting will put an extra pep in your step." }, { id: 'aquarius', name: 'Aquarius', date: 'Jan 20 - Feb 18', element: 'Air', icon: '🏺', color: 'text-cyan-600', bg: 'bg-cyan-50', content: "Explore the depths of your innovative mind, Aquarius. As the Cancer Moon aligns with the nodes of fate, you'll feel a pull toward community-driven projects. This is a time to share your vision without fear of judgment." }, { id: 'pisces', name: 'Pisces', date: 'Feb 19 - Mar 20', element: 'Water', icon: '🐟', color: 'text-teal-600', bg: 'bg-teal-50', content: "Hearts go out to you as the Cancer Moon aligns with the nodes of fate, dearest Pisces. These vibes present an opportunity to recover from recent mistakes, helping you come out on top. The compassion others show you promises to warm the soul." } ]; let activeSignId = 'aries'; function renderSigns() { const list = document.getElementById('sign-list'); list.innerHTML = horoscopeData.map(sign => ` `).join(''); } function renderContent() { const sign = horoscopeData.find(s => s.id === activeSignId); const container = document.getElementById('content-area'); container.innerHTML = `
${sign.element} Sign

${sign.name} ${sign.icon}

${sign.date}

Mood
Mysterious
Luck
8/10

"${sign.content}"

Daily Update
`; } window.setActiveSign = (id) => { activeSignId = id; renderSigns(); renderContent(); }; // Initial load renderSigns(); renderContent();