*{margin:0;padding:0;box-sizing:border-box}
    
    :root{
	  --bg:#0d1117;
      --bg-secondary:#161b22;
	  --bg-secondary22:#161b22;
      --bg-hover:#21262d;
      --bg-tertiary:#1c2128;
      --border:#30363d;
      --border-hover:#6e7681;
      --text:#c9d1d9;
      --text-secondary:#8b949e;
      --link:#58a6ff;
      --link-hover:#79c0ff;
      --green:#3fb950;
      --yellow:#d29922;
      --red:#f85149;
      --purple:#bc8cff;
      --blue-light:#1c2d41;
      --shadow-sm:0 1px 3px rgba(0,0,0,.3);
      --shadow-md:0 4px 12px rgba(0,0,0,.4);
      --shadow-lg:0 8px 24px rgba(0,0,0,.5);
	  --bg-secondary223:#58a6ff;
	  --eren2: #e8e8e8;
	  --cizgi: 1px solid #30363d;
		
    }
    
    [data-theme="dark"]{
	  --bg:#ffffff;
      --bg-secondary:#f6f8fa;
	  --bg-secondary22:#f6f8fa;
      --bg-hover:#f3f4f6;
      --bg-tertiary:#f0f3f6;
      --border:#d0d7de;
      --border-hover:#8c959f;
      --text:#24292f;
      --text-secondary:#57606a;
      --link:#0969da;
      --link-hover:#0550ae;
      --green:#1a7f37;
      --yellow:#bf8700;
      --red:#cf222e;
      --purple:#8250df;
      --blue-light:#ddf4ff;
      --max:1280px;
      --shadow-sm:0 1px 3px rgba(0,0,0,.05);
      --shadow-md:0 4px 12px rgba(0,0,0,.08);
      --shadow-lg:0 8px 24px rgba(0,0,0,.12);
	  --bg-secondary223:#666f78;
	  --eren2: #1a1a1a;
	  --cizgi: 1px solid #ccc;	

    }
    
    body{
      font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Helvetica,Arial,sans-serif;
      background:var(--bg);
      color:var(--text);
      line-height:1.6;
      font-size:14px;
      transition:background .3s,color .3s;
      padding-bottom:80px;
    }
    
    html{scroll-behavior:smooth}
    
    .container{
      max-width:var(--max);
      margin:0 auto;
      padding:0 16px;
    }
    
    /* Header */
    header{
      background:var(--bg-secondary);
      border-bottom:1px solid var(--border);
      padding:16px 0;
      position:sticky;
      top:0;
      z-index:100;
      box-shadow:var(--shadow-sm);
      backdrop-filter:blur(10px);
    }
    
    .header-nav{
      display:flex;
      align-items:center;
      gap:16px;
      flex-wrap:wrap;
    }
    
    .logo{
      font-size:20px;
      font-weight:800;
      color:var(--text);
      display:flex;
      align-items:center;
      gap:8px;
      transition:transform .2s;
      text-decoration:none;
    }
    
    .logo:hover{transform:scale(1.05)}
    
    .nav-links{
      display:flex;
      gap:4px;
      list-style:none;
      margin-left:auto;
    }
    
    .nav-item{position:relative}
    
    .nav-links a,.dropdown-trigger{
      color:var(--text);
      text-decoration:none;
      font-weight:600;
      font-size:14px;
      padding:8px 12px;
      border-radius:6px;
      transition:all .2s;
      display:flex;
      align-items:center;
      gap:4px;
      cursor:pointer;
      background:transparent;
      border:none;
    }
    
    .nav-links a:hover,.dropdown-trigger:hover{
      background:var(--bg-hover);
      color:var(--link);
    }
    
    .dropdown-arrow{
      font-size:10px;
      transition:transform .2s;
    }
    
    .nav-item:hover .dropdown-arrow{
      transform:rotate(180deg);
    }
    
    .dropdown-menu{
      position:absolute;
      top:calc(100% + 8px);
      left:0;
      background:var(--bg);
      border:1px solid var(--border);
      border-radius:8px;
      box-shadow:var(--shadow-lg);
      min-width:200px;
      opacity:0;
      visibility:hidden;
      transform:translateY(-8px);
      transition:all .2s cubic-bezier(.4,0,.2,1);
      z-index:1000;
    }
    
    .nav-item:hover .dropdown-menu{
      opacity:1;
      visibility:visible;
      transform:translateY(0);
    }
    
    .dropdown-menu a{
      display:block;
      padding:10px 16px;
      color:var(--text);
      text-decoration:none;
      border-radius:0;
      transition:background .2s;
      font-weight:500;
    }
    
    .dropdown-menu a:hover{
      background:var(--bg-secondary);
      color:var(--link);
    }
    
    .dropdown-menu a:first-child{border-radius:7px 7px 0 0}
    .dropdown-menu a:last-child{border-radius:0 0 7px 7px}
    
    /* Theme Toggle */
    .theme-toggle{
      padding:8px 12px;
      background:var(--bg-hover);
      border:1px solid var(--border);
      border-radius:6px;
      cursor:pointer;
      font-size:18px;
      transition:all .2s;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    
    .theme-toggle:hover{
      transform:rotate(15deg) scale(1.1);
      border-color:var(--link);
    }
    
    /* Breadcrumb */
    .breadcrumb{
      padding:16px 0;
      display:flex;
      align-items:center;
      gap:8px;
      font-size:13px;
      color:var(--text-secondary);
      flex-wrap:wrap;
    }
    
    .breadcrumb a{
      color:var(--link);
      text-decoration:none;
      transition:color .2s;
    }
    
    .breadcrumb a:hover{
      color:var(--link-hover);
      text-decoration:underline;
    }
    
    /* Main Content */
    main{padding:32px 0}
    
    .page-header{
      margin-bottom:24px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      flex-wrap:wrap;
      gap:16px;
    }
    
    .page-title{
      font-size:32px;
      font-weight:800;
      margin-bottom:8px;
      line-height:1.2;
      background:linear-gradient(135deg,var(--link),var(--purple));
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
      background-clip:text;
    }
    
    .page-desc{
      color:var(--text-secondary);
      font-size:16px;
      line-height:1.6;
    }
    
    .stats{
      display:flex;
      gap:16px;
      font-size:13px;
      color:var(--text-secondary);
      flex-wrap:wrap;
    }
    
    .stat-item{
      display:flex;
      align-items:center;
      gap:4px;
    }
    
    /* Quick Stats */
    .quick-stats{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
      gap:16px;
      margin-bottom:32px;
      animation:fadeInUp .6s ease-out;
    }
    
    .stat-card{
      background:var(--bg-secondary);
      border:1px solid var(--border);
      border-radius:12px;
      padding:20px;
      text-align:center;
      transition:all .3s cubic-bezier(.4,0,.2,1);
      position:relative;
      overflow:hidden;
    }
    
    .stat-card::before{
      content:'';
      position:absolute;
      top:0;
      left:0;
      right:0;
      height:3px;
      background:linear-gradient(90deg,#667eea,#764ba2,#f093fb);
      transform:scaleX(0);
      transition:transform .3s;
    }
    
    .stat-card:hover{
      border-color:var(--link);
      transform:translateY(-4px);
      box-shadow:var(--shadow-md);
    }
    
    .stat-card:hover::before{
      transform:scaleX(1);
    }
    
    .stat-number{
      font-size:36px;
      font-weight:800;
      color:var(--link);
      display:block;
      margin-bottom:4px;
    }
    
    .stat-label{
      color:var(--text-secondary);
      font-size:13px;
      font-weight:500;
    }
    
    /* Feature Cards */
    .feature-cards{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
      gap:20px;
      margin-bottom:32px;
    }
    
    .feature-card{
      background:var(--bg);
      border:1px solid var(--border);
      border-radius:12px;
      padding:20px;
      transition:all .3s cubic-bezier(.4,0,.2,1);
      position:relative;
      overflow:hidden;
      animation:fadeInUp .6s ease-out backwards;
    }
    
    .feature-card:nth-child(1){animation-delay:.1s}
    .feature-card:nth-child(2){animation-delay:.2s}
    .feature-card:nth-child(3){animation-delay:.3s}
    
    .feature-card::before{
      content:'';
      position:absolute;
      top:0;
      left:0;
      right:0;
      height:3px;
      background:linear-gradient(90deg,#667eea,#764ba2);
      transform:scaleX(0);
      transition:transform .3s;
    }
    
    .feature-card:hover{
      border-color:var(--link);
      box-shadow:var(--shadow-lg);
      transform:translateY(-4px);
    }
    
    .feature-card:hover::before{
      transform:scaleX(1);
    }
    
    .feature-card-header{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:16px;
      padding-bottom:12px;
      border-bottom:1px solid var(--border);
    }
    
    .feature-card-icon{
      font-size:28px;
      width:48px;
      height:48px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg,#667eea,#764ba2);
      border-radius:12px;
      box-shadow:0 4px 12px rgba(102,126,234,.2);
      transition:transform .3s;
    }
    
    .feature-card:hover .feature-card-icon{
      transform:rotate(-5deg) scale(1.1);
    }
    
    .feature-card-title{
      font-size:18px;
      font-weight:700;
      color:var(--text);
    }
    
    .feature-card-list{
      list-style:none;
    }
    
    .feature-card-item{
      display:flex;
      align-items:center;
      gap:12px;
      padding:10px;
      margin-bottom:8px;
      border-radius:8px;
      transition:all .2s;
      cursor:pointer;
      background:var(--bg-secondary);
    }
    
    .feature-card-item:hover{
      background:var(--bg-hover);
      transform:translateX(4px);
    }
    
    .feature-card-item-icon{
      font-size:20px;
      width:36px;
      height:36px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:var(--bg);
      border-radius:8px;
      flex-shrink:0;
      transition:all .2s;
    }
    
    .feature-card-item:hover .feature-card-item-icon{
      background:var(--link);
      transform:scale(1.1);
    }
    
    .feature-card-item-content{
      flex:1;
      min-width:0;
    }
    
    .feature-card-item-name{
      font-size:14px;
      font-weight:600;
      color:var(--text);
      margin-bottom:2px;
    }
    
    .feature-card-item-meta{
      font-size:12px;
      color:var(--text-secondary);
      display:flex;
      align-items:center;
      gap:8px;
    }
    
    .feature-card-item-badge{
      display:inline-block;
      padding:2px 6px;
      border-radius:4px;
      font-size:10px;
      font-weight:600;
      background:rgba(9,105,218,.1);
      color:var(--link);
    }
    
    /* Filters */
    .filters{
      display:flex;
      gap:8px;
      margin-bottom:24px;
      flex-wrap:wrap;
      align-items:center;
      background:var(--bg-secondary);
      padding:16px;
      border-radius:12px;
      border:1px solid var(--border);
      top:73px;
      z-index:50;
      backdrop-filter:blur(10px);
    }
    
    .search-box{
      flex:1;
      min-width:240px;
      position:relative;
    }
    
    .search-box input{
      width:100%;
      padding:10px 12px 10px 40px;
      background:var(--bg);
      border:1px solid var(--border);
      border-radius:8px;
      color:var(--text);
      font-size:14px;
      transition:all .2s;
      font-weight:500;
    }
    
    .search-box input:focus{
      outline:none;
      border-color:var(--link);
      box-shadow:0 0 0 3px var(--blue-light);
    }
    
    .search-icon{
      position:absolute;
      left:12px;
      top:50%;
      transform:translateY(-50%);
      color:var(--text-secondary);
      font-size:16px;
    }
    
    .filter-btn{
      padding:8px 18px;
      background:var(--bg);
      border:1px solid var(--border);
      border-radius:8px;
      color:var(--text);
      cursor:pointer;
      font-size:14px;
      font-weight:600;
      transition:all .2s;
      min-height:44px;
      display:flex;
      align-items:center;
      gap:6px;
    }
    
    .filter-btn:hover{
      background:var(--bg-hover);
      border-color:var(--border-hover);
      transform:translateY(-2px);
      box-shadow:var(--shadow-sm);
    }
    
    .filter-btn.active{
      background:var(--link);
      border-color:var(--link);
      color:#fff;
      box-shadow:var(--shadow-sm);
    }
    
    .sort-select{
      padding:8px 36px 8px 14px;
      background:var(--bg);
      border:1px solid var(--border);
      border-radius:8px;
      color:var(--text);
      font-size:14px;
      cursor:pointer;
      appearance:none;
      background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2357606a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
      background-repeat:no-repeat;
      background-position:right 12px center;
      font-weight:600;
      min-height:44px;
    }
    
    /* Tool List */
    .tools-list{
      list-style:none;
    }
    
    .tool-item{
      background:var(--bg);
      border:1px solid var(--border);
      border-radius:12px;
      padding:20px;
      margin-bottom:12px;
      transition:all .3s cubic-bezier(.4,0,.2,1);
      display:flex;
      gap:20px;
      position:relative;
      overflow:hidden;
      animation:fadeInUp .6s ease-out backwards;
    }
    
    .tool-item:nth-child(1){animation-delay:.05s}
    .tool-item:nth-child(2){animation-delay:.1s}
    .tool-item:nth-child(3){animation-delay:.15s}
    .tool-item:nth-child(4){animation-delay:.2s}
    .tool-item:nth-child(5){animation-delay:.25s}
    .tool-item:nth-child(6){animation-delay:.3s}
    .tool-item:nth-child(7){animation-delay:.35s}
    .tool-item:nth-child(8){animation-delay:.4s}
    
    .tool-item::before{
      content:'';
      position:absolute;
      left:0;
      top:0;
      width:4px;
      height:100%;
      background:var(--link);
      transform:scaleY(0);
      transition:transform .3s cubic-bezier(.4,0,.2,1);
    }
    
    .tool-item:hover{
      border-color:var(--link);
      box-shadow:var(--shadow-md);
      transform:translateX(4px);
      background:var(--bg-secondary);
    }
    
    .tool-item:hover::before{
      transform:scaleY(1);
    }
    
    .tool-icon{
      width:64px;
      height:64px;
      border-radius:12px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:32px;
      flex-shrink:0;
      background:linear-gradient(135deg,#667eea,#764ba2);
      transition:all .3s;
      box-shadow:0 2px 8px rgba(0,0,0,.1);
    }
    
    .tool-item:hover .tool-icon{
      transform:rotate(-5deg) scale(1.1);
      box-shadow:0 6px 20px rgba(102,126,234,.3);
    }
    
    .tool-content{
      flex:1;
      min-width:0;
    }
    
    .tool-header{
      display:flex;
      align-items:center;
      gap:8px;
      margin-bottom:10px;
      flex-wrap:wrap;
    }
    
    .tool-name{
      font-size:18px;
      font-weight:700;
      color:var(--link);
      text-decoration:none;
      transition:color .2s;
      position:relative;
    }
    
    .tool-name::after{
      content:'';
      position:absolute;
      bottom:-2px;
      left:0;
      width:0;
      height:2px;
      background:var(--link-hover);
      transition:width .3s;
    }
    
    .tool-name:hover{
      color:var(--link-hover);
    }
    
    .tool-name:hover::after{
      width:100%;
    }
    
    .tool-actions-top{
      margin-left:auto;
      display:flex;
      gap:8px;
    }
    
    .bookmark-btn,.compare-btn{
      background:var(--bg-secondary);
      border:1px solid var(--border);
      border-radius:6px;
      padding:6px 10px;
      cursor:pointer;
      transition:all .2s;
      font-size:16px;
      min-width:44px;
      min-height:44px;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    
    .bookmark-btn:hover,.compare-btn:hover{
      background:var(--bg-hover);
      transform:scale(1.1);
    }
    
    .bookmark-btn.active{
      background:var(--yellow);
      color:#fff;
      border-color:var(--yellow);
    }
    
    .compare-btn.active{
      background:var(--purple);
      color:#fff;
      border-color:var(--purple);
    }
    
    .badge{
      display:inline-flex;
      align-items:center;
      padding:4px 12px;
      border-radius:6px;
      font-size:12px;
      font-weight:600;
      line-height:1.5;
      transition:transform .2s;
    }
    
    .tool-item:hover .badge{
      transform:scale(1.05);
    }
    
    .badge-free{
      background:rgba(26,127,55,.1);
      color:var(--green);
      border:1px solid rgba(26,127,55,.3);
    }
    
    .badge-paid{
      background:rgba(191,135,0,.1);
      color:var(--yellow);
      border:1px solid rgba(191,135,0,.3);
    }
    
    .badge-category{
      background:rgba(130,80,223,.1);
      color:var(--purple);
      border:1px solid rgba(130,80,223,.3);
    }
    
    .tool-meta{
      display:flex;
      align-items:center;
      gap:16px;
      margin-bottom:12px;
      color:var(--text-secondary);
      font-size:12px;
      flex-wrap:wrap;
    }
    
    .tool-meta span{
      display:flex;
      align-items:center;
      gap:4px;
    }
    
    .tool-rating{
      display:flex;
      align-items:center;
      gap:8px;
      margin-bottom:12px;
      padding:6px 12px;
      background:var(--bg-secondary);
      border-radius:8px;
      width:fit-content;
	  float:right;
    }
    
    .stars{
      color:var(--yellow);
      font-size:14px;
    }
    
    .rating-count{
      color:var(--text-secondary);
      font-size:12px;
    }
    
    .tool-desc{
      color:var(--text-secondary);
      margin-bottom:16px;
      line-height:1.8;
      font-size:14px;
    }
    
    .tool-tags{
      display:flex;
      gap:6px;
      flex-wrap:wrap;
      margin-bottom:12px;
	  float:right;
    }
    
    .tag{
      padding:3px 8px;
      background:var(--bg-tertiary);
      border:1px solid var(--border);
      border-radius:6px;
      font-size:11px;
      color:var(--text-secondary);
      transition:all .2s;
    }
    
    .tag:hover{
      background:var(--link);
      color:#fff;
      border-color:var(--link);
      transform:translateY(-2px);
    }
    
    .tool-actions{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }
    
    .btn{
      padding:8px 16px;
      border-radius:8px;
      font-size:13px;
      font-weight:600;
      text-decoration:none;
      transition:all .2s;
      display:inline-flex;
      align-items:center;
      gap:6px;
      min-height:44px;
      border:none;
      cursor:pointer;
    }
    
    .btn-primary{
      background:var(--link);
      color:#fff;
      border:1px solid var(--link);
    }
    
    .btn-primary:hover{
      background:var(--link-hover);
      border-color:var(--link-hover);
      transform:translateY(-2px);
      box-shadow:0 4px 12px rgba(9,105,218,.3);
    }
    
    .btn-secondary{
      background:var(--bg);
      border:1px solid var(--border);
      color:var(--text);
    }
    
    .btn-secondary:hover{
      background:var(--bg-hover);
      border-color:var(--border-hover);
      transform:translateY(-2px);
    }
    
    /* Compare Panel */
    .compare-panel{
      position:fixed;
      bottom:0;
      left:0;
      right:0;
      background:var(--bg-secondary);
      border-top:2px solid var(--link);
      padding:16px;
      box-shadow:0 -4px 12px rgba(0,0,0,.1);
      transform:translateY(100%);
      transition:transform .3s;
      z-index:999;
    }
    
    .compare-panel.show{
      transform:translateY(0);
    }
    
    .compare-content{
      max-width:var(--max);
      margin:0 auto;
      display:flex;
      align-items:center;
      gap:16px;
      flex-wrap:wrap;
    }
    
    .compare-items{
      display:flex;
      gap:8px;
      flex:1;
      flex-wrap:wrap;
    }
    
    .compare-item{
      padding:8px 16px;
      background:var(--bg);
      border:1px solid var(--border);
      border-radius:8px;
      display:flex;
      align-items:center;
      gap:8px;
      font-size:13px;
      font-weight:600;
    }
    
    .compare-remove{
      background:none;
      border:none;
      color:var(--red);
      cursor:pointer;
      padding:0;
      font-size:16px;
      transition:transform .2s;
    }
    
    .compare-remove:hover{
      transform:scale(1.2);
    }
    
    /* Empty State */
    .empty-state{
      text-align:center;
      padding:64px 16px;
      color:var(--text-secondary);
    }
    
    .empty-state-icon{
      font-size:64px;
      margin-bottom:16px;
      opacity:.5;
    }
    
    .empty-state-title{
      font-size:20px;
      font-weight:700;
      margin-bottom:8px;
      color:var(--text);
    }
    
    .empty-state-desc{
      font-size:14px;
      margin-bottom:24px;
    }
    
    /* Pagination */
    .pagination{
      display:flex;
      justify-content:center;
      gap:8px;
      margin-top:32px;
      padding:16px 0;
      flex-wrap:wrap;
    }
    
    .page-btn{
      padding:5px;
      border-radius:8px;
      background:var(--bg);
      color:var(--text);
      cursor:pointer;
      transition:all .2s;
      font-weight:600;
      min-height:44px;
      min-width:44px;
    }
    

    
    .page-btn.active{
      background:var(--link);
      border-color:var(--link);
      color:#fff;
      box-shadow:var(--shadow-sm);
    }
    
    /* Scroll to Top */
    .scroll-top{
      position:fixed;
      bottom:24px;
      right:24px;
      width:50px;
      height:50px;
      background:var(--link);
      color:#fff;
      border:none;
      border-radius:50%;
      font-size:20px;
      cursor:pointer;
      box-shadow:var(--shadow-lg);
      opacity:0;
      visibility:hidden;
      transition:all .3s;
      z-index:999;
    }
    
    .scroll-top.show{
      opacity:1;
      visibility:visible;
    }
    
    .scroll-top:hover{
      transform:translateY(-4px) scale(1.1);
      box-shadow:0 8px 24px rgba(9,105,218,.4);
    }
    
    /* Compare Modal */
    .compare-modal{
      position:fixed;
      top:0;
      left:0;
      right:0;
      bottom:0;
      background:rgba(0,0,0,.5);
      backdrop-filter:blur(4px);
      z-index:10000;
      display:flex;
      align-items:center;
      justify-content:center;
      opacity:0;
      visibility:hidden;
      transition:all .3s;
      padding:20px;
    }
    
    .compare-modal.show{
      opacity:1;
      visibility:visible;
    }
    
    .compare-modal-content{
      background:var(--bg);
      border-radius:16px;
      max-width:1200px;
      width:100%;
      max-height:90vh;
      overflow-y:auto;
      box-shadow:var(--shadow-lg);
      animation:slideInUp .3s ease-out;
    }
    
    .compare-modal-header{
      padding:24px;
      border-bottom:1px solid var(--border);
      display:flex;
      justify-content:space-between;
      align-items:center;
      position:sticky;
      top:0;
      background:var(--bg);
      z-index:10;
    }
    
    .compare-modal-title{
      font-size:24px;
      font-weight:800;
      color:var(--text);
    }
    
    .compare-modal-close{
      width:36px;
      height:36px;
      border-radius:50%;
      background:var(--bg-secondary);
      border:1px solid var(--border);
      color:var(--text);
      font-size:20px;
      cursor:pointer;
      transition:all .2s;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    
    .compare-modal-close:hover{
      background:var(--red);
      color:#fff;
      border-color:var(--red);
      transform:rotate(90deg);
    }
    
    .compare-modal-body{
      padding:24px;
    }
    
    .compare-table{
      width:100%;
      border-collapse:collapse;
    }
    
    .compare-table th{
      background:var(--bg-secondary);
      padding:16px;
      text-align:left;
      font-weight:700;
      border-bottom:2px solid var(--border);
      position:sticky;
      top:77px;
      z-index:5;
    }
    
    .compare-table td{
      padding:16px;
      border-bottom:1px solid var(--border);
      vertical-align:top;
    }
    
    .compare-table tr:hover{
      background:var(--bg-secondary);
    }
    
    .compare-tool-header{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:8px;
    }
    
    .compare-tool-icon{
      font-size:32px;
      width:48px;
      height:48px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg,#667eea,#764ba2);
      border-radius:12px;
      flex-shrink:0;
    }
    
    .compare-tool-name{
      font-size:18px;
      font-weight:700;
      color:var(--link);
    }
    
    .compare-row-label{
      font-weight:600;
      color:var(--text-secondary);
      font-size:13px;
      text-transform:uppercase;
      letter-spacing:.5px;
    }
    
    .compare-value{
      color:var(--text);
      line-height:1.6;
    }
    
    .compare-rating{
      display:flex;
      align-items:center;
      gap:8px;
    }
    
    .compare-badge{
      display:inline-block;
      padding:4px 12px;
      border-radius:12px;
      font-size:12px;
      font-weight:600;
      margin-right:8px;
    }
    
    @keyframes slideInUp{
      from{
        opacity:0;
        transform:translateY(40px);
      }
      to{
        opacity:1;
        transform:translateY(0);
      }
    }
    
    /* Toast Notifications */
    .toast-container{
      position:fixed;
      top:90px;
      right:24px;
      z-index:9999;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    
    .toast{
      background:var(--bg);
      border:1px solid var(--border);
      border-radius:8px;
      padding:16px 20px;
      box-shadow:var(--shadow-lg);
      display:flex;
      align-items:center;
      gap:12px;
      min-width:320px;
      animation:slideInRight .3s ease-out;
      position:relative;
      overflow:hidden;
    }
    
    .toast::before{
      content:'';
      position:absolute;
      left:0;
      top:0;
      bottom:0;
      width:4px;
    }
    
    .toast.success::before{
      background:var(--green);
    }
    
    .toast.error::before{
      background:var(--red);
    }
    
    .toast.info::before{
      background:var(--link);
    }
    
    .toast-icon{
      font-size:20px;
      flex-shrink:0;
    }
    
    .toast-content{
      flex:1;
    }
    
    .toast-title{
      font-weight:600;
      margin-bottom:4px;
      color:var(--text);
    }
    
    .toast-message{
      font-size:13px;
      color:var(--text-secondary);
    }
    
    .toast-close{
      background:none;
      border:none;
      color:var(--text-secondary);
      cursor:pointer;
      font-size:18px;
      padding:0;
      transition:color .2s;
    }
    
    .toast-close:hover{
      color:var(--text);
    }
    
    /* Footer */
    footer{
      border-top:1px solid var(--border);
      padding:48px 0;
      margin-top:64px;
      text-align:center;
      color:var(--text-secondary);
      font-size:13px;
      background:var(--bg-secondary);
    }
    
    .footer-content{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
      gap:32px;
      text-align:left;
      margin-bottom:32px;
    }
    
    .footer-section h3{
      font-size:16px;
      font-weight:700;
      margin-bottom:16px;
      color:var(--text);
    }
    
    .footer-links{
      display:flex;
      flex-direction:column;
      gap:12px;
      list-style:none;
    }
    
    .footer-links a{
      color:var(--text-secondary);
      text-decoration:none;
      transition:color .2s;
      display:flex;
      align-items:center;
      gap:6px;
    }
    
    .footer-links a:hover{
      color:var(--link);
    }
    
    .footer-bottom{
      padding-top:24px;
      border-top:1px solid var(--border);
      display:flex;
      justify-content:space-between;
      align-items:center;
      flex-wrap:wrap;
      gap:16px;
    }
    
    .social-links{
      display:flex;
      gap:12px;
    }
    
    .social-links a{
      width:36px;
      height:36px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:var(--bg-hover);
      border-radius:50%;
      color:var(--text);
      text-decoration:none;
      transition:all .2s;
    }
    
    .social-links a:hover{
      background:var(--link);
      color:#fff;
      transform:translateY(-2px);
    }
    
    .hidden{
      display:none !important;
    }
    
    /* Animations */
    @keyframes shimmer{
      0%{background-position:200% 0}
      100%{background-position:-200% 0}
    }
    
    @keyframes fadeInUp{
      from{
        opacity:0;
        transform:translateY(20px);
      }
      to{
        opacity:1;
        transform:translateY(0);
      }
    }
    
    @keyframes slideInRight{
      from{
        opacity:0;
        transform:translateX(100px);
      }
      to{
        opacity:1;
        transform:translateX(0);
      }
    }
    
    @keyframes pulse{
      0%,100%{
        opacity:1;
      }
      50%{
        opacity:.7;
      }
    }
    
    /* Mobile Responsive */
    @media(max-width:768px){
      .page-title{
        font-size:24px;
      }
      
      .tool-item{
        flex-direction:column;
      }
      
      .tool-icon{
        width:56px;
        height:56px;
        font-size:28px;
      }
      
      .filters{
        flex-direction:column;
        top:65px;
      }
      
      .search-box{
        width:100%;
      }
      
      .filter-btn,.sort-select{
        width:100%;
      }
      
      .dropdown-menu{
        position:fixed;
        left:16px;
        right:16px;
        width:auto;
      }
      
      .quick-stats{
        grid-template-columns:1fr 1fr;
      }
      
      .feature-cards{
        grid-template-columns:1fr;
      }
      
      .nav-links{
        width:100%;
        justify-content:space-between;
      }
      
      .toast-container{
        right:16px;
        left:16px;
      }
      
      .toast{
        min-width:auto;
      }
      
      .scroll-top{
        bottom:16px;
        right:16px;
        width:44px;
        height:44px;
      }
      
      .footer-content{
        grid-template-columns:1fr;
        text-align:center;
      }
      
      .footer-bottom{
        flex-direction:column;
        text-align:center;
      }
      
      .tool-actions-top{
        margin-left:0;
      }
      
      .compare-panel{
        padding:12px;
      }
      
      .compare-items{
        width:100%;
      }
    }
	
	
    
    @media(min-width:769px) and (max-width:1024px){
      .quick-stats{
        grid-template-columns:repeat(2,1fr);
      }
      
      .feature-cards{
        grid-template-columns:1fr;
      }
      .compare-modal-content{
        max-height:95vh;
      }
      
      .compare-table th:first-child{
        min-width:120px;
      }
      
      .compare-table td{
        font-size:13px;
      }
    }
	
	
	.badge-yapimci {
	  background: rgba(234, 208, 183, 0.28);
	  color: #ae8433;
	  border: 1px solid rgba(198, 129, 40, 0.3);
	}
	
	
 @media (max-width: 768px) {
  .pc-only { display: none !important; }
}

/* Default: mobilde görünür */
.mobile-only {
  display: inline-block; /* veya inline */
}
/* Masaüstünde gizle (>=769px) */
@media (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }
}

.er3 {
  margin-bottom: -12px;
}


.hero {
  background: linear-gradient(135deg, #667eea 0%, #161b22 100%);
  padding: 60px 20px;
  color: white;
}

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

.hero-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-icon {
  font-size: 80px;
  background: white;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.hero-info {
  flex: 1;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: white;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hero-desc {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.95;
  max-width: 700px;
}

/* Responsive tasarım */
@media (max-width: 768px) {
  .hero {
    padding: 40px 20px;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-icon {
    width: 100px;
    height: 100px;
    font-size: 60px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-meta {
    justify-content: center;
  }
  
  .hero-desc {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .hero-title {
    font-size: 28px;
  }
}



.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
}

/* Sol Taraf - Ana İçerik */
.main-content {
  display: flex;
  flex-direction: column;
}

.info-card {
  background:var(--bg);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 15px;
  border:var(--cizgi);
}

.info-title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 32px;
  font-weight: 700;
  color:var(--eren2);
  margin: 0 0 20px 0;
}

.question-icon {
  font-size: 36px;
  color: #ff4444;
}

.divider {
  height: 1px;
  background: linear-gradient(to right, #667eea, #764ba2);
  border-radius: 2px;
  margin-bottom: 30px;
}

.info-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.info-text:last-child {
  margin-bottom: 0;
}

/* Sağ Taraf - Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Deneme Kartı */
.trial-card {
  background: linear-gradient(135deg, #667eea 0%, #161b22 100%);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  color: white;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.trial-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.trial-desc {
  font-size: 15px;
  margin: 0 0 20px 0;
  opacity: 0.95;
}

.trial-btn {
  background: white;
  color: #667eea;
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 10px;
}

.trial-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Hızlı Bilgiler */
.quick-info {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.quick-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px 0;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
  border-bottom: none;
}

.info-label {
  font-size: 15px;
  color: #666;
  font-weight: 500;
}

.info-value {
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 600;
  text-align: right;
}

.info-value.freemium {
  color: #10b981;
}

.info-value.rating {
  color: #fbbf24;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
  .content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    order: -1;
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    padding: 20px 15px;
  }
  
  .info-card {
    padding: 25px;
  }
  
  .info-title {
    font-size: 26px;
  }
  
  .trial-card {
    padding: 25px;
  }
  
  .quick-info {
    padding: 20px;
  }
}

.link2 a {
  text-decoration: none;
  color:var(--bg-secondary223);
  font-size: 14px;
}

.trial-btn2 {
  background:var(--bg-secondary22);
  color: #667eea;
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.trial-btn a {
  text-decoration: none;
  color: #252d47;
}








    /* Solution Modal */
    .solution-modal{
      position:fixed;
      top:0;
      left:0;
      right:0;
      bottom:0;
      background:rgba(0,0,0,.5);
      backdrop-filter:blur(4px);
      z-index:1000;
      display:flex;
      align-items:center;
      justify-content:center;
      opacity:0;
      visibility:hidden;
      transition:all .3s;
      padding:20px;
    }
    
    .solution-modal.show{
      opacity:1;
      visibility:visible;
    }
    
    .solution-content{
      background:var(--bg);
      border-radius:16px;
      max-width:900px;
      width:100%;
      max-height:90vh;
      overflow-y:auto;
      box-shadow:var(--shadow-lg);
      animation:slideInUp .3s ease-out;
    }
    
    .solution-header{
      padding:24px;
      border-bottom:1px solid var(--border);
      display:flex;
      gap:16px;
      align-items:flex-start;
      position:sticky;
      top:0;
      background:var(--bg);
      z-index:10;
    }
    
    .solution-icon{
      width:64px;
      height:64px;
      border-radius:12px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:32px;
      background:linear-gradient(135deg,var(--red),var(--orange));
      flex-shrink:0;
    }
    
    .solution-header-content{
      flex:1;
    }
    
    .solution-title{
      font-size:24px;
      font-weight:800;
      color:var(--text);
      margin-bottom:8px;
    }
    
    .solution-meta{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      color:var(--text-secondary);
      font-size:13px;
    }
    
    .solution-close{
      width:36px;
      height:36px;
      border-radius:50%;
      background:var(--bg-secondary);
      border:1px solid var(--border);
      color:var(--text);
      font-size:20px;
      cursor:pointer;
      transition:all .2s;
      display:flex;
      align-items:center;
      justify-content:center;
      flex-shrink:0;
    }
    
    .solution-close:hover{
      background:var(--red);
      color:#fff;
      border-color:var(--red);
      transform:rotate(90deg);
    }
    
    .solution-body{
      padding:24px;
    }
    
    .solution-section{
      margin-bottom:32px;
    }
    
    .solution-section:last-child{
      margin-bottom:0;
    }
	
.feature-card-item-badge a {
  color: aliceblue;
  text-decoration: none;
  padding: 5px;
  font-size: 12px;
}	





        .card {
            background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 16px 20px;
            border: 1px solid rgba(139, 92, 246, 0.3);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 16px;
            position: relative;
            overflow: hidden;
			margin-bottom: 10px;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #5865f2, #8b5cf6, #ec4899);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .card:hover {
            transform: translateY(-4px);
            border-color: rgba(139, 92, 246, 0.6);
            box-shadow: 0 12px 32px rgba(139, 92, 246, 0.3);
        }

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

        .icon-wrapper {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #5865f2 0%, #8b5cf6 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .card:hover .icon-wrapper {
            transform: scale(1.05) rotate(3deg);
            box-shadow: 0 6px 16px rgba(88, 101, 242, 0.6);
        }

        .icon-wrapper svg {
            width: 28px;
            height: 28px;
        }

        .card-content {
            flex: 1;
            min-width: 0;
        }

        .card-title {
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 2px;
            letter-spacing: -0.3px;
        }

        .card-description {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.4;
        }

        .card-button {
            background: linear-gradient(135deg, #5865f2 0%, #8b5cf6 100%);
            border: none;
            padding: 10px 24px;
            border-radius: 10px;
            color: white;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
            flex-shrink: 0;
        }

        .card-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
        }

        .card-button:active {
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .card {
                padding: 12px 16px;
                gap: 12px;
            }
            
            .icon-wrapper {
                width: 40px;
                height: 40px;
            }
            
            .icon-wrapper svg {
                width: 24px;
                height: 24px;
            }

            .card-title {
                font-size: 15px;
            }

            .card-description {
                font-size: 12px;
            }

            .card-button {
                padding: 8px 16px;
                font-size: 13px;
            }
        }
		
		
.card-button a {
  text-decoration: none;
  color: #fff;
}