/* Critical CSS - Above the fold */
/* Reset ve Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    font-size: 16px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #111827;
}

h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.375rem); }

p {
    margin-bottom: 1.5rem;
    color: #374151;
}

a {
    color: #1e40af;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    /* Prevent layout shift */
    aspect-ratio: 16 / 9;
}

/* Image optimization */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* WebP support */
.webp img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Header & Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: #374151;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #1e40af;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1e40af;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.stat-item span {
    color: #6b7280;
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.4);
    color: white;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #111827;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Bonus Sites Grid */
.bonus-sites {
    background: #f8fafc;
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.site-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.site-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e40af, #3b82f6, #059669);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.site-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.site-card:hover::before {
    opacity: 1;
}

.site-logo img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.site-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.site-bonus {
    font-size: 1.25rem;
    font-weight: 600;
    color: #059669;
    margin-bottom: 1rem;
}

.site-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    color: #6b7280;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

.site-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stars {
    color: #fbbf24;
}

.rating-text {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 600;
}

.site-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.site-button:hover {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    transform: translateY(-2px);
    color: white;
}

/* Guide Section */
.guide-section {
    background: white;
}

.guide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.guide-steps {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.guide-steps li {
    margin-bottom: 1rem;
    color: #374151;
    line-height: 1.6;
}

.guide-steps strong {
    color: #1e40af;
}

.guide-link {
    display: inline-flex;
    align-items: center;
    background: #1e40af;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.guide-link:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    color: white;
}

.guide-image img {
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.post-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.post-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 1.5rem;
}

.post-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.post-title a {
    color: #111827;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #1e40af;
}

.post-excerpt {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.post-category {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

.view-all-link {
    display: inline-block;
    background: #f3f4f6;
    color: #374151;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.view-all-link:hover {
    background: #1e40af;
    color: white;
    border-color: #1e40af;
}

/* Footer */
.footer {
    background: #111827;
    color: #d1d5db;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-subtitle {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Blog Specific Styles */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.page-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #111827;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.blog-main {
    min-width: 0;
}

.blog-posts {
    margin-bottom: 3rem;
}

.blog-post-card {
    margin-bottom: 3rem;
}

.post-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(30, 64, 175, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more {
    color: #1e40af;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #1d4ed8;
}

.read-time {
    color: #9ca3af;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-prev,
.pagination-next {
    padding: 0.75rem 1.5rem;
    background: #f3f4f6;
    color: #374151;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-prev:hover,
.pagination-next:hover {
    background: #1e40af;
    color: white;
}

.pagination-prev.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-prev.disabled:hover {
    background: #f3f4f6;
    color: #374151;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
}

.pagination-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: #374151;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-number:hover,
.pagination-number.active {
    background: #1e40af;
    color: white;
}

/* Sidebar */
.blog-sidebar {
    min-width: 0;
}

.sidebar-widget {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.widget-title {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}

.popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: #f3f4f6;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #1e40af;
    color: white;
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post {
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.recent-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.recent-post h4 a {
    color: #374151;
    line-height: 1.4;
}

.recent-post h4 a:hover {
    color: #1e40af;
}

.recent-post time {
    font-size: 0.875rem;
    color: #9ca3af;
}

.categories {
    list-style: none;
}

.categories li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
}

.categories li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.categories a:hover {
    color: #1e40af;
}

.categories a span {
    background: #f3f4f6;
    color: #6b7280;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Blog Detail Styles */
.blog-post {
    padding: 120px 0 80px;
}

.post-header {
    margin-bottom: 3rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: #6b7280;
}

.breadcrumb a:hover {
    color: #1e40af;
}

.breadcrumb span {
    color: #9ca3af;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.post-featured-image {
    margin-bottom: 3rem;
}

.post-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.post-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.post-content {
    min-width: 0;
}

.content-wrapper {
    max-width: none;
}

.lead {
    font-size: 1.25rem;
    color: #374151;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-left: 4px solid #1e40af;
    border-radius: 0 8px 8px 0;
}

.content-wrapper h2 {
    color: #111827;
    margin: 2.5rem 0 1rem 0;
    font-size: 1.75rem;
}

.content-wrapper h3 {
    color: #111827;
    margin: 2rem 0 1rem 0;
    font-size: 1.375rem;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
    color: #374151;
    line-height: 1.6;
}

.highlight-box {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 1px solid #93c5fd;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.highlight-box h3 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.highlight-box p {
    color: #1e40af;
    margin-bottom: 0;
}

.info-table {
    margin: 2rem 0;
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

th {
    background: #f8fafc;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

tr:hover {
    background: #f9fafb;
}

.warning-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.warning-box h3 {
    color: #92400e;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.warning-box ul {
    margin-bottom: 0;
}

.warning-box li {
    color: #92400e;
}

.cta-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-section .cta-button {
    background: white;
    color: #1e40af;
}

.cta-section .cta-button:hover {
    background: #f3f4f6;
    color: #1e40af;
}

.faq-section {
    margin: 3rem 0;
}

.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item h3 {
    background: #f8fafc;
    color: #374151;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.125rem;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item p {
    padding: 1.5rem;
    margin: 0;
    color: #6b7280;
    line-height: 1.6;
}

.related-posts {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 2px solid #e5e7eb;
}

.related-posts h3 {
    margin-bottom: 2rem;
    color: #111827;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.related-post:hover {
    transform: translateY(-3px);
}

.related-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 0;
}

.related-post h4 {
    padding: 1rem;
    margin: 0;
    font-size: 1rem;
}

.related-post h4 a {
    color: #374151;
    line-height: 1.4;
}

.related-post h4 a:hover {
    color: #1e40af;
}

.post-sidebar {
    min-width: 0;
}

.post-toc ul {
    list-style: none;
    padding: 0;
}

.post-toc li {
    margin-bottom: 0.75rem;
}

.post-toc a {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.post-toc a:hover {
    color: #1e40af;
}

.popular-bonuses {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bonus-item {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #1e40af;
}

.bonus-item strong {
    color: #111827;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.bonus-item span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .guide-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .blog-layout,
    .post-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .sites-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .stat-item strong {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    section {
        padding: 60px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .pagination {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pagination-numbers {
        order: -1;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .post-featured-image img {
        height: 250px;
    }
    
    .table-responsive {
        font-size: 0.875rem;
    }
    
    th, td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .sites-grid {
        grid-template-columns: 1fr;
    }
    
    .site-card {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .post-featured-image img {
        height: 200px;
    }
    
    .highlight-box,
    .warning-box,
    .cta-section {
        padding: 1rem;
    }
    
    .faq-item h3,
    .faq-item p {
        padding: 1rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    background: #f8fafc;
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #1e40af;
    background: #f8fafc;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: #6b7280;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
    color: #1e40af;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
}

/* FAQ Mobile Styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-question::after {
        right: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem;
    }
}

/* Advanced Performance Optimizations for DR */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Critical CSS Optimizations */
.above-fold {
    contain: layout style paint;
}

.lazy-load {
    content-visibility: auto;
    contain-intrinsic-size: 300px;
}

/* Advanced Typography for Readability */
.content-wrapper {
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Enhanced Focus States for Accessibility */
*:focus-visible {
    outline: 2px solid #1e40af;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Skip Link for Screen Readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #1e40af;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 9999;
}

.skip-link:focus {
    top: 6px;
}

/* Enhanced Loading States */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Advanced Grid Layouts */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: masonry;
    gap: 2rem;
}

/* Enhanced Button Styles */
.btn-enhanced {
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-enhanced:hover::before {
    left: 100%;
}

/* Advanced Card Hover Effects */
.card-enhanced {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
}

.card-enhanced:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Enhanced Table Styles */
.table-enhanced {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.table-enhanced th {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-enhanced tr:nth-child(even) {
    background: rgba(59, 130, 246, 0.05);
}

.table-enhanced tr:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: scale(1.01);
}

/* Advanced Form Styles */
.form-enhanced .form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-enhanced input,
.form-enhanced textarea,
.form-enhanced select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-enhanced input:focus,
.form-enhanced textarea:focus,
.form-enhanced select:focus {
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
    outline: none;
}

.form-enhanced label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #6b7280;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 0.5rem;
}

.form-enhanced input:focus + label,
.form-enhanced input:not(:placeholder-shown) + label,
.form-enhanced textarea:focus + label,
.form-enhanced textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.875rem;
    color: #1e40af;
    font-weight: 500;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-button.primary {
    background: white;
    color: #1e40af;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #1e40af;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Security Preview Section */
.security-preview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.security-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.security-tip {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #fecaca;
}

.security-tip:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.security-tip h3 {
    color: #dc2626;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.security-tip p {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Bonus Types Preview Section */
.bonus-types-preview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.bonus-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.bonus-type-preview {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.bonus-type-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.bonus-type-preview h3 {
    color: #1e40af;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.bonus-type-preview p {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.bonus-amount {
    display: inline-block;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hero Inner Page */
.hero-inner {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.page-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Quick Overview Section */
.quick-overview {
    padding: 4rem 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.overview-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.overview-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overview-card h3 {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.overview-card p {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.overview-amount {
    display: inline-block;
    background: #1e40af;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Detailed Bonus Types */
.bonus-types-detailed {
    padding: 4rem 0;
    background: #f8fafc;
}

.bonus-type-card {
    background: white;
    border-radius: 16px;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.bonus-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.bonus-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.bonus-title-area {
    flex: 1;
}

.bonus-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.bonus-subtitle {
    opacity: 0.9;
    font-size: 1rem;
}

.bonus-rating {
    text-align: right;
}

.stars {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.rating-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.bonus-content {
    padding: 2rem;
}

.bonus-content h4 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.bonus-description p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #4b5563;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0 2rem;
}

.example-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.example-card strong {
    color: #1e40af;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.example-card p {
    color: #64748b;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.example-total {
    background: #1e40af;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tips-list {
    margin: 1rem 0;
}

.tip-item {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.tip-item strong {
    color: #92400e;
    display: block;
    margin-bottom: 0.5rem;
}

.tip-item p {
    color: #78350f;
    margin: 0;
    font-size: 0.95rem;
}

/* Sub Types Grid */
.sub-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0 2rem;
}

.sub-type-card {
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #cbd5e1;
}

.sub-type-card h5 {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.sub-type-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.sub-type-card .amount {
    background: #1e40af;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Cashback Calculation */
.calculation-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1rem 0 2rem;
}

.calc-example {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
}

.calc-example h5 {
    color: #1e40af;
    margin-bottom: 1rem;
    text-align: center;
}

.calc-details p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.calc-details p:last-child {
    border-bottom: none;
    font-weight: 600;
    color: #1e40af;
}

/* No Wager Types */
.no-wager-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0 2rem;
}

.no-wager-card {
    background: #ecfdf5;
    border: 1px solid #10b981;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.no-wager-card h5 {
    color: #047857;
    margin-bottom: 0.5rem;
}

.no-wager-card p {
    color: #065f46;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.no-wager-card .amount {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Comparison Table */
.bonus-comparison {
    padding: 4rem 0;
    background: white;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 600px;
}

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

.comparison-table th {
    background: #1e40af;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.comparison-table td {
    color: #4b5563;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: white;
    color: #1e40af;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #1e40af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
    
    .page-meta {
        gap: 1rem;
    }
    
    .bonus-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .bonus-rating {
        text-align: center;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .examples-grid,
    .sub-types-grid,
    .no-wager-grid {
        grid-template-columns: 1fr;
    }
    
    .calculation-examples {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Security Page Styles */
.security-alert {
    background: #fef2f2;
    border-top: 4px solid #ef4444;
    padding: 2rem 0;
}

.alert-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #fecaca;
}

.alert-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.alert-content h3 {
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.alert-content p {
    color: #7f1d1d;
    margin: 0;
}

/* Security Checklist */
.security-checklist {
    padding: 4rem 0;
    background: white;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.checklist-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.check-icon {
    font-size: 1.5rem;
    color: #10b981;
    flex-shrink: 0;
}

.checklist-item h3 {
    color: #1e40af;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.checklist-item p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
}

/* Security Guide Detailed */
.security-guide-detailed {
    padding: 4rem 0;
    background: #f8fafc;
}

.security-card {
    background: white;
    border-radius: 16px;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.security-header {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.security-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.security-title-area {
    flex: 1;
}

.security-title-area h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.security-title-area p {
    opacity: 0.9;
    font-size: 1rem;
}

.security-level {
    text-align: right;
}

.level {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.level.high {
    background: #fef2f2;
    color: #dc2626;
}

.level.medium {
    background: #fef3c7;
    color: #d97706;
}

.security-content {
    padding: 2rem;
}

.security-content h4 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* License Info */
.license-info {
    display: grid;
    gap: 1rem;
    margin: 1rem 0 2rem;
}

.license-item {
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #1e40af;
}

.license-item strong {
    color: #1e40af;
    display: block;
    margin-bottom: 0.5rem;
}

.license-item p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

/* Security Checks */
.security-checks {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
    margin: 1rem 0 2rem;
}

.security-checks li {
    padding: 0.5rem 0;
    color: #4b5563;
}

/* Warning Box */
.warning-box {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.warning-box h5 {
    color: #92400e;
    margin-bottom: 1rem;
}

.warning-box ul {
    list-style: none;
    margin: 0;
}

.warning-box li {
    color: #78350f;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.warning-box li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

/* Password Guide */
.password-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 1rem 0 2rem;
}

.password-example {
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid;
}

.password-example.good {
    background: #ecfdf5;
    border-color: #10b981;
}

.password-example.bad {
    background: #fef2f2;
    border-color: #ef4444;
}

.password-example h5 {
    margin-bottom: 1rem;
}

.password-example.good h5 {
    color: #047857;
}

.password-example.bad h5 {
    color: #dc2626;
}

.password-example code {
    background: rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    border-radius: 4px;
    display: block;
    margin-bottom: 1rem;
    font-family: monospace;
}

.password-example ul {
    list-style: none;
    margin: 0;
}

.password-example li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

/* Two Factor Guide */
.two-factor-guide {
    margin: 1rem 0 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.step-number {
    background: #1e40af;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h5 {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1rem 0 2rem;
}

.payment-method {
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid;
}

.payment-method.safe {
    background: #ecfdf5;
    border-color: #10b981;
}

.payment-method.moderate {
    background: #fef3c7;
    border-color: #f59e0b;
}

.payment-method.risky {
    background: #fef2f2;
    border-color: #ef4444;
}

.payment-method h5 {
    margin-bottom: 1rem;
}

.payment-method.safe h5 {
    color: #047857;
}

.payment-method.moderate h5 {
    color: #d97706;
}

.payment-method.risky h5 {
    color: #dc2626;
}

.payment-method ul {
    list-style: none;
    margin: 0;
}

.payment-method li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

/* Payment Tips */
.payment-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1rem 0 2rem;
}

.tip-card {
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
}

.tip-card h5 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.tip-card ul {
    list-style: none;
    margin: 0;
}

.tip-card li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.tip-card li:before {
    content: "💡";
    position: absolute;
    left: 0;
}

/* Limit Strategies */
.limit-strategies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 1rem 0 2rem;
}

.limit-type {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.limit-type h5 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.limit-type ul {
    list-style: none;
    margin: 0;
}

.limit-type li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #4b5563;
    border-bottom: 1px solid #e2e8f0;
}

.limit-type li:last-child {
    border-bottom: none;
}

.limit-type strong {
    color: #1e40af;
}

/* Addiction Warning */
.addiction-warning {
    background: #fef2f2;
    border: 2px solid #ef4444;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.addiction-warning h5 {
    color: #dc2626;
    margin-bottom: 1.5rem;
    text-align: center;
}

.warning-signs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.sign-category h6 {
    color: #dc2626;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.sign-category ul {
    list-style: none;
    margin: 0;
}

.sign-category li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: #7f1d1d;
    position: relative;
    padding-left: 1.5rem;
}

.sign-category li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

/* Help Resources */
.help-resources {
    background: #ecfdf5;
    border: 2px solid #10b981;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.help-resources h5 {
    color: #047857;
    margin-bottom: 1.5rem;
    text-align: center;
}

.help-contacts {
    display: grid;
    gap: 1rem;
}

.help-item {
    background: white;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #a7f3d0;
}

.help-item strong {
    color: #047857;
    display: block;
    margin-bottom: 0.5rem;
}

.help-item p {
    color: #065f46;
    margin: 0;
    font-size: 0.9rem;
}

/* Security Tools */
.security-tools {
    padding: 4rem 0;
    background: white;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.tool-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tool-card h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.tool-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.tool-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tool-features span {
    background: #1e40af;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Responsive Design for Security */
@media (max-width: 768px) {
    .alert-box {
        flex-direction: column;
        text-align: center;
    }
    
    .security-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .security-level {
        text-align: center;
    }
    
    .checklist-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .password-guide,
    .payment-methods,
    .payment-tips,
    .limit-strategies,
    .warning-signs {
        grid-template-columns: 1fr;
    }
    
    .checklist-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .nav-toggle,
    .cta-button,
    .site-button {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}