* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif; background: #2b2d42; min-height: 100vh; padding: 100px 20px 40px; color: #f8f9fa; }

.tools-page { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 48px; }
.tools-section { display: flex; flex-direction: column; gap: 22px; }
.tools-title { font-family: 'Scheherazade New', serif; font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 700; background: linear-gradient(45deg, #f093fb, #f5576c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.tools-subtitle { color: #adb5bd; opacity: 0.9; }

.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 380px)); gap: 36px; justify-content: center; }
.tool-card { position: relative; cursor: pointer; transition: transform 0.3s ease; }
.tool-card:hover { transform: translateY(-8px); }
.icon-circle { width: 80px; height: 80px; background: linear-gradient(135deg, #ffb3d9, #ffa6c1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2em; margin: 0 auto 18px; box-shadow: 0 10px 40px rgba(255, 179, 217, 0.4); transition: all 0.3s ease; }
.tool-card:hover .icon-circle { box-shadow: 0 15px 50px rgba(255, 179, 217, 0.6); transform: scale(1.05); }
.tool-name { font-size: 1.6em; font-weight: 700; color: #f8f9fa; text-align: center; margin-bottom: 8px; letter-spacing: -0.3px; }
.tool-subtitle { font-size: 1em; color: #adb5bd; text-align: center; margin-bottom: 18px; font-weight: 400; }
.tool-link { display: block; text-align: center; color: #ffb3d9; font-size: 0.95em; font-weight: 600; text-decoration: none; transition: all 0.3s ease; opacity: 0.9; }
.tool-link:hover { opacity: 1; transform: translateX(5px); }
.tool-link::after { content: ' →'; transition: transform 0.3s ease; display: inline-block; }
.tool-link:hover::after { transform: translateX(5px); }

@media (max-width: 768px) {
  body { padding: 90px 16px 32px; }
  .tools-grid { grid-template-columns: 1fr; gap: 28px; }
  .icon-circle { width: 70px; height: 70px; font-size: 1.8em; }
  .tool-name { font-size: 1.4em; }
}


