@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;700&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap"); @import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap'); body { font-family: "Atkinson Hyperlegible", serif; background-color: #0A1622; color: #e0e0e0; } a { color: #4EA1FF; text-decoration: none; transition: color 0.3s ease; } a:hover { color: #90B8E3; } footer { background: linear-gradient(180deg, #0A1622, #0D1D2D); padding: 2rem 0; text-align: center; } footer p { color: #496480; } footer a { color: #496480; text-decoration: none; transition: color 0.3s ease; } footer a:hover { color: #4EA1FF; } /** Hero Section */ .hero-section { min-height: 100vh; padding: 2rem 0; background: radial-gradient(ellipse at top, #0D1D2D, #0A1622); border-bottom: 1px solid #1E3449; text-align: center; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; } .hero-bg-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; /*background: url('assets/grid-pattern.png') repeat;*/ opacity: 0.05; z-index: 0; } .hero-content { position: relative; z-index: 1; width: 100%; } .hero-section .logo-img { width: 200px; height: 200px; margin-bottom: 1.5rem; filter: drop-shadow(0 0 20px rgba(78, 161, 255, 0.3)); transition: transform 0.5s ease; } .hero-section .logo-img:hover { transform: scale(1.05); } .animate-pulse { animation: pulse 2s infinite; } @keyframes pulse { 0% { filter: drop-shadow(0 0 15px rgba(78, 161, 255, 0.2)); } 50% { filter: drop-shadow(0 0 25px rgba(78, 161, 255, 0.5)); } 100% { filter: drop-shadow(0 0 15px rgba(78, 161, 255, 0.2)); } } .hero-section .display-4 { color: #4EA1FF; font-weight: bold; margin-bottom: 0.5rem; text-shadow: 0 0 10px rgba(78, 161, 255, 0.2); } .hero-section .tagline { color: #90B8E3; margin-bottom: 1rem; font-size: 1.5rem; } .hero-section .lead { color: #90B8E3; margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.6; } .hero-section .badges { margin-bottom: 2.5rem; display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5rem; } .hero-section .badges img { margin: 0 0.2rem; filter: brightness(1.1); transition: transform 0.3s ease; } .hero-section .badges img:hover { transform: translateY(-2px); } .hero-cta { display: flex; justify-content: center; gap: 1rem; margin-top: 1rem; } .btn-primary, .btn-secondary { display: inline-block; padding: 0.8rem 1.5rem; border-radius: 6px; font-weight: bold; transition: all 0.3s ease; text-decoration: none; } .btn-primary { background: linear-gradient(135deg, #4EA1FF, #3D7FCC); color: white; border: none; box-shadow: 0 4px 12px rgba(78, 161, 255, 0.3); } .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(78, 161, 255, 0.4); color: white; } .btn-secondary { background: transparent; border: 2px solid #4EA1FF; color: #4EA1FF; } .btn-secondary:hover { background-color: rgba(78, 161, 255, 0.1); transform: translateY(-2px); color: #4EA1FF; } @media (max-width: 768px) { .hero-section { padding: 4rem 0; } .hero-section .logo-img { width: 150px; height: 150px; } .hero-cta { flex-direction: column; gap: 0.75rem; } } /* Install section */ .install-section { background: linear-gradient(180deg, #0D1D2D, #0A1622); padding: 5rem 0; text-align: center; } .install-section h2 { color: #4EA1FF; margin-bottom: 1rem; } .install-section .lead { color: #90B8E3; max-width: 700px; margin-left: auto; margin-right: auto; } .install-card { background-color: #15202B; border-radius: 10px; border: 1px solid #1E3449; padding: 2rem; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3); margin-bottom: 2.5rem; } .install-step { position: relative; padding-bottom: 2rem; text-align: left; } .install-step:last-child { padding-bottom: 0; } .step-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; } .step-number { background: linear-gradient(135deg, #4EA1FF, #3D7FCC); color: white; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; box-shadow: 0 3px 10px rgba(78, 161, 255, 0.3); flex-shrink: 0; } .install-step h5 { color: #4EA1FF; margin: 0; } .code-block { position: relative; margin: 1.5rem 0; border-radius: 8px; overflow: hidden; } .code-block .prompt { color: #4EA1FF; margin-right: 8px; font-weight: bold; user-select: none; } .code-block pre { background-color: #0A1622; border: 1px solid #1E3449; border-radius: 8px; padding: 1rem; margin: 0; color: #90B8E3; text-align: left; overflow-x: auto; } .code-block code { color: #90B8E3; font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace; } .copy-btn { position: absolute; top: 8px; right: 8px; background-color: rgba(14, 30, 46, 0.7); color: #4EA1FF; border: 1px solid #1E3449; border-radius: 4px; padding: 5px 10px; font-size: 0.8rem; display: flex; align-items: center; cursor: pointer; transition: all 0.2s ease; opacity: 0; } .code-block:hover .copy-btn { opacity: 1; } .copy-btn:hover { background-color: rgba(78, 161, 255, 0.1); } .copy-icon { margin-right: 5px; } .install-note { color: #496480; font-size: 0.9rem; margin-top: 0.5rem; } .alternative-install { margin-top: 3rem; } .divider { display: flex; align-items: center; text-align: center; margin-bottom: 1.5rem; } .divider::before, .divider::after { content: ""; flex: 1; border-bottom: 1px solid #1E3449; } .divider span { padding: 0 1rem; color: #496480; font-size: 0.9rem; font-weight: bold; } .btn-download { display: inline-flex; align-items: center; background: linear-gradient(135deg, #4EA1FF, #3D7FCC); color: white; padding: 0.8rem 1.5rem; border-radius: 6px; font-weight: bold; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(78, 161, 255, 0.3); margin-top: 1rem; } .btn-download:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(78, 161, 255, 0.4); color: white; } .download-icon { margin-right: 8px; font-size: 1.2rem; } @media (max-width: 768px) { .install-section { padding: 3rem 0; } .install-card { padding: 1.5rem; } } /* Screenshots Section */ .screenshots-section { background: linear-gradient(180deg, #0A1622, #0D1D2D); padding: 4rem 0; text-align: center; } .screenshots-section h2 { color: #4EA1FF; margin-bottom: 1rem; } .screenshots-section .lead { color: #90B8E3; margin-bottom: 2rem; } .screenshot-card { background-color: #15202B; border-radius: 8px; overflow: hidden; border: 1px solid #1E3449; transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%; } .screenshot-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); } .screenshot-card img { border-radius: 8px 8px 0 0; border-bottom: 1px solid #1E3449; width: 100%; } .screenshot-caption { padding: 0.75rem 1rem; } .screenshot-caption p { color: #4EA1FF; font-weight: bold; margin: 0; } @media (max-width: 768px) { .screenshots-section { padding: 2rem 0; } } /* Features section */ .features-section { background: linear-gradient(180deg, #0A1622, #0D1D2D); padding: 5rem 0; text-align: center; } .features-section h2 { color: #4EA1FF; margin-bottom: 1rem; } .features-section .lead { color: #90B8E3; max-width: 700px; margin-left: auto; margin-right: auto; } .feature-card { background-color: #15202B; border: 1px solid #1E3449; border-radius: 10px; padding: 2rem 1.5rem; height: 100%; transition: all 0.3s ease; position: relative; overflow: hidden; z-index: 1; } .feature-card:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); border-color: #4EA1FF; } .feature-card:before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #4EA1FF, #3D7FCC); transform: scaleX(0); transition: transform 0.3s ease; z-index: 2; } .feature-card:hover:before { transform: scaleX(1); } .feature-icon { margin-bottom: 1.5rem; } .feature-icon .icon { font-size: 2.5rem; background: linear-gradient(135deg, #4EA1FF, #3D7FCC); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; filter: drop-shadow(0 0 15px rgba(78, 161, 255, 0.2)); } .feature-card h3 { color: #4EA1FF; font-size: 1.25rem; margin-bottom: 1rem; } .feature-card p { color: #90B8E3; font-size: 0.95rem; margin-bottom: 0; } .feature-summary { background-color: rgba(14, 30, 46, 0.5); border: 1px solid #1E3449; border-radius: 10px; padding: 1.5rem; margin-top: 2rem; } .feature-summary p { color: #90B8E3; margin-bottom: 0; } @media (max-width: 992px) { .features-section { padding: 4rem 0; } } @media (max-width: 768px) { .features-section { padding: 3rem 0; } .feature-card { padding: 1.5rem; } } /* SEO Content Section */ .seo-content { background: linear-gradient(180deg, #0D1D2D, #0A1622); padding: 5rem 0; } .seo-content h2 { color: #4EA1FF; margin-bottom: 2rem; text-align: center; } .seo-content h3 { color: #4EA1FF; font-size: 1.35rem; margin-top: 2rem; margin-bottom: 1rem; } .seo-content p { color: #90B8E3; font-size: 1rem; line-height: 1.6; margin-bottom: 1.5rem; } .seo-content ul { color: #90B8E3; padding-left: 1.2rem; margin-bottom: 1.5rem; } .seo-content ul li { margin-bottom: 0.75rem; line-height: 1.5; } .seo-content strong { color: #4EA1FF; font-weight: 600; } /* About Section */ .about-section { background: linear-gradient(180deg, #0A1622, #0D1D2D); padding: 5rem 0; } .about-section h2 { color: #4EA1FF; margin-bottom: 1rem; text-align: center; } .about-section .lead { color: #90B8E3; text-align: center; margin-bottom: 2.5rem; font-style: italic; } .about-section h3 { color: #4EA1FF; font-size: 1.35rem; margin-top: 2rem; margin-bottom: 1rem; } .about-section p { color: #90B8E3; font-size: 1rem; line-height: 1.6; margin-bottom: 1.5rem; } .compatibility-info { background-color: #15202B; border: 1px solid #1E3449; border-radius: 10px; padding: 1.5rem; margin: 2rem 0; } .compatibility-info h4 { color: #4EA1FF; font-size: 1.2rem; margin-bottom: 1rem; } .compatibility-info ul { color: #90B8E3; padding-left: 1.2rem; margin-bottom: 0; } .compatibility-info ul li { margin-bottom: 0.5rem; line-height: 1.5; } @media (max-width: 768px) { .seo-content, .about-section { padding: 3rem 0; } .seo-content h2, .about-section h2 { font-size: 1.75rem; } .seo-content h3, .about-section h3 { font-size: 1.25rem; } } /* FAQ Section */ .faq-section { background: linear-gradient(180deg, #0D1D2D, #0A1622); padding: 5rem 0; text-align: center; } .faq-section h2 { color: #4EA1FF; margin-bottom: 1rem; } .faq-section .lead { color: #90B8E3; max-width: 700px; margin-left: auto; margin-right: auto; } .faq-accordion { text-align: left; } .faq-item { background-color: #15202B; border: 1px solid #1E3449; border-radius: 10px; margin-bottom: 1rem; overflow: hidden; transition: all 0.3s ease; } .faq-item:hover { border-color: #4EA1FF; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); } .faq-question { padding: 1.25rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s ease; } .faq-question h5 { color: #4EA1FF; margin: 0; font-weight: 600; } .faq-icon { color: #4EA1FF; font-size: 1.5rem; line-height: 1; font-weight: 300; width: 24px; height: 24px; position: relative; display: flex; align-items: center; justify-content: center; } .faq-icon .plus, .faq-icon .minus { position: absolute; transition: all 0.3s ease; } .faq-icon .minus { opacity: 0; } .faq-question[aria-expanded="true"] .faq-icon .plus { opacity: 0; } .faq-question[aria-expanded="true"] .faq-icon .minus { opacity: 1; } .faq-answer { border-top: 1px solid #1E3449; padding: 0; } .faq-answer p { padding: 1.25rem; margin: 0; color: #90B8E3; } .faq-answer code { background-color: #0A1622; color: #4EA1FF; padding: 0.2rem 0.4rem; border-radius: 4px; font-size: 0.9em; } .link-accent { color: #4EA1FF; text-decoration: none; transition: all 0.2s ease; } .link-accent:hover { color: #90B8E3; text-decoration: underline; } @media (max-width: 768px) { .faq-section { padding: 3rem 0; } .faq-question h5 { font-size: 1.05rem; } } /* Blog Styles */ .blog-posts { margin-bottom: 3rem; position: relative; } .blog-posts::after { content: ''; position: absolute; right: -2rem; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, transparent, #1E3449, transparent); } .blog-post { padding: 2rem; background: #15202B; border: 1px solid #1E3449; border-radius: 8px; transition: all 0.3s ease; margin-bottom: 2rem; position: relative; } .blog-post:last-child { margin-bottom: 0; } .blog-post:hover { transform: translateY(-2px); border-color: #4EA1FF; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); } .blog-post::after { content: ''; position: absolute; bottom: -1rem; left: 2rem; right: 2rem; height: 1px; background: linear-gradient(to right, transparent, #1E3449, transparent); } .blog-post:last-child::after { display: none; } .post-meta { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 1rem; } .post-meta .date, .post-meta .author { margin-right: 1rem; } .blog-post h2 { font-size: 1.8rem; margin-bottom: 1rem; } .blog-post h2 a { color: var(--text-primary); text-decoration: none; transition: color 0.2s ease; } .blog-post h2 a:hover { color: var(--accent-color); } .excerpt { color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.6; } .tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; } .tag { background: var(--bg-primary); color: var(--text-secondary); padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.9rem; text-decoration: none; transition: all 0.2s ease; } .tag:hover { background: var(--accent-color); color: var(--text-primary); } .read-more { color: var(--accent-color); text-decoration: none; font-weight: 500; transition: color 0.2s ease; } .read-more:hover { color: var(--accent-hover); } /* Sidebar Styles */ .sidebar { position: sticky; top: 2rem; padding-left: 2rem; } .widget { background: #15202B; border: 1px solid #1E3449; padding: 1.5rem; border-radius: 8px; margin-bottom: 2rem; transition: all 0.3s ease; } .widget:hover { border-color: #4EA1FF; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); } .widget:last-child { margin-bottom: 0; } .widget h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--text-primary); } .social-links { display: flex; gap: 1rem; } .social-links a { color: var(--text-secondary); text-decoration: none; transition: color 0.2s ease; } .social-links a:hover { color: var(--accent-color); } /* Responsive Adjustments */ @media (max-width: 992px) { .blog-posts::after { display: none; } .sidebar { padding-left: 0; } } @media (max-width: 768px) { article header h1 { font-size: 2rem; } article .content { font-size: 1rem; } article .content h2 { font-size: 1.6rem; } article .content h3 { font-size: 1.3rem; } } /* Article Page Improvements */ article { max-width: 800px; margin: 0 auto; } article header { margin-bottom: 3rem; text-align: center; } article header h1 { color: #4EA1FF; font-size: 2.5rem; margin-bottom: 1rem; } article .meta { color: #90B8E3; font-size: 0.9rem; } article .meta span { margin: 0 0.5rem; } article .content { font-size: 1.1rem; line-height: 1.8; } article .content h2 { color: #4EA1FF; margin: 2.5rem 0 1.5rem; font-size: 1.8rem; } article .content h3 { color: #4EA1FF; margin: 2rem 0 1rem; font-size: 1.4rem; } article .content p { margin-bottom: 1.5rem; color: #e0e0e0; } article .content ul, article .content ol { margin-bottom: 1.5rem; padding-left: 1.5rem; } article .content li { margin-bottom: 0.5rem; } article .content pre { background: #0A1622; border: 1px solid #1E3449; border-radius: 8px; padding: 1rem; margin: 1.5rem 0; overflow-x: auto; } article .content code { color: #4EA1FF; font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace; } article .content .cta { background: #15202B; border: 1px solid #1E3449; border-radius: 8px; padding: 2rem; margin: 3rem 0; text-align: center; } article .content .cta p { color: #4EA1FF; font-size: 1.2rem; margin-bottom: 1rem; } article footer { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid #1E3449; } article .tags { margin-bottom: 2rem; } /* Remove share section */ .share { display: none; } /* Latest Articles Section */ #latest-posts { background: linear-gradient(180deg, #0D1D2D, #0A1622); padding: 5rem 0; border-top: 1px solid #1E3449; border-bottom: 1px solid #1E3449; position: relative; z-index: 1; } #latest-posts::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, #0D1D2D, #0A1622); z-index: -1; } #latest-posts h2 { color: #4EA1FF; margin-bottom: 3rem; } #latest-posts .lead { color: #90B8E3; margin-bottom: 3rem; } .blog-card { background: #15202B; border: 1px solid #1E3449; padding: 1.5rem; border-radius: 8px; height: 100%; transition: all 0.3s ease; position: relative; z-index: 2; } .blog-card:hover { transform: translateY(-2px); border-color: #4EA1FF; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); } .blog-card h3 { font-size: 1.4rem; margin: 1rem 0; } .blog-card h3 a { color: #4EA1FF; text-decoration: none; transition: color 0.2s ease; } .blog-card h3 a:hover { color: #90B8E3; } .blog-card p { color: #90B8E3; margin-bottom: 1rem; line-height: 1.6; } .blog-card .read-more { color: #4EA1FF; text-decoration: none; font-weight: 500; transition: color 0.2s ease; } .blog-card .read-more:hover { color: #90B8E3; } /* Breadcrumb Styles */ .breadcrumb { background: #15202B; border: 1px solid #1E3449; border-radius: 8px; padding: 1rem 1.5rem; margin-bottom: 2rem; display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; } .breadcrumb-item { display: flex; align-items: center; color: #90B8E3; font-size: 0.9rem; } .breadcrumb-item:not(:last-child)::after { content: '/'; margin-left: 0.5rem; color: #4EA1FF; } .breadcrumb-item a { color: #4EA1FF; text-decoration: none; transition: color 0.2s ease; } .breadcrumb-item a:hover { color: #90B8E3; } .breadcrumb-item.active { color: #90B8E3; } .navbar .nav-link { color: #ffffff !important; transition: all 0.3s ease; position: relative; padding-bottom: 2px; } .navbar .nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, #4EA1FF, #90B8E3); transition: width 0.3s ease; } .navbar .nav-link:hover { color: #ffffff !important; transform: translateY(-1px); } .navbar .nav-link:hover::after { width: 100%; } .navbar .navbar-brand { color: #ffffff !important; transition: all 0.3s ease; display: flex; align-items: center; gap: 0.5rem; } .navbar .navbar-brand:hover { color: #ffffff !important; transform: translateY(-1px); } .navbar .navbar-brand img { transition: transform 0.3s ease; } .navbar .navbar-brand:hover img { transform: scale(1.1); } /* Mobile menu alignment */ @media (max-width: 991px) { .navbar-collapse { text-align: right; } .navbar-nav { align-items: flex-end; } .nav-item { width: 100%; text-align: right; } .nav-link { padding-right: 1rem; } } /* Back to top button */ .back-to-top { position: fixed; bottom: 2rem; right: 2rem; width: 3rem; height: 3rem; border-radius: 50%; background: linear-gradient(135deg, #4EA1FF, #3D7FCC); color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.3s ease; border: none; box-shadow: 0 4px 12px rgba(78, 161, 255, 0.3); z-index: 1000; } .back-to-top.visible { opacity: 1; visibility: visible; } .back-to-top:hover { transform: translateY(-3px); box-shadow: 0 6px 15px rgba(78, 161, 255, 0.4); } .back-to-top svg { width: 1.5rem; height: 1.5rem; transition: transform 0.3s ease; } .back-to-top:hover svg { transform: translateY(-2px); } @media (max-width: 768px) { .back-to-top { bottom: 1.5rem; right: 1.5rem; width: 2.5rem; height: 2.5rem; } }