@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: #6b7280;
}

a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #1e40af;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.header {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.header .nav .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
}
.header .nav .nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}
@media (max-width: 768px) {
  .header .nav .nav-menu {
    display: none;
  }
}
.header .nav .nav-menu a {
  font-weight: 500;
  transition: color 0.2s ease;
}
.header .nav .nav-menu a:hover {
  color: #1e40af;
}
.header .nav .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header .nav .mobile-menu-toggle {
    display: block;
  }
}

.hero {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}
.hero h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}
.hero .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.hero.database-hero .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
}
@media (max-width: 1024px) {
  .hero.database-hero .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.hero.database-hero .hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.hero.database-hero .hero-stats .stat {
  text-align: center;
}
.hero.database-hero .hero-stats .stat .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #f59e0b;
}
.hero.database-hero .hero-stats .stat .stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}
.hero.database-hero .hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero.deployment-hero .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
}
@media (max-width: 1024px) {
  .hero.deployment-hero .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.hero.deployment-hero .deployment-diagram {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
}
.hero.deployment-hero .deployment-diagram .deploy-step {
  text-align: center;
  color: white;
}
.hero.deployment-hero .deployment-diagram .deploy-step .step-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}
.hero.deployment-hero .deployment-diagram .deploy-step span {
  font-size: 0.875rem;
  font-weight: 500;
}
.hero.deployment-hero .deployment-diagram .arrow {
  color: #f59e0b;
  font-size: 1.5rem;
  font-weight: bold;
}
.hero.tools-hero .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
}
@media (max-width: 1024px) {
  .hero.tools-hero .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.hero.tools-hero .tools-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
}
.hero.tools-hero .tools-showcase .tool-icon {
  font-size: 3rem;
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
}
.hero.tools-hero .tools-showcase .tool-icon:hover {
  transform: scale(1.1);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn.btn-primary {
  background: #2563eb;
  color: white;
}
.btn.btn-primary:hover {
  background: #1e40af;
  transform: translateY(-1px);
}
.btn.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.btn.btn-secondary:hover {
  background: white;
  color: #2563eb;
}
.btn.btn-accent {
  background: #f59e0b;
  color: white;
}
.btn.btn-accent:hover {
  background: rgb(196.9291338583, 126.7125984252, 8.0708661417);
}

.card {
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.card .card-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.card .card-body {
  padding: 1.5rem;
}
.card .card-footer {
  padding: 1rem 1.5rem;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
}

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

.section {
  padding: 4rem 0;
}
.section.section-light {
  background: #f9fafb;
}
.section.section-dark {
  background: #1f2937;
  color: white;
}
.section.section-dark h1, .section.section-dark h2, .section.section-dark h3, .section.section-dark h4, .section.section-dark h5, .section.section-dark h6 {
  color: white;
}
.section.section-dark p {
  color: rgba(255, 255, 255, 0.8);
}

.code-block {
  background: #1f2937;
  color: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  font-family: "Fira Code", "Monaco", "Consolas", monospace;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 1.5rem 0;
  border: 1px solid #374151;
}
.code-block .code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #374151;
}
.code-block .code-header .code-title {
  font-weight: 600;
  color: #9ca3af;
}
.code-block .code-header .copy-btn {
  background: #374151;
  color: #9ca3af;
  border: none;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.code-block .code-header .copy-btn:hover {
  background: #4b5563;
  color: white;
}

.code-window {
  background: #1f2937;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid #374151;
}
.code-window .window-header {
  background: #374151;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.code-window .window-header .window-controls {
  display: flex;
  gap: 0.5rem;
}
.code-window .window-header .window-controls .control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.code-window .window-header .window-controls .control.red {
  background: #ef4444;
}
.code-window .window-header .window-controls .control.yellow {
  background: #f59e0b;
}
.code-window .window-header .window-controls .control.green {
  background: #10b981;
}
.code-window .window-header .window-title {
  color: #9ca3af;
  font-size: 0.875rem;
  font-family: "Fira Code", "Monaco", "Consolas", monospace;
}
.code-window .code-content {
  padding: 1.5rem;
  font-family: "Fira Code", "Monaco", "Consolas", monospace;
  font-size: 0.875rem;
  line-height: 1.6;
}
.code-window .code-content .code-line {
  margin-bottom: 0.5rem;
  display: block;
}
.code-window .code-content .code-line.indent-1 {
  padding-left: 1rem;
}
.code-window .code-content .code-line.indent-2 {
  padding-left: 2rem;
}
.code-window .code-content .code-line.indent-3 {
  padding-left: 3rem;
}
.code-window .code-content .code-line .keyword {
  color: #f472b6;
  font-weight: 500;
}
.code-window .code-content .code-line .variable {
  color: #60a5fa;
}
.code-window .code-content .code-line .function {
  color: #34d399;
}
.code-window .code-content .code-line .property {
  color: #fbbf24;
}
.code-window .code-content .code-line .string {
  color: #a7f3d0;
}
.code-window .code-content .code-line .number {
  color: #fde68a;
}

.affiliate-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s ease;
  position: relative;
}
.affiliate-link::after {
  content: "↗";
  font-size: 0.875rem;
}
.affiliate-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.footer {
  background: #1f2937;
  color: white;
  padding: 3rem 0 1rem;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer .footer-content .footer-section h3 {
  color: white;
  margin-bottom: 1rem;
}
.footer .footer-content .footer-section ul {
  list-style: none;
}
.footer .footer-content .footer-section ul li {
  margin-bottom: 0.5rem;
}
.footer .footer-content .footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}
.footer .footer-content .footer-section ul li a:hover {
  color: white;
}
.footer .footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  color: rgba(255, 255, 255, 0.6);
}

