/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #ffffff; /* Light theme preference */
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header & Logo */
header {
    background-color: #fff;
    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;
    height: 70px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -1px;
}

.logo .crack {
    color: #ff6b00; /* Orange accent */
}

.logo .streams {
    color: #222;
}

.logo i {
    color: #ff6b00;
    font-size: 24px;
}

.highlight-keyword {
    font-weight: 800;
    color: #ff6b00;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-weight: 600;
    color: #555;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff6b00;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #222;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: #ff6b00;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    transition: transform 0.2s, background-color 0.2s;
}

.btn:hover {
    background-color: #e65100;
    transform: translateY(-2px);
}

/* Streams Section */
.streams-list {
    padding: 60px 0;
}

.streams-list h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: box-shadow 0.3s;
}

.card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card i {
    font-size: 40px;
    color: #ff6b00;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.card p {
    color: #777;
    margin-bottom: 20px;
}

.link-btn {
    display: inline-block;
    border: 2px solid #ff6b00;
    color: #ff6b00;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s;
}

.link-btn:hover {
    background-color: #ff6b00;
    color: #fff;
}

/* Backlinks Section */
.backlinks-section {
    background-color: #f9f9f9;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.backlinks-section h3 {
    margin-bottom: 20px;
    color: #444;
}

.backlinks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.backlinks li a {
    color: #666;
    font-size: 0.9rem;
    text-decoration: underline;
}

.backlinks li a:hover {
    color: #ff6b00;
}

/* About Section */
.about-section {
    background-color: #fff;
    padding: 60px 0;
    color: #444;
}

.about-section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #222;
    text-align: left;
}

.about-section h3 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
    color: #333;
}

.about-section h4 {
    font-size: 1.4rem;
    margin: 20px 0 10px;
    color: #ff6b00;
}

.about-section p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-section ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.about-section li {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background-color: #f8f9fa;
    color: #333;
    font-weight: 700;
}

.comparison-table tr:hover {
    background-color: #f1f1f1;
}

/* SEO Content Section */
.seo-content {
    background-color: #f4f4f4;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #ddd;
}

.seo-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.seo-content p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.8;
}

.seo-content strong {
    color: #ff6b00;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff6b00;
}

.disclaimer {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
