       


       
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
             font-family: "Playpen Sans Hebrew", cursive;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
        }
        
        :root {
            --primary-color: #0855b1;
             --primary-btn-color:#0855b1;
            --secondary-color: #64748b;
            --accent-color: #f59e0b;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --border-color: #e2e8f0;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
               --border-color: #e2e8f0;
        }
        
        [data-theme="dark"] {
         --primary-color: #ffffff;
            --text-primary: #f1f5f9;
            --text-secondary: #94a3b8;
            --bg-primary: #0f172a;
            --bg-secondary: #1e293b;
            --border-color: #334155;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
            --border-color: #4a5568;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background-color: var(--bg-primary);
            transition: all 0.3s ease;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Navigation */
        header {
            position: fixed;
            top: 0;
            width: 100%;
             background: var(--nav-bg);
            backdrop-filter: blur(20px);
           
            z-index: 1000;
            transition: all 0.3s ease;
            padding: 1rem 0;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        
         .logo {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .logo:hover {
            color: var(--nav-hover);
        }
        
        /**
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
        }
        */
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--primary-color);
        }
        
        .theme-toggle {
            background: none;
            border: 2px solid var(--border-color);
            color: var(--text-primary);
            padding: 0.5rem;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .theme-toggle:hover {
            border-color: var(--primary-color);
            transform: scale(1.1);
        }
        
        /* Hero Section */
        .hero {
            /* background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            min-height: 70vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white; */

            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero-content p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            display: inline-block;
            background: var(--primary-btn-color);
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }
        
        .cta-button:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(37, 99, 235, 0.3);
        }
        
        /* Featured Stories */
        .featured-stories {
            padding: 4rem 0;
            background: var(--bg-secondary);
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: var(--text-primary);
        }
        
        
        
        /* Desktop: 3 columns (1/3 each) */
.stories-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 0.5fr));
  justify-content: center;
  gap: 20px;
}

/* Tablet: 2 columns (1/2 each) */
@media (max-width: 1024px) {
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 column (full width) */
@media (max-width: 768px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }
}
        
        .story-card {
            background: var(--bg-primary);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .story-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .story-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .story-category {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--accent-color);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
        }
        
        .story-content {
            padding: 1.5rem;
        }
        
        .story-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }
        
        .story-excerpt {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            line-height: 1.6;
        }
        
        .story-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.875rem;
            color: var(--text-secondary);
        }
        
        .read-time {
            background: var(--bg-secondary);
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
        }
        
        /* Social Share */
        .social-share {
            display: flex;
            gap: 0.75rem;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--border-color);
        }
        
        .share-button {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
            padding: 0.75rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
            min-width: 45px;
            justify-content: center;
        }
        
        .share-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .share-button.twitter:hover {
            background: #1da1f2;
            color: white;
            border-color: #1da1f2;
        }
        
        .share-button.facebook:hover {
            background: #4267b2;
            color: white;
            border-color: #4267b2;
        }
        
        .share-button.linkedin:hover {
            background: #0077b5;
            color: white;
            border-color: #0077b5;
        }
        
        .share-button.instagram:hover {
            background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
            color: white;
            border-color: #bc1888;
        }
        
        .share-button.copy:hover {
            background: var(--accent-color);
            color: white;
            border-color: var(--accent-color);
        }
        
        .share-label {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        
        /* Newsletter */
        .newsletter {
            background: var(--gradient);
            color: white;
            padding: 4rem 0;
            text-align: center;
        }
        
        .newsletter h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .newsletter p {
            font-size: 1.125rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            gap: 1rem;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
        }
        
        .newsletter-button {
            background: var(--accent-color);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-button:hover {
            background: #d97706;
            transform: translateY(-2px);
        }
        
               /* Daily Quote */
        .daily-quote {
            
            padding: 3rem 0;
            text-align: center;
            border-top: 1px solid var(--border-color);
        }
        
        .quote-container {

            margin: 0 auto;
            padding: 2rem;
            


            position: relative;
            overflow: hidden;
        }
        
        .quote-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            
        }
        
        .quote-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .quote-icon {
            font-size: 2rem;
            color: var(--primary-color);
        }
        
        .quote-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0;
        }
        
        .quote-text {
            font-size: 1.5rem;
            font-style: italic;
            color: var(--text-primary);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .quote-text::before {
            content: '"';
            font-size: 4rem;
            color: var(--primary-color);
            position: absolute;
            left: -2rem;
            top: -1rem;
            font-family: serif;
        }
        
        .quote-text::after {
            content: '"';
            font-size: 4rem;
            color: var(--primary-color);
            position: absolute;
            right: -1rem;
            bottom: -2rem;
            font-family: serif;
        }
        
        .quote-author {
            font-size: 1.125rem;
            color: var(--text-secondary);
            font-weight: 600;
        }
        
        .quote-author::before {
            content: '— ';
        }
        
        .quote-loading {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            color: var(--text-secondary);
            font-style: italic;
        }
        
        .quote-error {
            color: var(--text-secondary);
            font-style: italic;
        }
        
        .refresh-quote {
            background: none;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            margin-top: 1.5rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .refresh-quote:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        .refresh-quote:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }
        
        .spinner {
            width: 20px;
            height: 20px;
            border: 2px solid transparent;
            border-top: 2px solid currentColor;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        
        /* Footer */
        footer {
            background: #1e293b;
            padding: 3rem 0 1rem;
            color:white;
            border-top: 1px solid var(--border-color);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
           /* color: var(--text-primary); */ 
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section li {
            margin-bottom: 0.5rem;
        }
        
        .footer-section a {
            /* color: var(--text-secondary); */
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: var(--primary-color);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            /* color: var(--text-secondary); */
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .stories-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .story-card {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        .story-card:nth-child(2) {
            animation-delay: 0.1s;
        }
        
        .story-card:nth-child(3) {
            animation-delay: 0.2s;
        }
