/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breaking News Ticker */
.breaking-news {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    z-index: 1001;
}

.breaking-news {
    display: flex;
    align-items: center;
}

.breaking-label {
    background: #ffffff;
    color: #dc2626;
    padding: 4px 12px;
    font-weight: 800;
    font-size: 0.8rem;
    margin-right: 15px;
    border-radius: 3px;
}

.news-ticker {
    overflow: hidden;
    white-space: nowrap;
}

.news-ticker span {
    display: inline-block;
    animation: scroll 60s linear infinite;
    font-weight: 500;
}

@keyframes scroll {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

/* Header Styles */
.header {
    background: #ffffff;
    border-bottom: 3px solid #dc2626;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.logo-text .brand-name {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.logo-text .tagline {
    display: block;
    font-size: 0.7rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #dc2626;
    font-weight: 600;
    font-size: 0.9rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #dc2626;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.subscribe-btn {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 10px 40px 10px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    width: 250px;
    font-size: 0.9rem;
}

.search-box i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #374151;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle:hover {
    color: #dc2626;
}

/* Navigation */
.main-nav {
    padding: 0.8rem 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #dc2626;
    background: #fef2f2;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #dc2626;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.featured-story {
    padding: 1rem 0;
}

.story-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.featured-story h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.story-lead {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.timestamp {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.social-share {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #6b7280;
}

.social-share i {
    cursor: pointer;
    transition: color 0.3s ease;
}

.social-share i:hover {
    color: #dc2626;
}

.read-more-btn {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.read-more-btn:hover {
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-image:hover .image-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.video-duration {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Trending Sidebar */
.trending-sidebar {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: fit-content;
}

.trending-sidebar h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #dc2626;
    padding-bottom: 0.5rem;
}

.trending-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.trending-item:last-child {
    border-bottom: none;
}

.trend-number {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.trend-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 4px;
}

.trend-category {
    font-size: 0.8rem;
    color: #dc2626;
    font-weight: 500;
}

/* Unblocked Profile Section */
.unblocked-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.unblocked-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.2);
}

.feature-icon {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Comparison Section */
.comparison-section {
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.comparison-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.evolution-timeline {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.evolution-item {
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.evolution-item.old {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
}

.evolution-item.new {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid #22c55e;
}

.evolution-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.evolution-item ul {
    list-style: none;
    text-align: left;
}

.evolution-item li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.evolution-arrow {
    font-size: 2rem;
    color: #dc2626;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 20px;
    border: 2px solid #dc2626;
}

.cta-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.revolution-btn {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

.revolution-btn:hover {
    transform: scale(1.05);
}

.beta-info {
    display: block;
    font-size: 0.9rem;
    color: #94a3b8;
}

/* News Grid */
.news-grid {
    padding: 4rem 0;
    background: #f8fafc;
}

.news-grid .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    text-align: left;
}

.news-grid h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.news-filters {
    display: flex;
    gap: 1rem;
}

.filter-btn {
    background: white;
    border: 2px solid #e5e7eb;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
}

.news-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card.featured {
    grid-column: span 2;
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.category-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #dc2626;
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.news-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #9ca3af;
}

.author {
    font-weight: 500;
}

/* Market Section */
.market-section {
    padding: 3rem 0;
    background: white;
}

.market-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.market-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

.market-card:hover {
    transform: translateY(-3px);
    border-color: #dc2626;
}

.crypto-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.crypto-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.crypto-name {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
}

.crypto-symbol {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
}

.price-info {
    text-align: right;
}

.price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.change {
    font-size: 0.9rem;
    font-weight: 600;
}

.change.positive {
    color: #22c55e;
}

.change.negative {
    color: #ef4444;
}

/* Newsletter */
.newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form button {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #374151;
}

.newsletter-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #dc2626;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #dc2626;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #cbd5e1;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #dc2626;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

.footer-bottom a {
    color: #dc2626;
    text-decoration: none;
}

/* Featured Article Styles */
.featured-article {
    padding: 4rem 0;
    background: white;
}

.main-article {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 3rem;
}

.article-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.main-article h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.article-subtitle {
    font-size: 1.3rem;
    color: #4b5563;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.author-title {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
}

.article-timestamp {
    color: #6b7280;
    font-size: 0.9rem;
}

.article-image {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.article-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-caption {
    padding: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
}

.lead-paragraph {
    font-size: 1.3rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 4px solid #dc2626;
}

.article-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 2.5rem 0 1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content blockquote {
    background: #f8fafc;
    border-left: 4px solid #dc2626;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.article-content blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.article-content cite {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: normal;
    font-weight: 600;
}

.quote-highlight {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

.quote-highlight p {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
}

.quote-highlight span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.article-highlight {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.article-highlight h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.article-highlight ul {
    list-style: none;
    padding-left: 0;
}

.article-highlight li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.article-highlight li:last-child {
    border-bottom: none;
}

.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.article-footer em {
    display: block;
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.article-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn, .save-btn, .comment-btn {
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    color: #374151;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover, .save-btn:hover, .comment-btn:hover {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 2rem;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 1;
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.registration-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.register-btn {
    width: 100%;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    padding: 15px 24px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.register-btn:hover:not(:disabled) {
    transform: translateY(-2px);
}

.register-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.modal-benefits {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
}

.modal-benefits h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.modal-benefits ul {
    list-style: none;
    padding: 0;
}

.modal-benefits li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: #374151;
}

/* News Card Cursor */
.news-card {
    cursor: pointer;
}

/* Responsive Adjustments */

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .news-articles {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .news-card.featured {
        grid-column: span 2;
    }
    
    .market-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    /* Header Responsive */
    .header-top {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .header-actions {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .search-box {
        order: 3;
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 2;
    }
    
    .live-indicator {
        order: 1;
    }
    
    .subscribe-btn {
        order: 1;
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    .main-nav {
        position: relative;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        z-index: 999;
        border-top: 1px solid #e5e7eb;
    }
    
    .nav-links.mobile-open {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f3f4f6;
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
        text-align: center;
        border-radius: 0;
    }
    
    /* Breaking News Responsive */
    .breaking-news {
        padding: 6px 0;
    }
    
    .breaking-label {
        font-size: 0.7rem;
        padding: 3px 8px;
        margin-right: 10px;
    }
    
    .news-ticker span {
        font-size: 0.9rem;
        animation-duration: 40s;
    }
    
    /* Hero Section Responsive */
    .hero {
        padding: 3rem 1rem 2rem 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-story h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .story-lead {
        font-size: 1rem;
    }
    
    .story-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .social-share {
        gap: 1rem;
    }
    
    .trending-sidebar {
        margin-top: 0;
    }
    
    .trending-sidebar h3 {
        font-size: 1.2rem;
    }
    
    /* Article Responsive */
    .main-article h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .article-subtitle {
        font-size: 1rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .article-content h2 {
        font-size: 1.4rem;
    }
    
    .article-content p {
        font-size: 1rem;
    }
    
    .quote-highlight {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .quote-highlight p {
        font-size: 1.1rem;
    }
    
    .article-content blockquote {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .article-highlight {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    /* News Grid Responsive */
    .news-grid .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .news-articles {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .news-card.featured {
        grid-column: span 1;
    }
    
    .news-card {
        display: block;
    }
    
    .news-image {
        width: 100%;
        height: 200px;
    }
    
    .news-filters {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .filter-btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    /* Market Data Responsive */
    .market-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .market-card {
        padding: 1rem;
    }
    
    /* Newsletter Responsive */
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    /* Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section ul {
        justify-content: center;
    }
    
    /* Modal Responsive */
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    .registration-form {
        gap: 1rem;
    }
    
    .article-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .article-actions button {
        width: 100%;
    }
    
    /* Touch-friendly button sizes */
    button, .btn, a {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Improved tap targets */
    .trending-item {
        padding: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .news-card {
        padding: 1rem;
    }
    
    /* Better spacing for readability */
    .article-content p {
        margin-bottom: 1.2rem;
    }
    
    .article-content h2 {
        margin: 2rem 0 1rem 0;
    }
    
    /* Improved form elements */
    input, select, textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
    
    .header-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .search-box {
        order: 4;
    }
    
    .logo-text .brand-name {
        font-size: 1.2rem;
    }
    
    .logo-text .tagline {
        font-size: 0.6rem;
    }
    
    .featured-story h1 {
        font-size: 1.5rem;
    }
    
    .main-article h1 {
        font-size: 1.5rem;
    }
    
    .article-content h2 {
        font-size: 1.2rem;
    }
    
    .quote-highlight {
        padding: 1rem;
    }
    
    .quote-highlight p {
        font-size: 1rem;
    }
    
    .article-content blockquote {
        padding: 1rem;
    }
    
    .article-highlight {
        padding: 1rem;
    }
    
    .news-card .news-content h3 {
        font-size: 1rem;
    }
    
    .market-card {
        padding: 0.8rem;
    }
    
    .crypto-name {
        font-size: 0.9rem;
    }
    
    .price {
        font-size: 1.1rem;
    }
    
    .modal-header,
    .modal-body {
        padding: 1rem;
    }
}

/* Fix for iOS Safari viewport units */
@supports (-webkit-touch-callout: none) {
    .modal {
        height: -webkit-fill-available;
    }
}

/* --- Landscaping Page Styles --- */
.landscaping-header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    background: #2e7d32;
    padding: 0.5rem 0;
    margin: 0;
}
.landscaping-header nav ul li {
    margin: 0 1.5rem;
}
.landscaping-header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.landscaping-header nav ul li a:hover {
    color: #a5d6a7;
}
.hero {
    background: url('images/landscaping-hero.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 5rem 1rem 3rem 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 1px 2px 8px #222;
}
.hero p {
    font-size: 1.3rem;
    text-shadow: 1px 2px 8px #222;
}
.services {
    background: #fff;
    padding: 3rem 1rem;
    max-width: 1100px;
    margin: 2rem auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.services h2 {
    text-align: center;
    color: #2e7d32;
    margin-bottom: 2rem;
}
.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.service {
    flex: 1 1 250px;
    background: #e8f5e9;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 1px 6px rgba(46,125,50,0.08);
}
.service img {
    width: 100%;
    max-width: 220px;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.reviews {
    background: #f1f8e9;
    padding: 2.5rem 1rem;
    margin: 2rem 0;
    border-radius: 12px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 1px 8px rgba(46,125,50,0.07);
}
.reviews h2 {
    text-align: center;
    color: #388e3c;
    margin-bottom: 1.5rem;
}
.testimonial {
    margin-bottom: 1.5rem;
    padding: 1rem 2rem;
    border-left: 4px solid #66bb6a;
    background: #fff;
    border-radius: 8px;
    font-style: italic;
}
.testimonial:last-child {
    margin-bottom: 0;
}
.appointment {
    background: #fffde7;
    padding: 2.5rem 1rem;
    border-radius: 12px;
    max-width: 700px;
    margin: 2rem auto;
    box-shadow: 0 1px 8px rgba(251,192,45,0.07);
}
.appointment h2 {
    text-align: center;
    color: #fbc02d;
    margin-bottom: 1.5rem;
}
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}
form input, form textarea, form select {
    padding: 0.7rem;
    border-radius: 6px;
    border: 1px solid #bdbdbd;
    font-size: 1rem;
}
form button {
    background: #2e7d32;
    color: #fff;
    border: none;
    padding: 0.9rem;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}
form button:hover {
    background: #388e3c;
}
.advert {
    background: linear-gradient(90deg, #a5d6a7 0%, #fffde7 100%);
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 900px;
    box-shadow: 0 1px 8px rgba(46,125,50,0.07);
    font-size: 1.3rem;
    color: #2e7d32;
    font-weight: bold;
}
@media (max-width: 800px) {
    .service-list {
        flex-direction: column;
        gap: 1.5rem;
    }
    .hero {
        padding: 3rem 1rem 2rem 1rem;
    }
}