.solution-card {
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}
.solution-card .card-header {
  position: relative;
  padding: 2rem 1.5rem 1rem;
}
.solution-card .card-header .solution-icon {
  width: 60px;
  height: 60px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.solution-card .card-header .solution-icon.mysql-icon {
  background: linear-gradient(135deg, #00758f, #f29111);
}
.solution-card .card-header .solution-icon.postgres-icon {
  background: linear-gradient(135deg, #336791, #4a90a4);
}
.solution-card .card-header .solution-icon.security-icon {
  background: linear-gradient(135deg, #dc3545, #fd7e14);
}
.solution-card .card-header .solution-icon.digitalocean-icon {
  background: linear-gradient(135deg, #0080ff, #00d4ff);
}
.solution-card .card-header .solution-icon.docker-icon {
  background: linear-gradient(135deg, #2496ed, #0db7ed);
}
.solution-card .card-header .solution-icon.cicd-icon {
  background: linear-gradient(135deg, #6f42c1, #e83e8c);
}
.solution-card .card-header .solution-icon.vscode-icon {
  background: linear-gradient(135deg, #007acc, #1e90ff);
}
.solution-card .card-header .solution-icon.terminal-icon {
  background: linear-gradient(135deg, #2d3748, #4a5568);
}
.solution-card .card-header .solution-icon.git-icon {
  background: linear-gradient(135deg, #f05032, #f14e32);
}
.solution-card .card-header .difficulty {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.solution-card .card-header .difficulty.beginner {
  background: #dcfce7;
  color: #166534;
}
.solution-card .card-header .difficulty.intermediate {
  background: #fef3c7;
  color: #92400e;
}
.solution-card .card-header .difficulty.advanced {
  background: #fee2e2;
  color: #991b1b;
}
.solution-card .solution-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.solution-card .solution-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
  position: relative;
  padding-left: 1.5rem;
}
.solution-card .solution-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}
.solution-card .solution-features li:last-child {
  border-bottom: none;
}
.solution-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}
.solution-card .card-footer .read-time {
  color: #6b7280;
  font-size: 0.875rem;
}

.category-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  transition: all 0.3s ease;
}
.category-card:hover {
  border-color: #2563eb;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.category-card .category-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.category-card h3 {
  margin-bottom: 1rem;
  color: #1f2937;
}
.category-card p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}
.category-card .article-count {
  background: #f9fafb;
  color: #2563eb;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.tool-card {
  text-align: center;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  transition: all 0.3s ease;
}
.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.tool-card .tool-logo {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.tool-card h3 {
  margin-bottom: 1rem;
  color: #1f2937;
}
.tool-card p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.nav-menu a.active {
  color: #f59e0b;
  font-weight: 600;
}

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

.text-left {
  text-align: left;
}

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

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .section {
    padding: 2rem 0;
  }
  .grid.grid-2,
  .grid.grid-3,
  .grid.grid-4 {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=main.css.map */
