/**
 * TimeMachine AI Generated Style
 * Domain: etwotouch.net
 * Generated: 2026-01-16 18:08:37
 */



:root{
  --color-primary:#2E5CFF;
  --color-primary-2:#6C8BFF;
  --color-accent-red:#ff4d4f;
  --color-text:#333333;
  --color-bg:#f8fafc;
  --color-surface:#ffffff;
  --color-muted:#8a8f98;
  --gradient-primary:linear-gradient(135deg,#2E5CFF 0%,#6C8BFF 100%);
  --gradient-cyan:linear-gradient(135deg,#00D2FF 0%,#3A7BD5 100%);
  --gradient-purple:linear-gradient(135deg,#A18CD1 0%,#FBC2EB 100%);
  --gradient-orange:linear-gradient(135deg,#FF9966 0%,#FF5E62 100%);
  --shadow-sm:0 6px 20px rgba(46,92,255,.08);
  --shadow-md:0 10px 30px rgba(46,92,255,.12);
  --shadow-lg:0 20px 50px rgba(46,92,255,.18);
  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:20px;
  --radius-xl:28px;
}

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif;
  color:var(--color-text);
  background:var(--color-bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  background-image:url('/images/bg.jpg');
  background-repeat:no-repeat;
  background-position:center center;
  background-size:cover;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  background:linear-gradient(180deg,rgba(248,250,252,.85) 0%,rgba(248,250,252,.75) 60%,rgba(248,250,252,.9) 100%);
  pointer-events:none;
  z-index:-1;
}

a{color:var(--color-primary);text-decoration:none}
a:hover{color:#1b43cc}
a:active{opacity:.85}

img{max-width:100%;height:auto;display:block}

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

.header{
  position:sticky;top:0;z-index:1000;
  background:rgba(255,255,255,.7);
  backdrop-filter:saturate(180%) blur(18px);
  -webkit-backdrop-filter:saturate(180%) blur(18px);
  border-bottom:1px solid rgba(46,92,255,.12);
  box-shadow:var(--shadow-sm);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:14px 0}
.brand{display:flex;align-items:center;gap:12px;font-weight:700;font-size:20px;letter-spacing:.2px;color:#111}
.brand .logo{
  width:36px;height:36px;border-radius:12px;
  background:var(--gradient-primary);
  box-shadow:var(--shadow-sm);
}
.nav ul{display:flex;align-items:center;gap:8px;list-style:none;margin:0;padding:0}
.nav a{
  display:inline-block;padding:10px 14px;border-radius:12px;color:#111;transition:all .2s ease;position:relative
}
.nav a:hover{background:rgba(46,92,255,.08);color:var(--color-primary)}
.nav a.active{color:var(--color-primary)}
.nav a.active::after{
  content:"";position:absolute;left:12px;right:12px;bottom:6px;height:2px;border-radius:2px;background:var(--color-primary)
}

.hero{
  position:relative;overflow:hidden;border-radius:var(--radius-xl);
  margin:24px auto 32px;min-height:360px;display:flex;align-items:center;
  background:linear-gradient(120deg,rgba(46,92,255,.12),rgba(108,139,255,.12)),url('/images/bg.jpg') center/cover no-repeat;
  box-shadow:var(--shadow-lg)
}
.hero::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(248,250,252,.85) 0%,rgba(248,250,252,.35) 60%,rgba(248,250,252,.75) 100%);
  pointer-events:none
}
.hero-inner{position:relative;z-index:1;padding:48px}
.hero h1{
  margin:0 0 14px;font-size:42px;line-height:1.15;letter-spacing:.2px;color:#111;
  text-shadow:0 2px 14px rgba(255,255,255,.6)
}
.hero p{margin:0 0 24px;color:#444;max-width:720px}

.search-pill{
  display:flex;align-items:center;gap:10px;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(8px);
  border:1px solid rgba(46,92,255,.15);
  border-radius:999px;padding:10px;max-width:720px;box-shadow:var(--shadow-md)
}
.search-pill input{
  flex:1;border:0;outline:none;background:transparent;font-size:16px;color:#111;padding:10px 12px
}
.search-pill button{
  border:0;border-radius:999px;padding:10px 18px;cursor:pointer;
  background:var(--gradient-primary);color:#fff;font-weight:600;transition:all .2s ease
}
.search-pill button:hover{filter:brightness(1.05)}
.search-pill .hotkeys{display:flex;gap:8px;flex-wrap:wrap}
.search-pill .hotkeys span{
  font-size:12px;color:#666;background:rgba(46,92,255,.08);
  padding:6px 10px;border-radius:999px;cursor:pointer;transition:all .2s ease
}
.search-pill .hotkeys span:hover{background:rgba(46,92,255,.16);color:var(--color-primary)}

.main{padding:10px 0 40px}
.section{margin:26px 0}
.section-title{
  display:flex;align-items:center;gap:10px;margin:0 0 16px;font-size:22px;font-weight:800;color:#111
}
.section-title .dot{
  width:8px;height:8px;border-radius:50%;background:var(--color-primary);box-shadow:0 0 0 4px rgba(46,92,255,.12)
}

.grid{
  display:grid;gap:18px;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr))
}
.row{display:flex;flex-wrap:wrap;gap:16px}

.card{
  background:var(--color-surface);border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);transition:transform .2s ease,box-shadow .2s ease;
  border:1px solid rgba(46,92,255,.08);overflow:hidden
}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.card-media{
  position:relative;height:160px;background:#e9eef8;overflow:hidden
}
.card-media img{width:100%;height:100%;object-fit:cover}
.card-media::after{
  content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 0%,rgba(46,92,255,.08) 100%)
}
.card-body{padding:16px}
.card-title{margin:0 0 8px;font-size:16px;font-weight:700;color:#111}
.card-text{margin:0 0 12px;color:#555;font-size:14px}
.card-meta{display:flex;align-items:center;gap:10px;color:#777;font-size:12px}
.card-actions{padding:0 16px 16px}
.btn{
  display:inline-block;padding:10px 14px;border-radius:12px;font-weight:600;text-align:center;cursor:pointer;
  background:var(--gradient-primary);color:#fff;transition:all .2s ease;border:0
}
.btn:hover{filter:brightness(1.05)}
.btn-outline{
  background:transparent;color:var(--color-primary);border:1px solid rgba(46,92,255,.35)
}
.btn-outline:hover{background:rgba(46,92,255,.08)}
.badge{
  display:inline-flex;align-items:center;gap:6px;padding:6px 10px;border-radius:999px;font-size:12px;font-weight:600
}
.badge-cyan{background:rgba(0,210,255,.12);color:#0f6a8a}
.badge-purple{background:rgba(161,140,209,.16);color:#7b4aa0}
.badge-orange{background:rgba(255,153,102,.16);color:#a14b3a}

.list{
  list-style:none;margin:0;padding:0;background:var(--color-surface);
  border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);border:1px solid rgba(46,92,255,.08);overflow:hidden
}
.list-item{
  display:flex;align-items:center;gap:12px;padding:14px 16px;border-bottom:1px dashed rgba(46,92,255,.18);
  transition:background .2s ease
}
.list-item:last-child{border-bottom:0}
.list-item:hover{background:rgba(46,92,255,.06)}
.item-thumb{
  width:44px;height:44px;border-radius:12px;flex:0 0 auto;background:rgba(46,92,255,.1);overflow:hidden
}
.item-thumb img{width:100%;height:100%;object-fit:cover}
.item-title{
  flex:1;min-width:0;font-weight:600;color:#111;white-space:nowrap;overflow:hidden;text-overflow:ellipsis
}
.item-meta{color:#777;font-size:12px}
.item-tag{
  padding:4px 8px;border-radius:999px;background:rgba(46,92,255,.08);color:var(--color-primary);font-size:12px;font-weight:600
}

.tm-links-section{
  max-width:1200px;margin:30px auto;padding:0 15px;background:transparent
}
.tm-links-section h3{
  font-size:18px;font-weight:800;color:#111;padding:12px 0;border-bottom:2px solid var(--color-primary);margin:0 0 15px
}
.tm-links-section h3 span{color:var(--color-primary)}
.tm-links-list{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:10px;list-style:none;padding:0;margin:0 0 25px 0
}
.tm-links-list li{
  background:var(--color-surface);border-radius:12px;transition:all .2s ease;border:1px solid rgba(46,92,255,.08)
}
.tm-links-list li:hover{background:#f0f7ff;transform:translateX(3px)}
.tm-links-list li a{
  display:block;padding:10px 12px;color:#111;text-decoration:none;font-size:14px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis
}
.tm-links-list li a:hover{color:var(--color-primary)}
.tm-tags-list{
  display:flex;flex-wrap:wrap;gap:8px;list-style:none;padding:0;margin:0 0 25px 0
}
.tm-tags-list li a{
  display:inline-block;padding:6px 14px;background:#f5f7fa;color:#666;text-decoration:none;font-size:13px;border-radius:15px;transition:all .2s ease
}
.tm-tags-list li a:hover{background:var(--color-primary);color:#fff}

.tm-404-mask{
  position:fixed;top:0;left:0;width:100%;height:100%;
  background:#f5f5f5;z-index:999999;display:flex;flex-direction:column;justify-content:center;align-items:center;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif
}
.tm-404-mask .error-code{font-size:120px;font-weight:800;color:#ddd;line-height:1;margin-bottom:20px}
.tm-404-mask .error-title{font-size:24px;color:#666;margin-bottom:10px}
.tm-404-mask .error-desc{font-size:14px;color:#999;margin-bottom:30px}
.tm-404-mask .error-btn{
  display:inline-block;padding:12px 30px;background:var(--color-primary);color:#fff;text-decoration:none;border-radius:8px;font-size:14px;transition:background .2s ease
}
.tm-404-mask .error-btn:hover{background:#1b43cc}

.footer{
  background:#2c3e50;color:#cfd6dd;margin-top:40px
}
.footer-inner{max-width:1200px;margin:0 auto;padding:26px 20px;display:flex;flex-wrap:wrap;gap:18px;align-items:center;justify-content:space-between}
.footer a{color:#cfd6dd}
.footer a:hover{color:#fff}
.footer .brand{color:#fff}
.footer .brand .logo{box-shadow:none}

@media (max-width: 768px){
  .hero-inner{padding:28px}
  .hero h1{font-size:30px}
  .search-pill{flex-direction:column;align-items:stretch;border-radius:16px}
  .nav ul{flex-wrap:wrap;gap:4px}
  .nav a{padding:8px 10px}
  .grid{grid-template-columns:repeat(2,1fr)}
  .tm-links-section{padding:0 10px}
  .tm-links-list{grid-template-columns:repeat(2,1fr)}
  .tm-404-mask .error-code{font-size:80px}
  .tm-404-mask .error-title{font-size:18px}
}

@media (prefers-reduced-motion: reduce){
  *{transition:none!important;animation:none!important}
}